1 /****************************************************************************
2 **
3 ** Copyright (C) 2016 The Qt Company Ltd.
4 ** Contact: https://www.qt.io/licensing/
5 **
6 ** This file is part of Qt Creator.
7 **
8 ** Commercial License Usage
9 ** Licensees holding valid commercial Qt licenses may use this file in
10 ** accordance with the commercial license agreement provided with the
11 ** Software or, alternatively, in accordance with the terms contained in
12 ** a written agreement between you and The Qt Company. For licensing terms
13 ** and conditions see https://www.qt.io/terms-conditions. For further
14 ** information use the contact form at https://www.qt.io/contact-us.
15 **
16 ** GNU General Public License Usage
17 ** Alternatively, this file may be used under the terms of the GNU
18 ** General Public License version 3 as published by the Free Software
19 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
20 ** included in the packaging of this file. Please review the following
21 ** information to ensure the GNU General Public License requirements will
22 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
23 **
24 ****************************************************************************/
25 
26 #pragma once
27 
28 namespace QtSupport {
29 namespace Constants {
30 
31 // Qt settings pages
32 const char QTVERSION_SETTINGS_PAGE_ID[] = "H.Qt Versions";
33 const char CODEGEN_SETTINGS_PAGE_ID[] = "Class Generation";
34 
35 // QtVersions
36 const char DESKTOPQT[]   = "Qt4ProjectManager.QtVersion.Desktop";
37 
38 // BaseQtVersion settings
39 static const char QTVERSIONID[] = "Id";
40 static const char QTVERSIONNAME[] = "Name";
41 
42 //Qt Features
43 const char FEATURE_QT_PREFIX[] = "QtSupport.Wizards.FeatureQt";
44 const char FEATURE_QWIDGETS[] = "QtSupport.Wizards.FeatureQWidgets";
45 const char FEATURE_QT_QUICK_PREFIX[] = "QtSupport.Wizards.FeatureQtQuick";
46 const char FEATURE_QMLPROJECT[] = "QtSupport.Wizards.FeatureQtQuickProject";
47 const char FEATURE_QT_QUICK_CONTROLS_PREFIX[] = "QtSupport.Wizards.FeatureQtQuick.Controls";
48 const char FEATURE_QT_QUICK_CONTROLS_2_PREFIX[] = "QtSupport.Wizards.FeatureQtQuick.Controls.2";
49 const char FEATURE_QT_LABS_CONTROLS_PREFIX[] = "QtSupport.Wizards.FeatureQt.labs.controls";
50 const char FEATURE_QT_QUICK_UI_FILES[] = "QtSupport.Wizards.FeatureQtQuick.UiFiles";
51 const char FEATURE_QT_WEBKIT[] = "QtSupport.Wizards.FeatureQtWebkit";
52 const char FEATURE_QT_3D[] = "QtSupport.Wizards.FeatureQt3d";
53 const char FEATURE_QT_CANVAS3D_PREFIX[] = "QtSupport.Wizards.FeatureQtCanvas3d";
54 const char FEATURE_QT_CONSOLE[] = "QtSupport.Wizards.FeatureQtConsole";
55 const char FEATURE_MOBILE[] = "QtSupport.Wizards.FeatureMobile";
56 const char FEATURE_DESKTOP[] = "QtSupport.Wizards.FeatureDesktop";
57 
58 // Kit flags
59 const char FLAGS_SUPPLIES_QTQUICK_IMPORT_PATH[] = "QtSupport.SuppliesQtQuickImportPath";
60 const char KIT_QML_IMPORT_PATH[] = "QtSupport.KitQmlImportPath";
61 const char KIT_HAS_MERGED_HEADER_PATHS_WITH_QML_IMPORT_PATHS[] =
62         "QtSupport.KitHasMergedHeaderPathsWithQmlImportPaths";
63 
64 } // namepsace Constants
65 } // namepsace QtSupport
66