123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- object FormRotLayer: TFormRotLayer
- Left = 208
- Top = 110
- Caption = 'Rotation Layer Example'
- ClientHeight = 477
- ClientWidth = 365
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'MS Sans Serif'
- Font.Style = []
- OldCreateOrder = False
- OnCreate = FormCreate
- DesignSize = (
- 365
- 477)
- PixelsPerInch = 96
- TextHeight = 13
- object LblAngle: TLabel
- Left = 12
- Top = 313
- Width = 76
- Height = 13
- Anchors = [akLeft, akBottom]
- Caption = 'RotLayer.Angle:'
- end
- object LblPositionX: TLabel
- Left = 12
- Top = 345
- Width = 96
- Height = 13
- Anchors = [akLeft, akBottom]
- Caption = 'RotLayer.Position.X:'
- end
- object LblPositionY: TLabel
- Left = 12
- Top = 373
- Width = 96
- Height = 13
- Anchors = [akLeft, akBottom]
- Caption = 'RotLayer.Position.Y:'
- end
- object LblScale: TLabel
- Left = 12
- Top = 441
- Width = 85
- Height = 13
- Anchors = [akLeft, akBottom]
- Caption = 'ImgView32.Scale:'
- end
- object ImgView: TImgView32
- Left = 4
- Top = 8
- Width = 354
- Height = 294
- Anchors = [akLeft, akTop, akRight, akBottom]
- Bitmap.ResamplerClassName = 'TNearestResampler'
- BitmapAlign = baCustom
- Color = clAppWorkSpace
- ParentColor = False
- RepaintMode = rmOptimizer
- Scale = 1.000000000000000000
- ScaleMode = smScale
- ScrollBars.ShowHandleGrip = True
- ScrollBars.Style = rbsMac
- ScrollBars.Size = 16
- OverSize = 0
- TabOrder = 0
- end
- object GbrAngle: TGaugeBar
- Left = 120
- Top = 313
- Width = 153
- Height = 16
- Anchors = [akLeft, akBottom]
- Backgnd = bgPattern
- Max = 180
- Min = -180
- ShowHandleGrip = True
- Style = rbsMac
- Position = 0
- OnChange = GbrAngleChange
- end
- object GbrPositionX: TGaugeBar
- Left = 120
- Top = 345
- Width = 153
- Height = 16
- Anchors = [akLeft, akBottom]
- Backgnd = bgPattern
- Max = 200
- ShowHandleGrip = True
- Style = rbsMac
- Position = 100
- OnChange = GbrPositionChange
- end
- object GbrPositionY: TGaugeBar
- Left = 120
- Top = 373
- Width = 153
- Height = 16
- Anchors = [akLeft, akBottom]
- Backgnd = bgPattern
- Max = 200
- ShowHandleGrip = True
- Style = rbsMac
- Position = 100
- OnChange = GbrPositionChange
- end
- object GbrScale: TGaugeBar
- Left = 120
- Top = 441
- Width = 153
- Height = 16
- Anchors = [akLeft, akBottom]
- Backgnd = bgPattern
- Min = -100
- ShowHandleGrip = True
- Style = rbsMac
- Position = 0
- OnChange = GbrScaleChange
- end
- object CbxScaled: TCheckBox
- Left = 8
- Top = 405
- Width = 125
- Height = 17
- Alignment = taLeftJustify
- Anchors = [akLeft, akBottom]
- Caption = 'RotLayer.Scaled:'
- Checked = True
- State = cbChecked
- TabOrder = 5
- OnClick = CbxScaledClick
- end
- end
|