1 | // SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd. |
2 | // |
3 | // SPDX-License-Identifier: GPL-3.0-or-later |
4 | |
5 | #ifndef EDITORSTYLE_H |
6 | #define EDITORSTYLE_H |
7 | |
8 | #include <QString> |
9 | |
10 | namespace support_file { |
11 | |
12 | struct EditorStyle |
13 | { |
14 | static QString globalPath(const QString &languageID); |
15 | static QString userPath(const QString &languageID); |
16 | static void initialize(const QString &languageID); |
17 | static bool recovery(const QString &languageID); |
18 | }; |
19 | |
20 | } |
21 | |
22 | #endif // EDITORSTYLE_H |
23 | |