GR32.Design.ColorPicker.dfm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. object FormColorPicker: TFormColorPicker
  2. Left = 0
  3. Top = 0
  4. BorderStyle = bsToolWindow
  5. Caption = 'Color Picker'
  6. ClientHeight = 307
  7. ClientWidth = 563
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. Font.Style = []
  14. Position = poOwnerFormCenter
  15. DesignSize = (
  16. 563
  17. 307)
  18. TextHeight = 13
  19. object LabelWebColor: TLabel
  20. Left = 432
  21. Top = 178
  22. Width = 23
  23. Height = 13
  24. Caption = 'Hex:'
  25. end
  26. object LabelRed: TLabel
  27. Left = 270
  28. Top = 12
  29. Width = 43
  30. Height = 18
  31. AutoSize = False
  32. Caption = 'Red:'
  33. end
  34. object LabelGreen: TLabel
  35. Left = 270
  36. Top = 52
  37. Width = 43
  38. Height = 18
  39. AutoSize = False
  40. Caption = 'Green:'
  41. end
  42. object LabelBlue: TLabel
  43. Left = 270
  44. Top = 92
  45. Width = 43
  46. Height = 18
  47. AutoSize = False
  48. Caption = 'Blue:'
  49. end
  50. object LabelAlpha: TLabel
  51. Left = 270
  52. Top = 132
  53. Width = 43
  54. Height = 18
  55. AutoSize = False
  56. Caption = 'Alpha:'
  57. end
  58. object LabelPreview: TLabel
  59. Left = 270
  60. Top = 178
  61. Width = 42
  62. Height = 13
  63. Caption = 'Preview:'
  64. end
  65. object PanelControl: TPanel
  66. Left = 0
  67. Top = 274
  68. Width = 563
  69. Height = 33
  70. Align = alBottom
  71. BevelOuter = bvNone
  72. TabOrder = 0
  73. DesignSize = (
  74. 563
  75. 33)
  76. object ButtonOK: TButton
  77. Left = 411
  78. Top = 6
  79. Width = 64
  80. Height = 23
  81. Anchors = [akRight, akBottom]
  82. Caption = 'OK'
  83. Default = True
  84. ModalResult = 1
  85. TabOrder = 0
  86. end
  87. object ButtonCancel: TButton
  88. Left = 486
  89. Top = 6
  90. Width = 65
  91. Height = 23
  92. Anchors = [akRight, akBottom]
  93. Cancel = True
  94. Caption = '&Cancel'
  95. ModalResult = 2
  96. TabOrder = 1
  97. end
  98. object ButtonPickFromScreen: TButton
  99. Left = 8
  100. Top = 5
  101. Width = 105
  102. Height = 23
  103. Anchors = [akLeft, akBottom]
  104. Caption = 'Pick from screen'
  105. TabOrder = 2
  106. OnClick = ButtonPickFromScreenClick
  107. end
  108. object CheckBoxWebSafe: TCheckBox
  109. Left = 228
  110. Top = 8
  111. Width = 73
  112. Height = 17
  113. Caption = 'WebSafe'
  114. TabOrder = 3
  115. OnClick = CheckBoxWebSafeClick
  116. end
  117. end
  118. object EditColor: TEdit
  119. Left = 474
  120. Top = 175
  121. Width = 81
  122. Height = 21
  123. Alignment = taCenter
  124. Anchors = [akTop, akRight]
  125. TabOrder = 1
  126. Text = '$00000000'
  127. OnChange = EditColorChange
  128. end
  129. object PanelColorPickerMain: TPanel
  130. Left = 8
  131. Top = 8
  132. Width = 256
  133. Height = 256
  134. BevelOuter = bvNone
  135. ParentColor = True
  136. ShowCaption = False
  137. TabOrder = 2
  138. end
  139. object SpinEditRed: TSpinEdit
  140. Left = 509
  141. Top = 8
  142. Width = 46
  143. Height = 22
  144. Anchors = [akTop, akRight]
  145. MaxValue = 255
  146. MinValue = 0
  147. TabOrder = 3
  148. Value = 0
  149. OnChange = SpinEditColorChange
  150. end
  151. object SpinEditGreen: TSpinEdit
  152. Left = 509
  153. Top = 48
  154. Width = 46
  155. Height = 22
  156. Anchors = [akTop, akRight]
  157. MaxValue = 255
  158. MinValue = 0
  159. TabOrder = 4
  160. Value = 0
  161. OnChange = SpinEditColorChange
  162. end
  163. object SpinEditBlue: TSpinEdit
  164. Left = 509
  165. Top = 88
  166. Width = 46
  167. Height = 22
  168. Anchors = [akTop, akRight]
  169. MaxValue = 255
  170. MinValue = 0
  171. TabOrder = 5
  172. Value = 0
  173. OnChange = SpinEditColorChange
  174. end
  175. object SpinEditAlpha: TSpinEdit
  176. Left = 509
  177. Top = 128
  178. Width = 46
  179. Height = 22
  180. Anchors = [akTop, akRight]
  181. MaxValue = 255
  182. MinValue = 0
  183. TabOrder = 6
  184. Value = 0
  185. OnChange = SpinEditColorChange
  186. end
  187. object PanelPreview: TPanel
  188. Left = 328
  189. Top = 169
  190. Width = 60
  191. Height = 32
  192. BevelKind = bkFlat
  193. BevelOuter = bvNone
  194. Ctl3D = False
  195. ParentBackground = False
  196. ParentCtl3D = False
  197. ShowCaption = False
  198. TabOrder = 7
  199. end
  200. object PanelSwatches: TPanel
  201. Left = 270
  202. Top = 240
  203. Width = 285
  204. Height = 24
  205. BevelOuter = bvNone
  206. ShowCaption = False
  207. TabOrder = 8
  208. end
  209. end