blueprint-compiler/tests/samples/action_widgets.blp
2022-07-09 14:48:33 -05:00

25 lines
426 B
Text

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