Gradience/data/ui/app_type_dialog.blp
tfuxu 4edc5f4b50 refactor: move data files (like .ui, .json or .svg) to data/ directory
* move flatpak manifests to build-aux/flatpak directory
* update workflows to new manifests locations
* update README
2022-08-28 03:48:58 +02:00

40 lines
858 B
Text

using Gtk 4.0;
using Adw 1;
template GradienceAppTypeDialog : Adw.MessageDialog {
[extra-child]
Box {
orientation: vertical;
spacing: 15;
Box {
orientation: vertical;
Label {
styles ["heading"]
label: _("Select app types you want to affect:");
}
CheckButton gtk4-app-type {
label: _("Libadwaita and GTK 4 apps");
active: true;
}
CheckButton gtk3-app-type {
label: _("GTK 3 apps (adw-gtk3 theme required)");
}
}
// Box {
// orientation: vertical;
// Label {
// styles ["heading"]
// label: _("Select color mode you want to affect:");
// }
// CheckButton dark {
// label: _("Dark");
// active: true;
// }
// CheckButton light {
// label: _("Light");
// }
// }
}
}