MainUnit.dfm 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. object FmArrowHead: TFmArrowHead
  2. Left = 375
  3. Top = 138
  4. Caption = 'ArrowHead'
  5. ClientHeight = 470
  6. ClientWidth = 567
  7. Color = clBtnFace
  8. Font.Charset = ANSI_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -12
  11. Font.Name = 'Arial'
  12. Font.Style = []
  13. KeyPreview = True
  14. OldCreateOrder = False
  15. OnCreate = FormCreate
  16. OnDestroy = FormDestroy
  17. PixelsPerInch = 96
  18. TextHeight = 15
  19. object ImgView32: TImgView32
  20. Left = 173
  21. Top = 0
  22. Width = 394
  23. Height = 470
  24. Align = alClient
  25. Bitmap.ResamplerClassName = 'TNearestResampler'
  26. BitmapAlign = baCustom
  27. Scale = 1.000000000000000000
  28. ScaleMode = smScale
  29. ScrollBars.ShowHandleGrip = True
  30. ScrollBars.Style = rbsDefault
  31. ScrollBars.Size = 16
  32. ScrollBars.Visibility = svHidden
  33. OverSize = 0
  34. TabOrder = 0
  35. OnMouseDown = ImgView32MouseDown
  36. OnMouseMove = ImgView32MouseMove
  37. OnMouseUp = ImgView32MouseUp
  38. OnResize = ImgView32Resize
  39. end
  40. object PnlControl: TPanel
  41. Left = 0
  42. Top = 0
  43. Width = 173
  44. Height = 470
  45. Align = alLeft
  46. TabOrder = 1
  47. object LblArrowSize: TLabel
  48. Left = 15
  49. Top = 19
  50. Width = 57
  51. Height = 15
  52. Caption = '&Arrow Size'
  53. FocusControl = EdtArrowSize
  54. end
  55. object LblLineWidth: TLabel
  56. Left = 16
  57. Top = 315
  58. Width = 58
  59. Height = 15
  60. Caption = 'Line &Width'
  61. FocusControl = TbrLineWidth
  62. end
  63. object BtnClose: TButton
  64. Left = 15
  65. Top = 424
  66. Width = 140
  67. Height = 25
  68. Cancel = True
  69. Caption = '&Close'
  70. TabOrder = 6
  71. OnClick = BtnCloseClick
  72. end
  73. object RgpArrowStyle: TRadioGroup
  74. Left = 15
  75. Top = 69
  76. Width = 140
  77. Height = 131
  78. Caption = 'Arrow &Style'
  79. ItemIndex = 2
  80. Items.Strings = (
  81. 'None'
  82. '3 point'
  83. '4 point'
  84. 'Diamond'
  85. 'Ellipse')
  86. TabOrder = 1
  87. OnClick = RgpArrowStyleClick
  88. end
  89. object EdtArrowSize: TEdit
  90. Left = 15
  91. Top = 36
  92. Width = 140
  93. Height = 23
  94. TabOrder = 0
  95. Text = '20'
  96. OnChange = EdtArrowSizeChange
  97. end
  98. object RgpPosition: TRadioGroup
  99. Left = 15
  100. Top = 210
  101. Width = 140
  102. Height = 97
  103. Caption = 'Arrow &Locations'
  104. ItemIndex = 2
  105. Items.Strings = (
  106. 'Arrow at start'
  107. 'Arrow at end'
  108. 'Arrow at both ends')
  109. TabOrder = 2
  110. OnClick = RgpArrowStyleClick
  111. end
  112. object TbrLineWidth: TTrackBar
  113. Left = 9
  114. Top = 335
  115. Width = 153
  116. Height = 31
  117. Max = 8
  118. Min = 1
  119. Position = 3
  120. TabOrder = 3
  121. OnChange = TbrLineWidthChange
  122. end
  123. object TbrAnimationSpeed: TTrackBar
  124. Left = 91
  125. Top = 381
  126. Width = 70
  127. Height = 31
  128. Max = 8
  129. Min = 1
  130. Position = 3
  131. TabOrder = 5
  132. TickStyle = tsNone
  133. OnChange = TbrAnimationSpeedChange
  134. end
  135. object CbxAnimate: TCheckBox
  136. Left = 15
  137. Top = 384
  138. Width = 69
  139. Height = 17
  140. Caption = 'Ani&mate'
  141. TabOrder = 4
  142. OnClick = CbxAnimateClick
  143. end
  144. end
  145. object Animation: TTimer
  146. Enabled = False
  147. Interval = 30
  148. OnTimer = AnimationTimer
  149. Left = 184
  150. Top = 16
  151. end
  152. end