summaryrefslogtreecommitdiffstats
path: root/application/themes/CustomTheme.h
diff options
context:
space:
mode:
Diffstat (limited to 'application/themes/CustomTheme.h')
-rw-r--r--application/themes/CustomTheme.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/application/themes/CustomTheme.h b/application/themes/CustomTheme.h
new file mode 100644
index 00000000..94cd10a5
--- /dev/null
+++ b/application/themes/CustomTheme.h
@@ -0,0 +1,28 @@
+#pragma once
+
+#include "ITheme.h"
+
+class CustomTheme: public ITheme
+{
+public:
+ CustomTheme(ITheme * baseTheme, QString folder);
+ virtual ~CustomTheme() {}
+
+ QString id() override;
+ QString name() override;
+ QString appStyleSheet() override;
+ QPalette colorScheme() override;
+ double fadeAmount() override;
+ QColor fadeColor() override;
+ QString qtTheme() override;
+
+private: /* data */
+ QPalette m_palette;
+ QColor m_fadeColor;
+ double m_fadeAmount;
+ QString m_styleSheet;
+ QString m_name;
+ QString m_id;
+ QString m_widgets;
+};
+