mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 16:25:08 +00:00

This patch ports minesweeper to GML compilation, and introduces a few changes made to associated files.
72 lines
1.3 KiB
Text
72 lines
1.3 KiB
Text
@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"
|
|
}
|
|
}
|
|
}
|