mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
15 lines
288 B
C++
15 lines
288 B
C++
#pragma once
|
|
|
|
#include <QStyle>
|
|
#include <QApplication>
|
|
|
|
class ThemeManager {
|
|
public:
|
|
QString system_style_name = "";
|
|
QString current_theme = "0"; // int: 0:system 1+:builtin string: QStyleFactory
|
|
|
|
void ApplyTheme(const QString &theme);
|
|
};
|
|
|
|
extern ThemeManager *themeManager;
|