MainUnit.lfm 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. object FormRotLayer: TFormRotLayer
  2. Left = 208
  3. Top = 110
  4. Caption = 'Rotation Layer Example'
  5. ClientHeight = 477
  6. ClientWidth = 365
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. OnCreate = FormCreate
  15. DesignSize = (
  16. 365
  17. 477)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object LblAngle: TLabel
  21. Left = 12
  22. Top = 313
  23. Width = 76
  24. Height = 13
  25. Anchors = [akLeft, akBottom]
  26. Caption = 'RotLayer.Angle:'
  27. end
  28. object LblPositionX: TLabel
  29. Left = 12
  30. Top = 345
  31. Width = 96
  32. Height = 13
  33. Anchors = [akLeft, akBottom]
  34. Caption = 'RotLayer.Position.X:'
  35. end
  36. object LblPositionY: TLabel
  37. Left = 12
  38. Top = 373
  39. Width = 96
  40. Height = 13
  41. Anchors = [akLeft, akBottom]
  42. Caption = 'RotLayer.Position.Y:'
  43. end
  44. object LblScale: TLabel
  45. Left = 12
  46. Top = 441
  47. Width = 85
  48. Height = 13
  49. Anchors = [akLeft, akBottom]
  50. Caption = 'ImgView32.Scale:'
  51. end
  52. object ImgView: TImgView32
  53. Left = 4
  54. Top = 8
  55. Width = 354
  56. Height = 294
  57. Anchors = [akLeft, akTop, akRight, akBottom]
  58. Bitmap.ResamplerClassName = 'TNearestResampler'
  59. BitmapAlign = baCustom
  60. Color = clAppWorkSpace
  61. ParentColor = False
  62. RepaintMode = rmOptimizer
  63. Scale = 1.000000000000000000
  64. ScaleMode = smScale
  65. ScrollBars.ShowHandleGrip = True
  66. ScrollBars.Style = rbsMac
  67. ScrollBars.Size = 16
  68. OverSize = 0
  69. TabOrder = 0
  70. end
  71. object GbrAngle: TGaugeBar
  72. Left = 120
  73. Top = 313
  74. Width = 153
  75. Height = 16
  76. Anchors = [akLeft, akBottom]
  77. Backgnd = bgPattern
  78. Max = 180
  79. Min = -180
  80. ShowHandleGrip = True
  81. Style = rbsMac
  82. Position = 0
  83. OnChange = GbrAngleChange
  84. end
  85. object GbrPositionX: TGaugeBar
  86. Left = 120
  87. Top = 345
  88. Width = 153
  89. Height = 16
  90. Anchors = [akLeft, akBottom]
  91. Backgnd = bgPattern
  92. Max = 200
  93. ShowHandleGrip = True
  94. Style = rbsMac
  95. Position = 100
  96. OnChange = GbrPositionChange
  97. end
  98. object GbrPositionY: TGaugeBar
  99. Left = 120
  100. Top = 373
  101. Width = 153
  102. Height = 16
  103. Anchors = [akLeft, akBottom]
  104. Backgnd = bgPattern
  105. Max = 200
  106. ShowHandleGrip = True
  107. Style = rbsMac
  108. Position = 100
  109. OnChange = GbrPositionChange
  110. end
  111. object GbrScale: TGaugeBar
  112. Left = 120
  113. Top = 441
  114. Width = 153
  115. Height = 16
  116. Anchors = [akLeft, akBottom]
  117. Backgnd = bgPattern
  118. Min = -100
  119. ShowHandleGrip = True
  120. Style = rbsMac
  121. Position = 0
  122. OnChange = GbrScaleChange
  123. end
  124. object CbxScaled: TCheckBox
  125. Left = 8
  126. Top = 405
  127. Width = 125
  128. Height = 17
  129. Alignment = taLeftJustify
  130. Anchors = [akLeft, akBottom]
  131. Caption = 'RotLayer.Scaled:'
  132. Checked = True
  133. State = cbChecked
  134. TabOrder = 5
  135. OnClick = CbxScaledClick
  136. end
  137. end