mirror of
https://gitlab.cvh-server.de/skrause/flashcards.git
synced 2025-12-12 07:51:38 +01:00
111 lines
2.3 KiB
Plaintext
111 lines
2.3 KiB
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template $FlashcardsAppWindow : Adw.ApplicationWindow {
|
|
title: _("Flashcards");
|
|
default-width: 1200;
|
|
default-height: 600;
|
|
|
|
Adw.Breakpoint {
|
|
condition ( "max-width: 600sp" )
|
|
setters {
|
|
split_view.collapsed: true;
|
|
}
|
|
}
|
|
|
|
Adw.NavigationSplitView split_view {
|
|
[sidebar]
|
|
Adw.NavigationPage sidebar {
|
|
title: _("Categories");
|
|
|
|
Adw.ToolbarView {
|
|
width-request: 360;
|
|
|
|
[top]
|
|
Adw.HeaderBar {
|
|
[start]
|
|
Gtk.Button {
|
|
icon-name: "list-add-symbolic";
|
|
clicked => $on_add_category();
|
|
}
|
|
[start]
|
|
Gtk.Button {
|
|
icon-name: "user-trash-symbolic";
|
|
clicked => $on_delete_category();
|
|
}
|
|
[end]
|
|
Gtk.MenuButton {
|
|
icon-name: "open-menu-symbolic";
|
|
menu-model: primary_menu;
|
|
}
|
|
}
|
|
|
|
content: ScrolledWindow {
|
|
ListBox topics {
|
|
valign: start;
|
|
selection-mode: single;
|
|
margin-top: 12;
|
|
margin-bottom: 12;
|
|
margin-start: 12;
|
|
margin-end: 12;
|
|
row-selected => $on_category_selected();
|
|
|
|
styles [
|
|
"boxed-list",
|
|
]
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
[content]
|
|
Adw.NavigationPage content {
|
|
title: _("Flashcards");
|
|
|
|
Adw.ToolbarView {
|
|
[top]
|
|
Adw.HeaderBar {
|
|
[start]
|
|
Gtk.Button {
|
|
icon-name: "user-trash-symbolic";
|
|
clicked => $on_delete_category();
|
|
}
|
|
[title]
|
|
Adw.WindowTitle title {
|
|
title: _("Flashcards");
|
|
subtitle: "Test";
|
|
}
|
|
}
|
|
|
|
content: Adw.ViewStack main_view {
|
|
Adw.ViewStackPage {
|
|
child: Adw.StatusPage placeholder {
|
|
margin-top: 12;
|
|
margin-bottom: 12;
|
|
margin-start: 12;
|
|
margin-end: 12;
|
|
|
|
title: _("Select a category");
|
|
icon-name: "edit-find-symbolic";
|
|
};
|
|
}
|
|
|
|
Adw.ViewStackPage {
|
|
child: Adw.Bin flashcard {
|
|
};
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
menu primary_menu {
|
|
section {
|
|
item {
|
|
label: _("About Flashcards");
|
|
action: "app.about";
|
|
}
|
|
}
|
|
}
|