1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
---|---|
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef WINDOWTHEME_H |
6 | #define WINDOWTHEME_H |
7 | |
8 | #include <QString> |
9 | |
10 | class WindowTheme |
11 | { |
12 | public: |
13 | WindowTheme() = delete; |
14 | static void setTheme(const QString &file); |
15 | }; |
16 | |
17 | #endif // WINDOWTHEME_H |
18 |