aboutsummaryrefslogtreecommitdiff
path: root/application/themes/ITheme.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2021-07-25 19:11:59 +0200
committerPetr Mrázek <peterix@gmail.com>2021-07-25 19:50:44 +0200
commit20b9f2b42a3b58b6081af271774fbcc34025dccb (patch)
tree064fa59facb3357139b47bd4e60bfc8edb35ca11 /application/themes/ITheme.h
parentdd133680858351e3e07690e286882327a4f42ba5 (diff)
downloadPrismLauncher-20b9f2b42a3b58b6081af271774fbcc34025dccb.tar.gz
PrismLauncher-20b9f2b42a3b58b6081af271774fbcc34025dccb.tar.bz2
PrismLauncher-20b9f2b42a3b58b6081af271774fbcc34025dccb.zip
NOISSUE Flatten gui and logic libraries into MultiMC
Diffstat (limited to 'application/themes/ITheme.h')
-rw-r--r--application/themes/ITheme.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/application/themes/ITheme.h b/application/themes/ITheme.h
deleted file mode 100644
index c2347cf6..00000000
--- a/application/themes/ITheme.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-#include <QString>
-#include <QPalette>
-
-class QStyle;
-
-class ITheme
-{
-public:
- virtual ~ITheme() {}
- virtual void apply(bool initial);
- 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;
- virtual QStringList searchPaths()
- {
- return {};
- }
-
- static QPalette fadeInactive(QPalette in, qreal bias, QColor color);
-};