summaryrefslogtreecommitdiff
path: root/plugingui/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugingui/window.h')
-rw-r--r--plugingui/window.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugingui/window.h b/plugingui/window.h
index 0c93658..9eb9d6d 100644
--- a/plugingui/window.h
+++ b/plugingui/window.h
@@ -32,6 +32,7 @@
#include "nativewindow.h"
#include "image.h"
#include "eventhandler.h"
+#include "imagecache.h"
namespace GUI {
@@ -52,6 +53,8 @@ public:
void hide() override;
Window* window() override;
+ ImageCache& getImageCache() override;
+
EventHandler* eventHandler();
Widget* keyboardFocus();
@@ -91,6 +94,8 @@ protected:
EventHandler* eventhandler{nullptr};
size_t maxRefcount{0};
+
+ ImageCache image_cache;
};
} // GUI::