diff options
author | Lars Muldjord <muldjordlars@gmail.com> | 2016-11-21 19:30:37 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-01-21 14:51:29 +0100 |
commit | f5ead6dd167d6d57217379a0046114d559cd2c78 (patch) | |
tree | 931ace4b47d37e9e7fdcd99b48f16e2ba95df187 /plugingui/dgwindow.h | |
parent | 586e5c39ae22e70c6203700f2d66985398d15199 (diff) |
Added sidebar resources and testing code
Diffstat (limited to 'plugingui/dgwindow.h')
-rw-r--r-- | plugingui/dgwindow.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugingui/dgwindow.h b/plugingui/dgwindow.h index 72e4679..5323a12 100644 --- a/plugingui/dgwindow.h +++ b/plugingui/dgwindow.h @@ -37,6 +37,8 @@ #include "progressbar.h" #include "filebrowser.h" #include "layout.h" +#include "texturedbox.h" +#include "imagecache.h" namespace GUI { @@ -87,6 +89,11 @@ private: Image back{":bg.png"}; Image logo{":logo.png"}; + ImageCache image_cache; + TexturedBox sidebar{image_cache, ":sidebar.png", 0, 0, + 16, 0, 0, + 14, 1, 14}; + Settings& settings; }; |