musicus/data/ui/editor/work.blp

136 lines
2.8 KiB
Text
Raw Normal View History

2024-05-31 13:39:27 +02:00
using Gtk 4.0;
using Adw 1;
template $MusicusWorkEditor: Adw.NavigationPage {
title: _("Work");
Adw.ToolbarView {
[top]
Adw.HeaderBar header_bar {}
Gtk.ScrolledWindow {
Adw.Clamp {
Gtk.Box {
orientation: vertical;
margin-bottom: 24;
margin-start: 12;
margin-end: 12;
2024-05-31 13:57:14 +02:00
Gtk.Label {
label: _("Name");
xalign: 0;
margin-top: 24;
styles [
"heading",
2024-05-31 13:57:14 +02:00
]
}
$MusicusTranslationEditor name_editor {
margin-top: 12;
}
2024-05-31 13:39:27 +02:00
Gtk.Label {
label: _("Composers");
xalign: 0;
margin-top: 24;
styles [
"heading",
2024-05-31 13:39:27 +02:00
]
}
2025-03-01 11:13:29 +01:00
Gtk.Box composers_box {
Gtk.ListBox composer_list {
selection-mode: none;
margin-top: 12;
hexpand: true;
styles [
"boxed-list",
]
Adw.ButtonRow {
title: _("Add _composer");
start-icon-name: "list-add-symbolic";
use-underline: true;
activated => $add_person() swapped;
}
2024-05-31 13:39:27 +02:00
}
}
Gtk.Label {
label: _("Structure");
xalign: 0;
margin-top: 24;
styles [
"heading",
2024-05-31 13:39:27 +02:00
]
}
Gtk.ListBox part_list {
selection-mode: none;
margin-top: 12;
styles [
"boxed-list",
2024-05-31 13:39:27 +02:00
]
Adw.ButtonRow {
2025-03-01 08:34:53 +01:00
title: _("Add _part");
start-icon-name: "list-add-symbolic";
2025-03-01 08:34:53 +01:00
use-underline: true;
2024-05-31 13:39:27 +02:00
activated => $add_part() swapped;
}
}
Gtk.Label {
label: _("Instruments");
xalign: 0;
margin-top: 24;
styles [
"heading",
2024-05-31 13:39:27 +02:00
]
}
2025-03-01 11:13:29 +01:00
Gtk.Box instruments_box {
Gtk.ListBox instrument_list {
selection-mode: none;
margin-top: 12;
hexpand: true;
styles [
"boxed-list",
]
Adw.ButtonRow {
title: _("Add _instrument");
start-icon-name: "list-add-symbolic";
use-underline: true;
activated => $add_instrument() swapped;
}
2024-05-31 13:39:27 +02:00
}
}
2025-01-15 11:23:04 +01:00
2025-01-17 18:33:31 +01:00
Gtk.ListBox {
selection-mode: none;
2025-01-15 11:23:04 +01:00
margin-top: 24;
styles [
"boxed-list",
2025-01-15 11:23:04 +01:00
]
2025-01-17 18:33:31 +01:00
Adw.ButtonRow save_row {
2025-03-01 08:34:53 +01:00
title: _("_Create work");
use-underline: true;
2025-01-17 18:33:31 +01:00
activated => $save() swapped;
}
2025-01-15 11:23:04 +01:00
}
2024-05-31 13:39:27 +02:00
}
}
}
}
}