NewImageUnit.dfm 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. object FrmNewImage: TFrmNewImage
  2. Left = 282
  3. Top = 194
  4. BorderStyle = bsDialog
  5. Caption = 'New Image'
  6. ClientHeight = 194
  7. ClientWidth = 250
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poScreenCenter
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object LblWidth: TLabel
  19. Left = 24
  20. Top = 27
  21. Width = 32
  22. Height = 13
  23. Caption = 'Width:'
  24. FocusControl = EdtImageWidth
  25. end
  26. object LblHeight: TLabel
  27. Left = 24
  28. Top = 67
  29. Width = 35
  30. Height = 13
  31. Caption = 'Height:'
  32. FocusControl = EdtImageHeight
  33. end
  34. object LblWidthUnit: TLabel
  35. Left = 200
  36. Top = 27
  37. Width = 27
  38. Height = 13
  39. Caption = 'pixels'
  40. end
  41. object LblHeightUnit: TLabel
  42. Left = 200
  43. Top = 67
  44. Width = 27
  45. Height = 13
  46. Caption = 'pixels'
  47. end
  48. object LblBackgroundColor: TLabel
  49. Left = 24
  50. Top = 116
  51. Width = 88
  52. Height = 13
  53. Caption = 'Background Color:'
  54. end
  55. object EdtImageWidth: TEdit
  56. Left = 72
  57. Top = 24
  58. Width = 97
  59. Height = 21
  60. TabOrder = 0
  61. Text = '640'
  62. end
  63. object BtnUpDownWidth: TUpDown
  64. Left = 169
  65. Top = 24
  66. Width = 18
  67. Height = 21
  68. Associate = EdtImageWidth
  69. Min = 1
  70. Max = 2000
  71. Position = 640
  72. TabOrder = 1
  73. end
  74. object EdtImageHeight: TEdit
  75. Left = 72
  76. Top = 64
  77. Width = 97
  78. Height = 21
  79. TabOrder = 2
  80. Text = '480'
  81. end
  82. object BtnUpDownHeight: TUpDown
  83. Left = 169
  84. Top = 64
  85. Width = 18
  86. Height = 21
  87. Associate = EdtImageHeight
  88. Min = 1
  89. Max = 2000
  90. Position = 480
  91. TabOrder = 3
  92. end
  93. object PnlColor: TPanel
  94. Left = 120
  95. Top = 112
  96. Width = 67
  97. Height = 21
  98. BevelKind = bkFlat
  99. BevelOuter = bvNone
  100. Color = clWhite
  101. ParentBackground = False
  102. TabOrder = 4
  103. end
  104. object BtnSelect: TButton
  105. Left = 192
  106. Top = 112
  107. Width = 35
  108. Height = 20
  109. Caption = 'Select'
  110. TabOrder = 5
  111. TabStop = False
  112. OnClick = BtnSelectClick
  113. end
  114. object BtnOK: TButton
  115. Left = 104
  116. Top = 164
  117. Width = 65
  118. Height = 22
  119. Caption = 'OK'
  120. Default = True
  121. ModalResult = 1
  122. TabOrder = 6
  123. end
  124. object BtnCancel: TButton
  125. Left = 176
  126. Top = 164
  127. Width = 65
  128. Height = 22
  129. Cancel = True
  130. Caption = 'Cancel'
  131. ModalResult = 2
  132. TabOrder = 7
  133. end
  134. object ColorDialog: TColorDialog
  135. Color = clWhite
  136. Options = [cdFullOpen]
  137. Left = 196
  138. Top = 132
  139. end
  140. end