00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef EASYSOK_THEME_HOLDER_INC_GUARD_H
00022 #define EASYSOK_THEME_HOLDER_INC_GUARD_H
00023
00024
00025 #include <vector>
00026
00027
00028 class QString;
00029 class QStringList;
00030 class Theme;
00031
00032
00033
00034
00042 class ThemeHolder
00043 {
00044
00045 public:
00046
00051 static void load();
00052
00053
00058 static int numberOfThemes();
00059
00060
00067 static int indexFromName(QString const & name);
00068
00069
00076 static Theme * theme(int index);
00077
00078
00079 private:
00080
00087 static void getThemes(QStringList const & files);
00088
00089
00094 static std::vector<Theme *> s_themes;
00095
00096
00101 static bool s_initialized;
00102 };
00103
00104
00105 #endif