musicus/data/ui/editor/ensemble.blp

56 lines
1 KiB
Text
Raw Normal View History

2025-01-15 11:23:04 +01:00
using Gtk 4.0;
using Adw 1;
template $MusicusEnsembleEditor: Adw.NavigationPage {
title: _("Ensemble");
Adw.ToolbarView {
[top]
Adw.HeaderBar header_bar {}
2025-03-01 11:18:15 +01:00
Gtk.ScrolledWindow {
Adw.Clamp {
Gtk.Box {
orientation: vertical;
margin-bottom: 24;
margin-start: 12;
margin-end: 12;
Gtk.Label {
label: _("Name");
xalign: 0;
margin-top: 24;
styles [
"heading",
]
}
2025-01-15 11:23:04 +01:00
2025-03-01 11:18:15 +01:00
$MusicusTranslationEditor name_editor {
margin-top: 12;
}
2025-01-15 11:23:04 +01:00
2025-03-01 11:18:15 +01:00
Gtk.ListBox {
selection-mode: none;
margin-top: 24;
2025-01-15 11:23:04 +01:00
2025-03-01 11:18:15 +01:00
styles [
"boxed-list",
]
2025-01-17 18:33:31 +01:00
2025-03-01 11:18:15 +01:00
Adw.ButtonRow save_row {
title: _("_Create ensemble");
use-underline: true;
activated => $save() swapped;
styles [
"suggested-action",
]
2025-03-01 11:18:15 +01:00
}
2025-01-17 18:33:31 +01:00
}
2025-01-15 11:23:04 +01:00
}
}
}
}
}