aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaThemes.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2014-10-06 17:49:31 -0400
committerKen Moore <ken@pcbsd.org>2014-10-06 17:49:31 -0400
commit9a7d82954a8e77ca72a9d0b995ec5c0160e6018c (patch)
tree0ecacf8b0510e4330bd368af86459709857eed9d /libLumina/LuminaThemes.h
parentClean up the new global.h usage in all the Lumina subprojects. (diff)
downloadlumina-9a7d82954a8e77ca72a9d0b995ec5c0160e6018c.tar.gz
lumina-9a7d82954a8e77ca72a9d0b995ec5c0160e6018c.tar.bz2
lumina-9a7d82954a8e77ca72a9d0b995ec5c0160e6018c.zip
Get the new LuminaThemes class working with a sample color theme for Insight (for testing). The theme loading/usage appears to be working, now I just need to generalize the theme template so that it applies to all the QAbstract* widgets
Diffstat (limited to 'libLumina/LuminaThemes.h')
-rw-r--r--libLumina/LuminaThemes.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libLumina/LuminaThemes.h b/libLumina/LuminaThemes.h
index a3e558d9..1026622b 100644
--- a/libLumina/LuminaThemes.h
+++ b/libLumina/LuminaThemes.h
@@ -18,6 +18,7 @@
#include <QDir>
class LTHEME{
+public:
//Read the Themes/Colors/Icons that are available on the system
static QStringList availableSystemThemes();//returns: [name::::path] for each item
static QStringList availableLocalThemes(); //returns: [name::::path] for each item
bgstack15