summaryrefslogtreecommitdiffstats
path: root/application/themes/ITheme.h
blob: 0360c445a33f4d59f1160a4d2551ac5f9280c2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once
#include <QString>
#include <QPalette>

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;
	virtual QStringList searchPaths()
	{
		return {};
	}

	static QPalette fadeInactive(QPalette in, qreal bias, QColor color);
};