mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-01 19:34:00 +00:00
200 lines
4.1 KiB
Text
200 lines
4.1 KiB
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceMainWindow : Adw.ApplicationWindow {
|
|
title: _("Gradience");
|
|
default-width: 1000;
|
|
default-height: 700;
|
|
|
|
Adw.ToastOverlay toast_overlay {
|
|
Adw.Leaflet leaflet {
|
|
can-navigate-back: true;
|
|
can-unfold: false;
|
|
|
|
Gtk.Box main_view {
|
|
orientation: vertical;
|
|
|
|
Adw.HeaderBar titlebar {
|
|
centering-policy: strict;
|
|
|
|
[start]
|
|
Button apply-button {
|
|
styles ["suggested-action"]
|
|
label: _("Apply");
|
|
action-name: "app.apply_color_scheme";
|
|
}
|
|
[start]
|
|
Gtk.MenuButton {
|
|
icon-name: "applications-science-symbolic";
|
|
menu-model: preview-menu;
|
|
//label: _("Preview");
|
|
}
|
|
|
|
[title]
|
|
Adw.ViewSwitcherTitle title {
|
|
stack: view_stack;
|
|
}
|
|
|
|
[end]
|
|
Gtk.MenuButton {
|
|
icon-name: "open-menu-symbolic";
|
|
menu-model: main-menu;
|
|
}
|
|
|
|
[end]
|
|
MenuButton presets-dropdown {
|
|
menu-model: presets-menu;
|
|
label: _("Presets");
|
|
icon-name: "palette-symbolic";
|
|
}
|
|
|
|
[end]
|
|
Button save-preset-button {
|
|
action-name: "app.save_preset";
|
|
tooltip-text: _("Save Preset");
|
|
Adw.ButtonContent {
|
|
icon-name: "drive-symbolic";
|
|
}
|
|
}
|
|
|
|
|
|
[end]
|
|
MenuButton errors-button {
|
|
styles ["raised", "error"]
|
|
icon-name: "dialog-warning-symbolic";
|
|
popover: errors-popover;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
Gtk.Box {
|
|
orientation: vertical;
|
|
|
|
Adw.ViewStack view_stack {
|
|
vexpand: true;
|
|
hexpand: true;
|
|
|
|
Adw.ViewStackPage {
|
|
name: "colors";
|
|
title: _("Colors");
|
|
icon-name: "larger-brush-symbolic";
|
|
|
|
child: Adw.PreferencesPage content { };
|
|
|
|
}
|
|
|
|
Adw.ViewStackPage {
|
|
name: "monet";
|
|
title: _("Monet");
|
|
icon-name: "color-picker-symbolic";
|
|
|
|
child: Adw.PreferencesPage content_monet { };
|
|
}
|
|
|
|
Adw.ViewStackPage {
|
|
name: "plugins";
|
|
title: _("Advanced");
|
|
icon-name: "settings-symbolic";
|
|
|
|
|
|
child: Adw.PreferencesPage content_plugins { };
|
|
|
|
}
|
|
}
|
|
|
|
Adw.ViewSwitcherBar {
|
|
stack: view_stack;
|
|
reveal: bind title.title-visible;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
menu main-menu {
|
|
section {
|
|
item {
|
|
label: _("Restore Applied Color Scheme");
|
|
action: "app.restore_color_scheme";
|
|
}
|
|
item {
|
|
label: _("Reset Applied Color Scheme");
|
|
action: "app.reset_color_scheme";
|
|
}
|
|
}
|
|
section {
|
|
item {
|
|
label: _("Preferences");
|
|
action: "app.preferences";
|
|
}
|
|
item {
|
|
label: _("About Gradience");
|
|
action: "app.about";
|
|
}
|
|
}
|
|
}
|
|
|
|
menu preview-menu {
|
|
section {
|
|
item {
|
|
label: _("Adwaita Demo");
|
|
action: "app.show_adwaita_demo";
|
|
}
|
|
item {
|
|
label: _("GTK4 Demo");
|
|
action: "app.show_gtk4_demo";
|
|
}
|
|
item {
|
|
label: _("GTK4 Widget Factory");
|
|
action: "app.show_gtk4_widget_factory";
|
|
}
|
|
}
|
|
}
|
|
|
|
menu presets-menu {
|
|
section {
|
|
label: _("Built-in Presets");
|
|
item {
|
|
label: "Adwaita";
|
|
action: "app.load_preset";
|
|
target: "adwaita";
|
|
}
|
|
item {
|
|
label: "Adwaita Dark";
|
|
action: "app.load_preset";
|
|
target: "adwaita-dark";
|
|
}
|
|
item {
|
|
label: "Pretty purple";
|
|
action: "app.load_preset";
|
|
target: "pretty-purple";
|
|
}
|
|
item {
|
|
label: "Manage Presets";
|
|
action: "app.manage_presets";
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
Popover errors-popover {
|
|
ListBox errors-list {
|
|
selection-mode: none;
|
|
[placeholder]
|
|
Label {
|
|
margin-top: 6;
|
|
margin-bottom: 6;
|
|
margin-start: 12;
|
|
margin-end: 12;
|
|
halign: start;
|
|
styles ["dim-label"]
|
|
max-width-chars: 50;
|
|
wrap: true;
|
|
justify: left;
|
|
}
|
|
}
|
|
}
|