summaryrefslogtreecommitdiff
path: root/examples/gui/layouttest/boxform.frm
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gui/layouttest/boxform.frm')
-rw-r--r--examples/gui/layouttest/boxform.frm24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/gui/layouttest/boxform.frm b/examples/gui/layouttest/boxform.frm
new file mode 100644
index 00000000..2e03f217
--- /dev/null
+++ b/examples/gui/layouttest/boxform.frm
@@ -0,0 +1,24 @@
+object BoxWindow: TBoxWindow
+ Text = 'Box layout'
+ BorderWidth = 8
+ object Layout: TBoxLayout
+ Spacing = 8
+ Orientation = Vertical
+ object BoxLayout: TBoxLayout
+ Spacing = 4
+ object Button1: TButton
+ Text = 'Button 1'
+ end
+ object Button2: TButton
+ Text = 'Button 2'
+ end
+ object Button3: TButton
+ Text = 'Button 3'
+ end
+ end
+ object FlipButton: TButton
+ Text = 'Switch to vertical'
+ OnClick = FlipOrientation
+ end
+ end
+end