Gradience/data/ui/app_type_dialog.blp

41 lines
885 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 application types you want to theme:");
}
CheckButton gtk4-app-type {
label: _("Libadwaita and GTK 4 Applications");
active: true;
}
CheckButton gtk3-app-type {
label: _("GTK 3 Applications (adw-gtk3 theme is 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");
// }
// }
}
}