mod-manager/data/resources/ui/windows/main/pages/games_and_mods.blp
Tine Jozelj 613c9032a9
Some checks failed
CI / Flatpak (push) Failing after 27s
CI / Rustfmt (push) Failing after 54s
feat: settings refactor and initial mod listing
2023-12-21 23:25:08 +01:00

62 lines
No EOL
1.5 KiB
Text

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 {
[end]
Button add_new_game {
icon-name: "list-add-symbolic";
}
Button remove_all_games {
icon-name: "list-remove-symbolic";
}
}
content: ListBox games_list {
styles ["navigation-sidebar"]
};
}
};
content: Adw.NavigationPage{
title: "Mods";
tag: "content";
Adw.ToolbarView {
[top]
Adw.HeaderBar {
[title]
SearchEntry search {
}
}
content: Adw.Clamp {
orientation: vertical;
Label title {
label: "Mods";
styles ["title-1"]
}
Adw.Carousel {
}
Adw.CarouselIndicatorDots {}
ScrolledWindow {
vexpand: true;
ListBox mods_list {
}
}
};
}
};
}
}