summaryrefslogtreecommitdiff
path: root/examples/gui/layouttest/mainform.frm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gui/layouttest/mainform.frm')
-rw-r--r--examples/gui/layouttest/mainform.frm33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/gui/layouttest/mainform.frm b/examples/gui/layouttest/mainform.frm
new file mode 100644
index 00000000..ecad852b
--- /dev/null
+++ b/examples/gui/layouttest/mainform.frm
@@ -0,0 +1,33 @@
+object MainWindow: TMainWindow
+ BorderWidth = 8
+ object Box: TBoxLayout
+ Spacing = 8
+ Orientation = Vertical
+ object Label: TLabel
+ Text = 'Choose a test Window:'
+ end
+ object SimpleBtn: TButton
+ Text = 'Simple layout'
+ OnClick = SimpleBtnClicked
+ end
+ object FixedBtn: TButton
+ Text = 'Fixed layout'
+ end
+ object BoxBtn: TButton
+ Text = 'Box layout'
+ OnClick = BoxBtnClicked
+ end
+ object GridBtn: TButton
+ Text = 'Grid layout'
+ OnClick = GridBtnClicked
+ end
+ object DockingBtn: TButton
+ Text = 'Docking layout'
+ OnClick = DockingBtnClicked
+ end
+ object ExitBtn: TButton
+ Text = 'Exit'
+ OnClick = ExitBtnClicked
+ end
+ end
+end