2023-12-21 11:30:30 +00:00
|
|
|
using Gtk 4.0;
|
|
|
|
using Adw 1;
|
|
|
|
|
|
|
|
template $GamesAndMods: Adw.Bin {
|
|
|
|
Adw.NavigationSplitView {
|
|
|
|
sidebar: Adw.NavigationPage {
|
|
|
|
title: "Games";
|
|
|
|
tag: "sidebar";
|
|
|
|
|
|
|
|
Adw.ToolbarView {
|
|
|
|
[top]
|
|
|
|
Adw.HeaderBar {
|
2023-12-21 18:24:38 +00:00
|
|
|
[end]
|
|
|
|
Button add_new_game {
|
|
|
|
label: "Add game";
|
|
|
|
}
|
2023-12-21 11:30:30 +00:00
|
|
|
}
|
|
|
|
|
2023-12-21 18:24:38 +00:00
|
|
|
content: ListBox games_list {
|
|
|
|
styles ["navigation-sidebar"]
|
2023-12-21 11:30:30 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
content: Adw.NavigationPage{
|
|
|
|
title: "Mods";
|
|
|
|
tag: "content";
|
|
|
|
|
|
|
|
Adw.ToolbarView {
|
|
|
|
[top]
|
|
|
|
Adw.HeaderBar {
|
2023-12-21 18:24:38 +00:00
|
|
|
[title]
|
|
|
|
SearchEntry search {
|
|
|
|
}
|
2023-12-21 11:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
content: Box {
|
|
|
|
Label {
|
|
|
|
label: "Mods";
|
|
|
|
}
|
2023-12-21 18:24:38 +00:00
|
|
|
Button remove_all_games {
|
|
|
|
label: "Remove all games";
|
|
|
|
}
|
2023-12-21 11:30:30 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|