MainUnit.dfm 3.2 KB

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