summaryrefslogtreecommitdiff
path: root/src/client.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2010-02-27 21:50:25 -0700
committerJared Adams <jaxad0127@gmail.com>2010-02-28 10:30:45 -0700
commit500ee24e22aae7b457118d152b4480e99969092e (patch)
treeea0e7e3869a80fbc86cffe97136b926cc7149bdd /src/client.h
parent64e742acdb9b0dd9c44bced91766f5ea1aa9de4c (diff)
downloadmana-client-500ee24e22aae7b457118d152b4480e99969092e.tar.gz
mana-client-500ee24e22aae7b457118d152b4480e99969092e.tar.bz2
mana-client-500ee24e22aae7b457118d152b4480e99969092e.tar.xz
mana-client-500ee24e22aae7b457118d152b4480e99969092e.zip
Make the gui more themeable and distribute two themes
The older gray theme and the new wood theme are available as themes. The gray theme needs some new graphics for hilights. Add a theme option for branding and add path/to/branding/data to the PhysFS search path. Reviewed-by: Thorbjørn Lindeijer Reviewed-by: Chuck Miller
Diffstat (limited to 'src/client.h')
-rw-r--r--src/client.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h
index 934ba9d2..233ee646 100644
--- a/src/client.h
+++ b/src/client.h
@@ -165,6 +165,9 @@ public:
static State getState()
{ return instance()->mState; }
+ static const std::string &getPackageDirectory()
+ { return instance()->mPackageDir; }
+
static const std::string &getConfigDirectory()
{ return instance()->mConfigDir; }
@@ -189,6 +192,7 @@ private:
Options mOptions;
+ std::string mPackageDir;
std::string mConfigDir;
std::string mLocalDataDir;
std::string mUpdateHost;