blob: 128092531bac614930c383f3e85482f6aba6d7a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
#include "filepath.h"
#include <QString>
namespace Utils {
class QTCREATOR_UTILS_EXPORT AppInfo
{
public:
QString author;
QString copyright;
QString displayVersion;
QString id;
QString revision;
QString revisionUrl;
QString userFileExtension;
FilePath plugins;
/*! Local plugin path: <localappdata>/plugins
where <localappdata> is e.g.
"%LOCALAPPDATA%\QtProject\qtcreator" on Windows Vista and later
"$XDG_DATA_HOME/data/QtProject/qtcreator" or "~/.local/share/data/QtProject/qtcreator" on Linux
"~/Library/Application Support/QtProject/Qt Creator" on Mac
*/
FilePath userPluginsRoot;
FilePath luaPlugins;
FilePath userLuaPlugins;
FilePath resources;
FilePath userResources;
FilePath crashReports;
FilePath libexec;
};
QTCREATOR_UTILS_EXPORT const AppInfo &appInfo();
namespace Internal {
QTCREATOR_UTILS_EXPORT void setAppInfo(const AppInfo &info);
} // namespace Internal
} // namespace Utils
|