GH-903 simple theme switching and dark theme
This commit is contained in:
13
application/themes/ITheme.h
Normal file
13
application/themes/ITheme.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
#include <QString>
|
||||
#include <QPalette>
|
||||
|
||||
class ITheme
|
||||
{
|
||||
public:
|
||||
virtual ~ITheme() {}
|
||||
virtual QString id() = 0;
|
||||
virtual QString name() = 0;
|
||||
virtual QString appStyleSheet() = 0;
|
||||
virtual QPalette colorScheme() = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user