From 872cfe036d9472739939ad401dbe9511193d62ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Fri, 21 Oct 2016 09:07:26 +0200 Subject: GH-903 simple theme switching and dark theme --- application/themes/ITheme.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 application/themes/ITheme.h (limited to 'application/themes/ITheme.h') diff --git a/application/themes/ITheme.h b/application/themes/ITheme.h new file mode 100644 index 00000000..8e0836eb --- /dev/null +++ b/application/themes/ITheme.h @@ -0,0 +1,13 @@ +#pragma once +#include +#include + +class ITheme +{ +public: + virtual ~ITheme() {} + virtual QString id() = 0; + virtual QString name() = 0; + virtual QString appStyleSheet() = 0; + virtual QPalette colorScheme() = 0; +}; -- cgit v1.2.3