MainUnit.lfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. object FrmLion: TFrmLion
  2. Left = 539
  3. Height = 512
  4. Top = 294
  5. Width = 577
  6. Caption = 'Lion'
  7. ClientHeight = 512
  8. ClientWidth = 577
  9. Color = clBtnFace
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Tahoma'
  13. OnCreate = FormCreate
  14. OnDestroy = FormDestroy
  15. OnMouseWheel = FormMouseWheel
  16. LCLVersion = '1.0.1.4'
  17. object PaintBox32: TPaintBox32
  18. Left = 0
  19. Height = 512
  20. Top = 0
  21. Width = 400
  22. Align = alClient
  23. TabOrder = 0
  24. OnMouseDown = PaintBox32MouseDown
  25. OnMouseUp = PaintBox32MouseUp
  26. OnPaintBuffer = PaintBox32PaintBuffer
  27. OnResize = PaintBox32Resize
  28. end
  29. object PnlSettings: TPanel
  30. Left = 400
  31. Height = 512
  32. Top = 0
  33. Width = 177
  34. Align = alRight
  35. ClientHeight = 512
  36. ClientWidth = 177
  37. TabOrder = 1
  38. object LblAlpha: TLabel
  39. Left = 6
  40. Height = 14
  41. Top = 120
  42. Width = 32
  43. Caption = 'Alpha:'
  44. ParentColor = False
  45. end
  46. object LblStrokeWidth: TLabel
  47. Left = 6
  48. Height = 14
  49. Top = 143
  50. Width = 33
  51. Caption = 'Width:'
  52. ParentColor = False
  53. Visible = False
  54. end
  55. object PnlSampler: TPanel
  56. Left = 1
  57. Height = 16
  58. Top = 1
  59. Width = 175
  60. Align = alTop
  61. BevelOuter = bvNone
  62. Caption = 'Drawing'
  63. Color = clBtnShadow
  64. Font.Color = clWindow
  65. Font.Height = -11
  66. Font.Name = 'Tahoma'
  67. ParentColor = False
  68. ParentFont = False
  69. TabOrder = 0
  70. end
  71. object GbrAlpha: TGaugeBar
  72. Left = 46
  73. Height = 17
  74. Top = 118
  75. Width = 125
  76. Anchors = [akTop, akLeft, akRight]
  77. Color = clScrollBar
  78. Backgnd = bgPattern
  79. Max = 255
  80. ShowHandleGrip = True
  81. Style = rbsMac
  82. Position = 255
  83. OnChange = GbrAlphaChange
  84. end
  85. object RgpBrush: TRadioGroup
  86. Left = 6
  87. Height = 66
  88. Top = 23
  89. Width = 165
  90. AutoFill = True
  91. Caption = 'Brush'
  92. ChildSizing.LeftRightSpacing = 6
  93. ChildSizing.TopBottomSpacing = 6
  94. ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
  95. ChildSizing.EnlargeVertical = crsHomogenousChildResize
  96. ChildSizing.ShrinkHorizontal = crsScaleChilds
  97. ChildSizing.ShrinkVertical = crsScaleChilds
  98. ChildSizing.Layout = cclLeftToRightThenTopToBottom
  99. ChildSizing.ControlsPerLine = 1
  100. ClientHeight = 48
  101. ClientWidth = 161
  102. ItemIndex = 0
  103. Items.Strings = (
  104. 'Solid'
  105. 'Outline'
  106. )
  107. OnClick = RgpBrushClick
  108. TabOrder = 2
  109. end
  110. object CbxClearBackground: TCheckBox
  111. Left = 6
  112. Height = 17
  113. Top = 95
  114. Width = 104
  115. Caption = 'Clear Background'
  116. Checked = True
  117. OnClick = CbxClearBackgroundClick
  118. State = cbChecked
  119. TabOrder = 3
  120. end
  121. object PnlInteraction: TPanel
  122. Left = 1
  123. Height = 16
  124. Top = 177
  125. Width = 175
  126. BevelOuter = bvNone
  127. Caption = 'Interaction'
  128. Color = clBtnShadow
  129. Font.Color = clWindow
  130. Font.Height = -11
  131. Font.Name = 'Tahoma'
  132. ParentColor = False
  133. ParentFont = False
  134. TabOrder = 4
  135. end
  136. object GbrWidth: TGaugeBar
  137. Left = 46
  138. Height = 17
  139. Top = 141
  140. Width = 125
  141. Anchors = [akTop, akLeft, akRight]
  142. Color = clScrollBar
  143. Backgnd = bgPattern
  144. ShowHandleGrip = True
  145. Style = rbsMac
  146. Visible = False
  147. Position = 20
  148. OnChange = GbrWidthChange
  149. end
  150. object RgpMouse: TRadioGroup
  151. Left = 6
  152. Height = 66
  153. Top = 199
  154. Width = 165
  155. AutoFill = True
  156. Caption = 'Mouse'
  157. ChildSizing.LeftRightSpacing = 6
  158. ChildSizing.TopBottomSpacing = 6
  159. ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
  160. ChildSizing.EnlargeVertical = crsHomogenousChildResize
  161. ChildSizing.ShrinkHorizontal = crsScaleChilds
  162. ChildSizing.ShrinkVertical = crsScaleChilds
  163. ChildSizing.Layout = cclLeftToRightThenTopToBottom
  164. ChildSizing.ControlsPerLine = 1
  165. ClientHeight = 48
  166. ClientWidth = 161
  167. Enabled = False
  168. ItemIndex = 0
  169. Items.Strings = (
  170. 'Zoom / Rotate / Move'
  171. 'Lens'
  172. )
  173. OnClick = RgpBrushClick
  174. TabOrder = 6
  175. end
  176. end
  177. end