From c30eda289b5815b6b62799ef986eaf3c462fd72d Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 31 Mar 2025 01:18:03 +0100 Subject: Add SvgIcon class Based on Icon class, but constructor replaced with calls to lunasvg. --- res/ui/icon/rails.svg | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 res/ui/icon/rails.svg (limited to 'res/ui/icon') diff --git a/res/ui/icon/rails.svg b/res/ui/icon/rails.svg new file mode 100644 index 0000000..81e9b94 --- /dev/null +++ b/res/ui/icon/rails.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3 From 401dc359171ff1179abece095ea9354f0064ea19 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 31 Mar 2025 18:10:26 +0100 Subject: Use new SVG icons on main toolbar --- res/ui/icon/magnifier.svg | 50 +++++++++++++++++++++++++++++++++++++++++++++++ res/ui/icon/road.svg | 27 +++++++++++++++++++++++++ ui/gameMainWindow.cpp | 13 ++++++------ 3 files changed, 84 insertions(+), 6 deletions(-) create mode 100644 res/ui/icon/magnifier.svg create mode 100644 res/ui/icon/road.svg (limited to 'res/ui/icon') diff --git a/res/ui/icon/magnifier.svg b/res/ui/icon/magnifier.svg new file mode 100644 index 0000000..97abe9f --- /dev/null +++ b/res/ui/icon/magnifier.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/ui/icon/road.svg b/res/ui/icon/road.svg new file mode 100644 index 0000000..3b9ae77 --- /dev/null +++ b/res/ui/icon/road.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/ui/gameMainWindow.cpp b/ui/gameMainWindow.cpp index 322c6e5..bcda649 100644 --- a/ui/gameMainWindow.cpp +++ b/ui/gameMainWindow.cpp @@ -1,10 +1,10 @@ #include "gameMainWindow.h" #include "editNetwork.h" #include "gameMainSelector.h" -#include "icon.h" #include "imgui_extras.h" #include "manualCameraController.h" #include "queryTool.h" +#include "svgIcon.h" #include #include #include @@ -20,7 +20,7 @@ class GameMainToolbar : public UIComponent { public: static constexpr auto TOOLBAR_HEIGHT = 54.F; - static constexpr ImVec2 TOOLBAR_ICON_SIZE {32, 32}; + template static constexpr T TOOLBAR_ICON_SIZE {32, 32}; explicit GameMainToolbar(GameMainSelector * gms) : gms {gms} { } @@ -28,10 +28,10 @@ public: render() override { if (IltGui::BeginToolbar("bottomBar", ImGuiDir_Down, TOOLBAR_HEIGHT)) { - if (ImGui::ImageButton("Build rails", *buildRailsIcon, TOOLBAR_ICON_SIZE)) { + if (ImGui::ImageButton("Build rails", *buildRailsIcon, TOOLBAR_ICON_SIZE)) { gms->target = std::make_unique>(); - } - if (ImGui::ImageButton("Query", *buildRailsIcon, TOOLBAR_ICON_SIZE)) { + } + if (ImGui::ImageButton("Query", *queryToolIcon, TOOLBAR_ICON_SIZE)) { gms->target = std::make_unique(); } IltGui::EndToolbar(); @@ -45,7 +45,8 @@ public: } private: - Icon buildRailsIcon {"ui/icon/network.png"}; + SvgIcon buildRailsIcon {TOOLBAR_ICON_SIZE, "ui/icon/rails.svg"}; + SvgIcon queryToolIcon {TOOLBAR_ICON_SIZE, "ui/icon/magnifier.svg"}; GameMainSelector * gms; }; -- cgit v1.2.3 From 4e424a1386d6646657325d218c508a3779e1ceae Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Wed, 2 Apr 2025 18:02:44 +0100 Subject: Remove the old unused network.png icon --- res/ui/icon/network.png | Bin 16793 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 res/ui/icon/network.png (limited to 'res/ui/icon') diff --git a/res/ui/icon/network.png b/res/ui/icon/network.png deleted file mode 100644 index 7a091f3..0000000 Binary files a/res/ui/icon/network.png and /dev/null differ -- cgit v1.2.3