From 944ff256b2d9e271632efacd6e8dd1ea542e869f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sun, 15 Jan 2017 22:56:03 +0100 Subject: NOISSUE add hack for system themes. Maybe it works? --- application/themes/ITheme.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'application/themes/ITheme.h') diff --git a/application/themes/ITheme.h b/application/themes/ITheme.h index 8070efb1..0360c445 100644 --- a/application/themes/ITheme.h +++ b/application/themes/ITheme.h @@ -2,14 +2,18 @@ #include #include +class QStyle; + class ITheme { public: virtual ~ITheme() {} virtual QString id() = 0; virtual QString name() = 0; + virtual bool hasStyleSheet() = 0; virtual QString appStyleSheet() = 0; virtual QString qtTheme() = 0; + virtual bool hasColorScheme() = 0; virtual QPalette colorScheme() = 0; virtual QColor fadeColor() = 0; virtual double fadeAmount() = 0; -- cgit v1.2.3