134 lines
2.8 KiB
Plaintext
134 lines
2.8 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 204
|
|
Top = 157
|
|
Caption = 'Touch Screen Gestures demo (www.imageen.com)'
|
|
ClientHeight = 585
|
|
ClientWidth = 1034
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'MS Sans Serif'
|
|
Font.Style = []
|
|
OldCreateOrder = False
|
|
Position = poScreenCenter
|
|
OnCreate = FormCreate
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Splitter: TSplitter
|
|
Left = 225
|
|
Top = 0
|
|
Height = 566
|
|
Beveled = True
|
|
end
|
|
object Panel2: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 225
|
|
Height = 566
|
|
Align = alLeft
|
|
BevelOuter = bvNone
|
|
TabOrder = 0
|
|
object Label1: TLabel
|
|
Left = 28
|
|
Top = 87
|
|
Width = 143
|
|
Height = 13
|
|
Caption = '(Drag screen to pan an image)'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 28
|
|
Top = 132
|
|
Width = 150
|
|
Height = 13
|
|
Caption = '(Pinch in/out to zoom an image)'
|
|
end
|
|
object Label3: TLabel
|
|
Left = 28
|
|
Top = 228
|
|
Width = 178
|
|
Height = 13
|
|
Caption = '(Click outside layer and drag to rotate)'
|
|
end
|
|
object Label4: TLabel
|
|
Left = 28
|
|
Top = 180
|
|
Width = 140
|
|
Height = 13
|
|
Caption = '(Click layer and drag to move)'
|
|
end
|
|
object CheckBoxPan: TCheckBox
|
|
Left = 12
|
|
Top = 64
|
|
Width = 97
|
|
Height = 17
|
|
Caption = 'Enable Pan'
|
|
Checked = True
|
|
State = cbChecked
|
|
TabOrder = 1
|
|
OnClick = CheckBoxPanClick
|
|
end
|
|
object CheckBoxZoom: TCheckBox
|
|
Left = 12
|
|
Top = 112
|
|
Width = 97
|
|
Height = 17
|
|
Caption = 'Enable Zoom'
|
|
Checked = True
|
|
State = cbChecked
|
|
TabOrder = 2
|
|
OnClick = CheckBoxZoomClick
|
|
end
|
|
object CheckBoxLayerRotate: TCheckBox
|
|
Left = 12
|
|
Top = 208
|
|
Width = 161
|
|
Height = 17
|
|
Caption = 'Enable Layer Rotate'
|
|
TabOrder = 4
|
|
OnClick = CheckBoxLayerRotateClick
|
|
end
|
|
object CheckLayerMove: TCheckBox
|
|
Left = 12
|
|
Top = 160
|
|
Width = 161
|
|
Height = 17
|
|
Caption = 'Enable Layer Move'
|
|
TabOrder = 3
|
|
OnClick = CheckLayerMoveClick
|
|
end
|
|
object btnOpen: TButton
|
|
Left = 12
|
|
Top = 16
|
|
Width = 129
|
|
Height = 25
|
|
Caption = 'Open Image...'
|
|
TabOrder = 0
|
|
OnClick = btnOpenClick
|
|
end
|
|
end
|
|
object StatusBar1: TStatusBar
|
|
Left = 0
|
|
Top = 566
|
|
Width = 1034
|
|
Height = 19
|
|
Panels = <>
|
|
SimplePanel = True
|
|
end
|
|
object ImageEnView1: TImageEnView
|
|
Left = 228
|
|
Top = 0
|
|
Width = 806
|
|
Height = 566
|
|
Background = clBtnFace
|
|
Ctl3D = False
|
|
ParentCtl3D = False
|
|
BorderStyle = bsNone
|
|
LegacyBitmap = False
|
|
OnImageEnGesture = ImageEnView1ImageEnGesture
|
|
EnableInteractionHints = True
|
|
Align = alClient
|
|
TabOrder = 2
|
|
end
|
|
end
|