serenity/Userland/Games/Minesweeper/CustomGameWidget.gml
tetektoza 4db9996cc0 Minesweeper: Port to GML compilation
This patch ports minesweeper to GML compilation,
and introduces a few changes made to associated files.
2023-10-24 21:47:18 +02:00

73 lines
1.3 KiB
Plaintext

@Minesweeper::CustomGameWidget {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [4]
spacing: 6
}
@GUI::GroupBox {
title: "Field"
layout: @GUI::HorizontalBoxLayout {
margins: [6]
}
@GUI::Label {
text: "Columns: "
autosize: true
}
@GUI::SpinBox {
name: "columns_spinbox"
min: 9
max: 50
fixed_width: 40
}
@GUI::Layout::Spacer {}
@GUI::Label {
text: "Rows: "
autosize: true
}
@GUI::SpinBox {
name: "rows_spinbox"
min: 9
max: 50
fixed_width: 40
}
@GUI::Layout::Spacer {}
@GUI::Label {
text: "Mines: "
autosize: true
}
@GUI::SpinBox {
name: "mines_spinbox"
min: 1
max: 2500
fixed_width: 50
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 10
}
@GUI::Layout::Spacer {}
@GUI::DialogButton {
name: "ok_button"
text: "OK"
}
@GUI::DialogButton {
name: "cancel_button"
text: "Cancel"
}
}
}