summaryrefslogtreecommitdiff
path: root/ui/svgIcon.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-03-31 01:18:03 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2025-03-31 18:18:23 +0100
commitc30eda289b5815b6b62799ef986eaf3c462fd72d (patch)
tree186861496bda98ac2d97bdec819125162a090ab0 /ui/svgIcon.h
parentAdd lunasvg (and plutovg) (diff)
downloadilt-c30eda289b5815b6b62799ef986eaf3c462fd72d.tar.bz2
ilt-c30eda289b5815b6b62799ef986eaf3c462fd72d.tar.xz
ilt-c30eda289b5815b6b62799ef986eaf3c462fd72d.zip
Add SvgIcon class
Based on Icon class, but constructor replaced with calls to lunasvg.
Diffstat (limited to 'ui/svgIcon.h')
-rw-r--r--ui/svgIcon.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/ui/svgIcon.h b/ui/svgIcon.h
new file mode 100644
index 0000000..106f97c
--- /dev/null
+++ b/ui/svgIcon.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "glArrays.h"
+#include "imgui_wrap.h"
+#include <config/types.h>
+#include <filesystem>
+#include <lunasvg.h>
+
+class SvgIcon {
+public:
+ SvgIcon(ImageDimensions, const std::filesystem::path &);
+
+ ImTextureID operator*() const;
+
+private:
+ friend class LoadFromFile; // Test case verifying size/content
+ glTexture texture;
+};