aboutsummaryrefslogtreecommitdiff
path: root/gui/theme.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/theme.h')
-rw-r--r--gui/theme.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gui/theme.h b/gui/theme.h
index 9a58afe57e..bf13ad72eb 100644
--- a/gui/theme.h
+++ b/gui/theme.h
@@ -26,6 +26,7 @@
#include "common/system.h"
#include "common/rect.h"
#include "common/str.h"
+#include "common/file.h"
#include "common/config-file.h"
#include "graphics/surface.h"
@@ -426,9 +427,15 @@ private:
Common::String _shadingEpxressionR, _shadingEpxressionG, _shadingEpxressionB;
uint _numCacheColors;
+ bool _usingColorCache;
OverlayColor *_colorCacheTable;
void setupColorCache();
-
+ void clearColorCache();
+
+ Common::String cacheFileName();
+ bool loadCacheFile();
+ bool createCacheFile();
+
typedef OverlayColor (ThemeNew::*InactiveDialogCallback)(OverlayColor col, bool cache);
InactiveDialogCallback _dialogShadingCallback;