diff options
Diffstat (limited to 'Userland/Games/GameOfLife/GameOfLife.gml')
-rw-r--r-- | Userland/Games/GameOfLife/GameOfLife.gml | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/Userland/Games/GameOfLife/GameOfLife.gml b/Userland/Games/GameOfLife/GameOfLife.gml new file mode 100644 index 0000000000..4a0d0803f1 --- /dev/null +++ b/Userland/Games/GameOfLife/GameOfLife.gml @@ -0,0 +1,57 @@ +@GUI::Widget { + layout: @GUI::VerticalBoxLayout { + } + + @GUI::ToolbarContainer { + + @GUI::Toolbar { + name: "toolbar" + + @GUI::Label { + text: "Columns:" + fixed_width: 60 + } + + @GUI::SpinBox { + name: "columns_spinbox" + min: 10 + max: 999 + fixed_width: 40 + } + @GUI::VerticalSeparator { + } + @GUI::Label { + text: "Rows:" + fixed_width: 40 + } + + @GUI::SpinBox { + name: "rows_spinbox" + min: 10 + max: 999 + fixed_width: 40 + } + @GUI::VerticalSeparator { + } + @GUI::Label { + text: "Update Speed:" + fixed_width: 90 + } + @GUI::SpinBox { + name: "interval_spinbox" + min: 10 + max: 5000 + fixed_width: 60 + } + } + } + + @GUI::Widget { + name: "board_widget_container" + fill_with_background_color: true + } + + @GUI::Statusbar { + name: "statusbar" + } +} |