MainUnit.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. object FrmClipper: TFrmClipper
  2. Left = 280
  3. Top = 166
  4. Caption = 'Clipper'
  5. ClientHeight = 470
  6. ClientWidth = 710
  7. Color = clBtnFace
  8. Font.Charset = ANSI_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -12
  11. Font.Name = 'Arial'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. OnKeyDown = FormKeyDown
  16. PixelsPerInch = 96
  17. TextHeight = 15
  18. object PnlControl: TPanel
  19. Left = 0
  20. Top = 0
  21. Width = 173
  22. Height = 470
  23. Align = alLeft
  24. TabOrder = 0
  25. ExplicitHeight = 508
  26. object BtnExit: TButton
  27. Left = 16
  28. Top = 420
  29. Width = 138
  30. Height = 25
  31. Cancel = True
  32. Caption = 'Exit'
  33. TabOrder = 5
  34. OnClick = BtnExitClick
  35. end
  36. object rgClipping: TRadioGroup
  37. Left = 16
  38. Top = 26
  39. Width = 138
  40. Height = 127
  41. Caption = 'Clipping Op'
  42. ItemIndex = 1
  43. Items.Strings = (
  44. '&Intersection'
  45. '&Union'
  46. '&Difference'
  47. '&XOR')
  48. TabOrder = 0
  49. end
  50. object BtnClear: TButton
  51. Left = 16
  52. Top = 384
  53. Width = 138
  54. Height = 25
  55. Caption = '&Clear'
  56. TabOrder = 4
  57. OnClick = BtnClearClick
  58. end
  59. object RgpObject: TRadioGroup
  60. Left = 16
  61. Top = 176
  62. Width = 138
  63. Height = 98
  64. Caption = 'Shape'
  65. ItemIndex = 0
  66. Items.Strings = (
  67. '&Star'
  68. '&Ellipse'
  69. '&Rectangle')
  70. TabOrder = 1
  71. end
  72. object BtnInflate: TButton
  73. Left = 16
  74. Top = 296
  75. Width = 138
  76. Height = 25
  77. Caption = 'In&flate'
  78. TabOrder = 2
  79. OnClick = BtnInflateClick
  80. end
  81. object BtnDeflate: TButton
  82. Left = 16
  83. Top = 330
  84. Width = 138
  85. Height = 25
  86. Caption = 'Defla&te'
  87. TabOrder = 3
  88. OnClick = BtnDeflateClick
  89. end
  90. end
  91. object ImgView32: TImgView32
  92. Left = 173
  93. Top = 0
  94. Width = 537
  95. Height = 470
  96. Align = alClient
  97. AutoSize = True
  98. Bitmap.ResamplerClassName = 'TNearestResampler'
  99. BitmapAlign = baCenter
  100. Scale = 1.000000000000000000
  101. ScaleMode = smScale
  102. ScrollBars.ShowHandleGrip = True
  103. ScrollBars.Style = rbsDefault
  104. ScrollBars.Size = 16
  105. ScrollBars.Visibility = svHidden
  106. SizeGrip = sgAlways
  107. OverSize = 0
  108. TabOrder = 1
  109. OnMouseDown = ImgView32MouseDown
  110. OnMouseLeave = ImgView32MouseLeave
  111. OnMouseMove = ImgView32MouseMove
  112. ExplicitLeft = 169
  113. ExplicitWidth = 665
  114. ExplicitHeight = 508
  115. end
  116. end