aboutsummaryrefslogtreecommitdiff
path: root/gui/theme.h
diff options
context:
space:
mode:
authorEugene Sandulenko2006-03-07 05:39:52 +0000
committerEugene Sandulenko2006-03-07 05:39:52 +0000
commit018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2 (patch)
treece773d203cb6e24aa2a3f206a7eaf2547bef5762 /gui/theme.h
parent02bdcc45c9aaca4ab98b27eccd21ae00731aa2f8 (diff)
downloadscummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.tar.gz
scummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.tar.bz2
scummvm-rg350-018c93b14a9f2b3eda3bdfafcf9b90ee9ac0f8f2.zip
More work on customizable GUI.
o Implemented special alias 'prev' o Added new calling scheme to several widgets o Partially converted launcher dialog to new scheme o Converted couple widgets of chooser dialog svn-id: r21118
Diffstat (limited to 'gui/theme.h')
-rw-r--r--gui/theme.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/theme.h b/gui/theme.h
index 9befabdb87..45216cc83b 100644
--- a/gui/theme.h
+++ b/gui/theme.h
@@ -171,18 +171,18 @@ public:
void processResSection(Common::ConfigFile &config, String name, bool skipDefs = false);
void processSingleLine(const String &section, const String name, const String str);
- void setParent(const String &name);
+ void setSpecialAlias(const String alias, const String &name);
bool isThemeLoadingRequired();
void loadTheme(Common::ConfigFile &config, bool reset = true);
+ Eval *_evaluator;
+
protected:
Common::Rect _drawArea;
Common::ConfigFile _configFile;
Common::ConfigFile _defaultConfig;
- Eval *_evaluator;
-
private:
static const char *_defaultConfigINI;
int _loadedThemeX, _loadedThemeY;