blueprint-compiler/tests/samples/action_widgets.blp
2022-02-18 19:04:08 +03:00

18 lines
309 B
Text

using Gtk 4.0;
Dialog {
[action response=cancel]
Button cancel_button {
label: _("Cancel");
}
[action reponse=9]
Button custom_response_button {
label: _("Reinstall Windows");
}
[action response=ok default]
Button ok_button {
label: _("Ok");
}
}