mod-manager/data/resources/ui/windows/main/pages/games_and_mods.blp

63 lines
1.5 KiB
Text
Raw Normal View History

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 {
icon-name: "list-add-symbolic";
}
Button remove_all_games {
icon-name: "list-remove-symbolic";
2023-12-21 18:24:38 +00:00
}
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";
2023-12-21 11:30:30 +00:00
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: Adw.Clamp {
orientation: vertical;
Label title {
2023-12-21 11:30:30 +00:00
label: "Mods";
styles ["title-1"]
2023-12-21 11:30:30 +00:00
}
Adw.Carousel {
}
Adw.CarouselIndicatorDots {}
ScrolledWindow {
vexpand: true;
ListBox mods_list {
}
2023-12-21 18:24:38 +00:00
}
2023-12-21 11:30:30 +00:00
};
}
};
}
}