mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
12 lines
245 B
C++
12 lines
245 B
C++
#pragma once
|
|
|
|
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;
|