123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- object MainForm: TMainForm
- Left = 272
- Height = 280
- Top = 282
- Width = 465
- BorderStyle = bsToolWindow
- Caption = 'PixelF Example'
- ClientHeight = 280
- ClientWidth = 465
- Color = clBtnFace
- Constraints.MaxHeight = 287
- Constraints.MaxWidth = 467
- Constraints.MinHeight = 280
- Constraints.MinWidth = 465
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- OnCreate = FormCreate
- Position = poScreenCenter
- LCLVersion = '2.0.12.0'
- object Image32: TImage32
- Left = 8
- Height = 266
- Top = 8
- Width = 306
- Anchors = [akTop, akLeft, akRight, akBottom]
- AutoSize = True
- Bitmap.DrawMode = dmBlend
- Bitmap.ResamplerClassName = 'TNearestResampler'
- BitmapAlign = baCenter
- Scale = 1
- ScaleMode = smNormal
- TabOrder = 0
- OnPaintStage = Image32PaintStage
- end
- object PnlSettings: TPanel
- Left = 322
- Height = 280
- Top = 0
- Width = 143
- Align = alRight
- ClientHeight = 280
- ClientWidth = 143
- TabOrder = 1
- object LblTwirlPower: TLabel
- Left = 8
- Height = 13
- Top = 32
- Width = 58
- Caption = 'Twirl Power:'
- ParentColor = False
- end
- object PnlTwirlDistortion: TPanel
- Left = 1
- Height = 16
- Top = 1
- Width = 141
- Align = alTop
- BevelOuter = bvNone
- Caption = 'Twirl Distortion'
- Color = clBtnShadow
- Font.Color = clWindow
- Font.Height = -11
- Font.Name = 'Tahoma'
- ParentColor = False
- ParentFont = False
- TabOrder = 0
- end
- object GbrTwist: TGaugeBar
- Left = 8
- Height = 12
- Top = 48
- Width = 129
- Color = clScrollBar
- Backgnd = bgPattern
- HandleSize = 16
- Max = 50
- Min = -50
- ShowArrows = False
- ShowHandleGrip = True
- Style = rbsMac
- Position = 0
- OnChange = GbrTwistChange
- end
- object RbxGetPixelFS: TRadioButton
- Left = 8
- Height = 19
- Top = 96
- Width = 109
- Caption = 'TBitmap32.PixelFS'
- OnClick = GbrTwistChange
- TabOrder = 2
- end
- object RbxPixelS: TRadioButton
- Left = 8
- Height = 19
- Top = 72
- Width = 103
- Caption = 'TBitmap32.PixelS'
- Checked = True
- OnClick = GbrTwistChange
- TabOrder = 3
- TabStop = True
- end
- end
- end
|