MainUnit.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. object FrmMeshGradients: TFrmMeshGradients
  2. Left = 0
  3. Top = 0
  4. Caption = 'Mesh Gradient Demo'
  5. ClientHeight = 481
  6. ClientWidth = 688
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. DesignSize = (
  16. 688
  17. 481)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object PnlSettings: TPanel
  21. Left = 511
  22. Top = 0
  23. Width = 177
  24. Height = 481
  25. Align = alRight
  26. TabOrder = 0
  27. DesignSize = (
  28. 177
  29. 481)
  30. object LblBackgroundSampler: TLabel
  31. Left = 8
  32. Top = 23
  33. Width = 101
  34. Height = 13
  35. Caption = 'Background Sampler:'
  36. end
  37. object LblVertexColor: TLabel
  38. Left = 8
  39. Top = 236
  40. Width = 29
  41. Height = 13
  42. Caption = 'Color:'
  43. Visible = False
  44. end
  45. object VertexColorShape: TShape
  46. Left = 43
  47. Top = 234
  48. Width = 16
  49. Height = 16
  50. Cursor = crHandPoint
  51. Visible = False
  52. OnMouseDown = VertexColorShapeMouseDown
  53. end
  54. object LblPower: TLabel
  55. Left = 8
  56. Top = 68
  57. Width = 34
  58. Height = 13
  59. Caption = 'Power:'
  60. end
  61. object PnlSampler: TPanel
  62. Left = 1
  63. Top = 1
  64. Width = 175
  65. Height = 16
  66. Align = alTop
  67. BevelOuter = bvNone
  68. Caption = 'Sampler'
  69. Color = clBtnShadow
  70. Font.Charset = DEFAULT_CHARSET
  71. Font.Color = clWindow
  72. Font.Height = -11
  73. Font.Name = 'Tahoma'
  74. Font.Style = []
  75. ParentFont = False
  76. TabOrder = 0
  77. end
  78. object CmbBackgroundSampler: TComboBox
  79. Left = 8
  80. Top = 39
  81. Width = 161
  82. Height = 21
  83. Style = csDropDownList
  84. Anchors = [akLeft, akTop, akRight]
  85. ItemIndex = 0
  86. TabOrder = 1
  87. Text = 'None'
  88. OnChange = CmbBackgroundSamplerChange
  89. Items.Strings = (
  90. 'None'
  91. 'Voronoi'
  92. 'Voronoi (HQ)'
  93. 'Shepards'
  94. 'Custom IDW')
  95. end
  96. object PnlVertex: TPanel
  97. Left = 1
  98. Top = 206
  99. Width = 175
  100. Height = 16
  101. BevelOuter = bvNone
  102. Caption = 'Vertex'
  103. Color = clBtnShadow
  104. Font.Charset = DEFAULT_CHARSET
  105. Font.Color = clWindow
  106. Font.Height = -11
  107. Font.Name = 'Tahoma'
  108. Font.Style = []
  109. ParentFont = False
  110. TabOrder = 2
  111. end
  112. object GbrPower: TGaugeBar
  113. Left = 48
  114. Top = 66
  115. Width = 121
  116. Height = 17
  117. Anchors = [akLeft, akTop, akRight]
  118. Backgnd = bgPattern
  119. Max = 10000
  120. Min = 1
  121. ShowHandleGrip = True
  122. Style = rbsMac
  123. Position = 5000
  124. OnChange = GbrPowerChange
  125. end
  126. object BtnStore: TButton
  127. Left = 14
  128. Top = 417
  129. Width = 147
  130. Height = 25
  131. Caption = '&Store Vertices'
  132. TabOrder = 4
  133. OnClick = BtnStoreClick
  134. end
  135. object BtnRecall: TButton
  136. Left = 14
  137. Top = 448
  138. Width = 147
  139. Height = 25
  140. Caption = '&Recall Vertices'
  141. Enabled = False
  142. TabOrder = 5
  143. OnClick = BtnRecallClick
  144. end
  145. object PnlDelaunayTriangulation: TPanel
  146. Left = 1
  147. Top = 107
  148. Width = 175
  149. Height = 16
  150. BevelOuter = bvNone
  151. Caption = 'Delaunay Triangulation'
  152. Color = clBtnShadow
  153. Font.Charset = DEFAULT_CHARSET
  154. Font.Color = clWindow
  155. Font.Height = -11
  156. Font.Name = 'Tahoma'
  157. Font.Style = []
  158. ParentFont = False
  159. TabOrder = 6
  160. end
  161. object CbxColoredPolygons: TCheckBox
  162. Left = 16
  163. Top = 129
  164. Width = 129
  165. Height = 17
  166. Caption = 'Show Colored Polygon'
  167. Checked = True
  168. State = cbChecked
  169. TabOrder = 7
  170. OnClick = CbxColoredPolygonsClick
  171. end
  172. end
  173. object PaintBox32: TPaintBox32
  174. Left = 8
  175. Top = 8
  176. Width = 497
  177. Height = 465
  178. Anchors = [akLeft, akTop, akRight, akBottom]
  179. TabOrder = 1
  180. OnDblClick = SelectVertexColorClick
  181. OnMouseDown = PaintBox32MouseDown
  182. OnMouseMove = PaintBox32MouseMove
  183. OnMouseUp = PaintBox32MouseUp
  184. OnPaintBuffer = PaintBox32PaintBuffer
  185. end
  186. object ColorDialog: TColorDialog
  187. Left = 336
  188. Top = 240
  189. end
  190. end