about summary refs log tree commit diff stats
path: root/src/icons.cpp
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-03-07 14:52:13 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2025-03-07 14:52:13 -0500
commit6e0f691a96fb54d99cc265088d2d8f389519af0a (patch)
tree4627947e9c2bf81711490ee085e1a89b592fecfe /src/icons.cpp
parentba59d40760e2a5a11bfbe2f7cf6b0e2a71b590d7 (diff)
downloadlingo-ap-tracker-6e0f691a96fb54d99cc265088d2d8f389519af0a.tar.gz
lingo-ap-tracker-6e0f691a96fb54d99cc265088d2d8f389519af0a.tar.bz2
lingo-ap-tracker-6e0f691a96fb54d99cc265088d2d8f389519af0a.zip
Share icons across popups
Diffstat (limited to 'src/icons.cpp')
-rw-r--r--src/icons.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/icons.cpp b/src/icons.cpp new file mode 100644 index 0000000..87ba037 --- /dev/null +++ b/src/icons.cpp
@@ -0,0 +1,22 @@
1#include "icons.h"
2
3#include "global.h"
4
5const wxBitmap* IconCache::GetIcon(const std::string& filename, wxSize size) {
6 std::tuple<std::string, int, int> key = {filename, size.x, size.y};
7
8 if (!icons_.count(key)) {
9 icons_[key] =
10 wxBitmap(wxImage(GetAbsolutePath(filename).c_str(),
11 wxBITMAP_TYPE_PNG)
12 .Scale(size.x, size.y));
13 }
14
15 return &icons_.at(key);
16}
17
18static IconCache* ICON_CACHE_INSTANCE = nullptr;
19
20void SetTheIconCache(IconCache* instance) { ICON_CACHE_INSTANCE = instance; }
21
22IconCache& GetTheIconCache() { return *ICON_CACHE_INSTANCE; }