Update statistics window

This commit is contained in:
Liza 2023-02-05 00:12:24 +01:00
parent 8a2f071582
commit 6013b84568

View File

@ -21,6 +21,7 @@ namespace Pal.Client.Windows
{ {
Size = new Vector2(500, 500); Size = new Vector2(500, 500);
SizeCondition = ImGuiCond.FirstUseEver; SizeCondition = ImGuiCond.FirstUseEver;
Flags = ImGuiWindowFlags.AlwaysAutoResize;
foreach (ETerritoryType territory in typeof(ETerritoryType).GetEnumValues()) foreach (ETerritoryType territory in typeof(ETerritoryType).GetEnumValues())
{ {
@ -30,14 +31,16 @@ namespace Pal.Client.Windows
public override void Draw() public override void Draw()
{ {
DrawDungeonStats("Palace of the Dead", ETerritoryType.Palace_1_10, ETerritoryType.Palace_191_200); if (ImGui.BeginTabBar("Tabs"))
DrawDungeonStats("Heaven on High", ETerritoryType.HeavenOnHigh_1_10, ETerritoryType.HeavenOnHigh_91_100); {
DrawDungeonStats("Palace of the Dead", ETerritoryType.Palace_1_10, ETerritoryType.Palace_191_200);
DrawDungeonStats("Heaven on High", ETerritoryType.HeavenOnHigh_1_10, ETerritoryType.HeavenOnHigh_91_100);
}
} }
private void DrawDungeonStats(string name, ETerritoryType minTerritory, ETerritoryType maxTerritory) private void DrawDungeonStats(string name, ETerritoryType minTerritory, ETerritoryType maxTerritory)
{ {
if (ImGui.BeginTabItem(name))
if (ImGui.CollapsingHeader(name, ImGuiTreeNodeFlags.DefaultOpen))
{ {
if (ImGui.BeginTable($"TrapHoardStatistics{name}", 4, ImGuiTableFlags.Borders | ImGuiTableFlags.Resizable)) if (ImGui.BeginTable($"TrapHoardStatistics{name}", 4, ImGuiTableFlags.Borders | ImGuiTableFlags.Resizable))
{ {
@ -64,6 +67,7 @@ namespace Pal.Client.Windows
} }
ImGui.EndTable(); ImGui.EndTable();
} }
ImGui.EndTabItem();
} }
} }