mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Load the outputs of the tests in Gtk.Builder and make sure they work. Some of them don't and need to be fixed. Others will require a bit more work to set up callbacks, templates, etc.
25 lines
406 B
Text
25 lines
406 B
Text
using Gtk 4.0;
|
|
|
|
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");
|
|
}
|
|
}
|