fMainD.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. object MainForm: TMainForm
  2. Left = 272
  3. Top = 282
  4. BorderStyle = bsToolWindow
  5. Caption = 'PixelF Example'
  6. ClientHeight = 258
  7. ClientWidth = 459
  8. Color = clBtnFace
  9. Constraints.MaxHeight = 287
  10. Constraints.MaxWidth = 467
  11. Constraints.MinHeight = 280
  12. Constraints.MinWidth = 465
  13. Font.Charset = DEFAULT_CHARSET
  14. Font.Color = clWindowText
  15. Font.Height = -11
  16. Font.Name = 'MS Sans Serif'
  17. Font.Style = []
  18. OldCreateOrder = False
  19. Position = poScreenCenter
  20. OnCreate = FormCreate
  21. DesignSize = (
  22. 459
  23. 258)
  24. PixelsPerInch = 96
  25. TextHeight = 13
  26. object Image32: TImage32
  27. Left = 8
  28. Top = 8
  29. Width = 300
  30. Height = 244
  31. Anchors = [akLeft, akTop, akRight, akBottom]
  32. AutoSize = True
  33. Bitmap.DrawMode = dmBlend
  34. Bitmap.ResamplerClassName = 'TNearestResampler'
  35. BitmapAlign = baCenter
  36. Scale = 1.000000000000000000
  37. ScaleMode = smNormal
  38. TabOrder = 0
  39. OnPaintStage = Image32PaintStage
  40. end
  41. object PnlSettings: TPanel
  42. Left = 316
  43. Top = 0
  44. Width = 143
  45. Height = 258
  46. Align = alRight
  47. TabOrder = 1
  48. object LblTwirlPower: TLabel
  49. Left = 8
  50. Top = 32
  51. Width = 58
  52. Height = 13
  53. Caption = 'Twirl Power:'
  54. end
  55. object PnlTwirlDistortion: TPanel
  56. Left = 1
  57. Top = 1
  58. Width = 141
  59. Height = 16
  60. Align = alTop
  61. BevelOuter = bvNone
  62. Caption = 'Twirl Distortion'
  63. Color = clBtnShadow
  64. Font.Charset = DEFAULT_CHARSET
  65. Font.Color = clWindow
  66. Font.Height = -11
  67. Font.Name = 'Tahoma'
  68. Font.Style = []
  69. ParentFont = False
  70. TabOrder = 0
  71. end
  72. object GbrTwist: TGaugeBar
  73. Left = 8
  74. Top = 48
  75. Width = 129
  76. Height = 12
  77. Backgnd = bgPattern
  78. HandleSize = 16
  79. Max = 50
  80. Min = -50
  81. ShowArrows = False
  82. ShowHandleGrip = True
  83. Style = rbsMac
  84. Position = 0
  85. OnChange = GbrTwistChange
  86. end
  87. object RbxGetPixelFS: TRadioButton
  88. Left = 8
  89. Top = 96
  90. Width = 129
  91. Height = 17
  92. Caption = 'TBitmap32.PixelFS'
  93. TabOrder = 2
  94. OnClick = GbrTwistChange
  95. end
  96. object RbxPixelS: TRadioButton
  97. Left = 8
  98. Top = 72
  99. Width = 105
  100. Height = 17
  101. Caption = 'TBitmap32.PixelS'
  102. Checked = True
  103. TabOrder = 3
  104. TabStop = True
  105. OnClick = GbrTwistChange
  106. end
  107. end
  108. end