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 #include <QtGlobal>
29 
30 namespace QmakeProjectManager {
31 namespace Constants {
32 
33 // Menus
34 const char M_CONTEXT[] = "ProFileEditor.ContextMenu";
35 
36 // Kinds
37 const char PROFILE_EDITOR_ID[] = "Qt4.proFileEditor";
38 const char PROFILE_EDITOR_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("OpenWith::Editors", ".pro File Editor");
39 const char PROFILE_MIMETYPE[] = "application/vnd.qt.qmakeprofile";
40 const char PROINCLUDEFILE_MIMETYPE [] = "application/vnd.qt.qmakeproincludefile";
41 const char PROFEATUREFILE_MIMETYPE [] = "application/vnd.qt.qmakeprofeaturefile";
42 const char PROCONFIGURATIONFILE_MIMETYPE [] = "application/vnd.qt.qmakeproconfigurationfile";
43 const char PROCACHEFILE_MIMETYPE [] = "application/vnd.qt.qmakeprocachefile";
44 const char PROSTASHFILE_MIMETYPE [] = "application/vnd.qt.qmakeprostashfile";
45 
46 // Actions
47 const char RUNQMAKE[] = "Qt4Builder.RunQMake";
48 const char RUNQMAKECONTEXTMENU[] = "Qt4Builder.RunQMakeContextMenu";
49 const char BUILDSUBDIR[] = "Qt4Builder.BuildSubDir";
50 const char REBUILDSUBDIR[] = "Qt4Builder.RebuildSubDir";
51 const char CLEANSUBDIR[] = "Qt4Builder.CleanSubDir";
52 const char BUILDFILE[] = "Qt4Builder.BuildFile";
53 const char BUILDSUBDIRCONTEXTMENU[] = "Qt4Builder.BuildSubDirContextMenu";
54 const char REBUILDSUBDIRCONTEXTMENU[] = "Qt4Builder.RebuildSubDirContextMenu";
55 const char CLEANSUBDIRCONTEXTMENU[] = "Qt4Builder.CleanSubDirContextMenu";
56 const char BUILDFILECONTEXTMENU[] = "Qt4Builder.BuildFileContextMenu";
57 const char ADDLIBRARY[] = "Qt4.AddLibrary";
58 
59 // Tasks
60 const char PROFILE_EVALUATE[] = "Qt4ProjectManager.ProFileEvaluate";
61 
62 // Project
63 const char QMAKEPROJECT_ID[] = "Qt4ProjectManager.Qt4Project";
64 
65 const char QMAKE_BC_ID[] = "Qt4ProjectManager.Qt4BuildConfiguration";
66 const char MAKESTEP_BS_ID[] = "Qt4ProjectManager.MakeStep";
67 const char QMAKE_BS_ID[] = "QtProjectManager.QMakeBuildStep";
68 
69 // Kit
70 const char KIT_INFORMATION_ID[] = "QtPM4.mkSpecInformation";
71 
72 } // namespace Constants
73 } // namespace QmakeProjectManager
74