lazarus/examples/anchordocking/dockform1unit.lfm
mattias 32a23b4bf2 anchordocking: added spiral example
git-svn-id: trunk@14002 -
2008-02-06 14:37:47 +00:00

103 lines
2.2 KiB
Plaintext

object MainForm: TMainForm
Left = 292
Height = 331
Top = 209
Width = 400
HorzScrollBar.Page = 399
VertScrollBar.Page = 330
ActiveControl = CreateNewFormButton
Caption = 'MainForm'
ClientHeight = 331
ClientWidth = 400
OnCreate = FormCreate
OnDestroy = FormDestroy
OnPaint = FormPaint
PopupMenu = MainPopupMenu
object CreateNewFormButton: TButton
Left = 8
Height = 29
Top = 32
Width = 130
AutoSize = True
Caption = 'Create a new form'
OnClick = CreateNewFormButtonClick
TabOrder = 0
end
object SaveLayoutButton: TButton
Left = 8
Height = 29
Top = 64
Width = 177
AutoSize = True
Caption = 'Save Layout to config.xml'
OnClick = SaveLayoutButtonClick
TabOrder = 1
end
object CreateLayoutGroupBox: TGroupBox
Left = 16
Height = 200
Top = 104
Width = 115
AutoSize = True
Caption = 'Create Layout'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ChildSizing.HorizontalSpacing = 6
ChildSizing.VerticalSpacing = 6
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 181
ClientWidth = 111
TabOrder = 2
object ClearLayoutsButton: TButton
Left = 6
Height = 29
Top = 6
Width = 99
Caption = 'Clear Layouts'
OnClick = ClearLayoutsButtonClick
TabOrder = 1
end
object TwoSiblingsButton: TButton
Left = 6
Height = 29
Top = 41
Width = 99
Caption = 'Two Siblings'
OnClick = TwoSiblingsButtonClick
TabOrder = 4
end
object TwoPagesButton: TButton
Left = 6
Height = 29
Top = 76
Width = 99
AutoSize = True
Caption = 'Two Pages'
OnClick = TwoPagesButtonClick
TabOrder = 0
end
object ThreePagesButton: TButton
Left = 6
Height = 29
Top = 111
Width = 99
Caption = 'Three Pages'
OnClick = ThreePagesButtonClick
TabOrder = 2
end
object SpiralButton: TButton
Left = 6
Height = 29
Top = 146
Width = 99
Caption = 'Spiral'
OnClick = SpiralButtonClick
TabOrder = 3
end
end
object MainPopupMenu: TPopupMenu
left = 192
top = 24
end
end