2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2010-02-16 13:39:13 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-03-12 12:16:49 +01:00
|
|
|
|
2010-02-16 13:39:13 +01:00
|
|
|
#include <qglobal.h>
|
|
|
|
|
|
|
|
|
|
namespace QmlProjectManager {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
2017-12-08 14:50:57 +01:00
|
|
|
const char QML_PROJECT_ID[] = "QmlProjectManager.QmlProject";
|
2011-11-02 16:45:13 +01:00
|
|
|
const char QML_VIEWER_ARGUMENTS_KEY[] = "QmlProjectManager.QmlRunConfiguration.QDeclarativeViewerArguments";
|
|
|
|
|
const char QML_VIEWER_TARGET_DISPLAY_NAME[] = "QML Viewer";
|
|
|
|
|
const char QML_MAINSCRIPT_KEY[] = "QmlProjectManager.QmlRunConfiguration.MainScript";
|
2020-06-18 08:49:29 +02:00
|
|
|
const char USE_MULTILANGUAGE_KEY[] = "QmlProjectManager.QmlRunConfiguration.UseMultiLanguage";
|
|
|
|
|
const char LAST_USED_LANGUAGE[] = "QmlProjectManager.QmlRunConfiguration.LastUsedLanguage";
|
2011-11-02 16:45:13 +01:00
|
|
|
const char USER_ENVIRONMENT_CHANGES_KEY[] = "QmlProjectManager.QmlRunConfiguration.UserEnvironmentChanges";
|
2010-02-16 13:39:13 +01:00
|
|
|
|
2022-11-30 15:43:04 +01:00
|
|
|
const char EXPORT_MENU[] = "QmlDesigner.ExportMenu";
|
|
|
|
|
const char G_EXPORT_GENERATE[] = "QmlDesigner.Group.GenerateProject";
|
|
|
|
|
const char G_EXPORT_CONVERT[] = "QmlDesigner.Group.ConvertProject";
|
|
|
|
|
|
2010-02-16 13:39:13 +01:00
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace QmlProjectManager
|