Files
qt-creator/src/plugins/projectexplorer/projectexplorerconstants.h

237 lines
12 KiB
C
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2011-01-11 16:28:15 +01:00
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
2010-12-17 16:01:08 +01:00
** No Commercial Usage
**
2010-12-17 16:01:08 +01:00
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Lesser General Public License Usage
**
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 2.1 requirements
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 16:19:05 +01:00
2008-12-02 12:01:29 +01:00
#ifndef PROJECTEXPLORERCONSTANTS_H
#define PROJECTEXPLORERCONSTANTS_H
#include <QtCore/QtGlobal>
2008-12-02 12:01:29 +01:00
namespace ProjectExplorer {
namespace Constants {
// modes and their priorities
const char * const MODE_SESSION = "Project";
2008-12-02 12:01:29 +01:00
const int P_MODE_SESSION = 85;
// actions
const char * const NEWSESSION = "ProjectExplorer.NewSession";
const char * const NEWPROJECT = "ProjectExplorer.NewProject";
const char * const LOAD = "ProjectExplorer.Load";
const char * const UNLOAD = "ProjectExplorer.Unload";
const char * const CLEARSESSION = "ProjectExplorer.ClearSession";
const char * const BUILDPROJECTONLY = "ProjectExplorer.BuildProjectOnly";
2008-12-02 12:01:29 +01:00
const char * const BUILD = "ProjectExplorer.Build";
const char * const BUILDCM = "ProjectExplorer.BuildCM";
2008-12-02 12:01:29 +01:00
const char * const BUILDSESSION = "ProjectExplorer.BuildSession";
const char * const REBUILDPROJECTONLY = "ProjectExplorer.RebuildProjectOnly";
2008-12-02 12:01:29 +01:00
const char * const REBUILD = "ProjectExplorer.Rebuild";
const char * const REBUILDCM = "ProjectExplorer.RebuildCM";
2008-12-02 12:01:29 +01:00
const char * const REBUILDSESSION = "ProjectExplorer.RebuildSession";
2010-07-08 11:09:28 +02:00
const char * const DEPLOYPROJECTONLY = "ProjectExplorer.DeployProjectOnly";
const char * const DEPLOY = "ProjectExplorer.Deploy";
const char * const DEPLOYCM = "ProjectExplorer.DeployCM";
const char * const DEPLOYSESSION = "ProjectExplorer.DeploySession";
const char * const PUBLISH = "ProjectExplorer.Publish";
const char * const CLEANPROJECTONLY = "ProjectExplorer.CleanProjectOnly";
2008-12-02 12:01:29 +01:00
const char * const CLEAN = "ProjectExplorer.Clean";
const char * const CLEANCM = "ProjectExplorer.CleanCM";
2008-12-02 12:01:29 +01:00
const char * const CLEANSESSION = "ProjectExplorer.CleanSession";
const char * const BUILDPROJECTONLYMENU = "ProjectExplorer.BuildProjectOnlyMenu";
2008-12-02 12:01:29 +01:00
const char * const BUILDCONFIGURATIONMENU = "ProjectExplorer.BuildConfigurationMenu";
const char * const CANCELBUILD = "ProjectExplorer.CancelBuild";
const char * const RUNCONFIGURATIONMENU = "ProjectExplorer.RunConfigurationMenu";
const char * const RUN = "ProjectExplorer.Run";
const char * const RUNCONTEXTMENU = "ProjectExplorer.RunContextMenu";
const char * const STOP = "ProjectExplorer.Stop";
2008-12-02 12:01:29 +01:00
const char * const DEPENDENCIES = "ProjectExplorer.Dependencies";
const char * const FINDINALLPROJECTS = "ProjectExplorer.FindInAllProjects";
const char * const SHOWPROPERTIES = "ProjectExplorer.ShowProperties";
const char * const ADDNEWFILE = "ProjectExplorer.AddNewFile";
const char * const ADDEXISTINGFILES = "ProjectExplorer.AddExistingFiles";
const char * const ADDNEWSUBPROJECT = "ProjectExplorer.AddNewSubproject";
const char * const REMOVEPROJECT = "ProjectExplorer.RemoveProject";
2008-12-02 12:01:29 +01:00
const char * const OPENFILE = "ProjectExplorer.OpenFile";
const char * const SHOWINGRAPHICALSHELL = "ProjectExplorer.ShowInGraphicalShell";
const char * const OPENTERMIANLHERE = "ProjectExplorer.OpenTerminalHere";
2008-12-02 12:01:29 +01:00
const char * const REMOVEFILE = "ProjectExplorer.RemoveFile";
const char * const DELETEFILE = "ProjectExplorer.DeleteFile";
2008-12-02 12:01:29 +01:00
const char * const RENAMEFILE = "ProjectExplorer.RenameFile";
const char * const SETSTARTUP = "ProjectExplorer.SetStartup";
2008-12-02 12:01:29 +01:00
const char * const SHOW_TASK_IN_EDITOR = "ProjectExplorer.ShowTaskInEditor";
const char * const VCS_ANNOTATE_TASK = "ProjectExplorer.VcsAnnotateTask";
const char * const SHOW_TASK_OUTPUT = "ProjectExplorer.ShowTaskOutput";
// Run modes
2008-12-02 12:01:29 +01:00
const char * const RUNMODE = "ProjectExplorer.RunMode";
const char * const SELECTTARGET = "ProjectExplorer.SelectTarget";
2008-12-02 12:01:29 +01:00
// action priorities
const int P_ACTION_RUN = 100;
const int P_ACTION_BUILDSESSION = 80;
// context
const char * const C_PROJECTEXPLORER = "Project Explorer";
const char * const C_PROJECT_TREE = "ProjectExplorer.ProjectTreeContext";
2008-12-02 12:01:29 +01:00
// languages
const char * const LANG_CXX = "CXX";
const char * const LANG_QMLJS = "QMLJS";
2008-12-02 12:01:29 +01:00
// menus
const char * const M_RECENTPROJECTS = "ProjectExplorer.Menu.Recent";
const char * const M_BUILDPROJECT = "ProjectExplorer.Menu.Build";
const char * const M_DEBUG = "ProjectExplorer.Menu.Debug";
const char * const M_DEBUG_STARTDEBUGGING = "ProjectExplorer.Menu.Debug.StartDebugging";
2008-12-02 12:01:29 +01:00
const char * const M_SESSION = "ProjectExplorer.Menu.Session";
// toolbars
const char * const T_BUILDPROJECT = "ProjectExplorer.ToolBar.Build";
// menu groups
const char * const G_BUILD_SESSION = "ProjectExplorer.Group.BuildSession";
const char * const G_BUILD_PROJECT = "ProjectExplorer.Group.Build";
const char * const G_BUILD_OTHER = "ProjectExplorer.Group.Other";
const char * const G_BUILD_RUN = "ProjectExplorer.Group.Run";
const char * const G_BUILD_CANCEL = "ProjectExplorer.Group.BuildCancel";
// toolbar groups
const char * const G_TOOLBAR_CUSTOM = "ProjectExplorer.ToolBarGroup.Custom";
const char * const G_TOOLBAR_BUILD = "ProjectExplorer.ToolBarGroup.Build";
const char * const G_TOOLBAR_RUN = "ProjectExplorer.ToolBarGroup.Run";
const char * const G_TOOLBAR_OTHER = "ProjectExplorer.ToolBarGroup.Other";
// context menus
const char * const M_SESSIONCONTEXT = "Project.Menu.Session";
const char * const M_PROJECTCONTEXT = "Project.Menu.Project";
const char * const M_SUBPROJECTCONTEXT = "Project.Menu.SubProject";
const char * const M_FOLDERCONTEXT = "Project.Menu.Folder";
const char * const M_FILECONTEXT = "Project.Menu.File";
const char * const M_OPENFILEWITHCONTEXT = "Project.Menu.File.OpenWith";
// context menu groups
const char * const G_SESSION_BUILD = "Session.Group.Build";
const char * const G_SESSION_FILES = "Session.Group.Files";
const char * const G_SESSION_OTHER = "Session.Group.Other";
const char * const G_SESSION_CONFIG = "Session.Group.Config";
const char * const G_PROJECT_FILES = "Project.Group.Files";
const char * const G_PROJECT_FIRST = "Project.Group.Open";
2008-12-02 12:01:29 +01:00
const char * const G_PROJECT_BUILD = "Project.Group.Build";
const char * const G_PROJECT_OTHER = "Project.Group.Other";
const char * const G_PROJECT_RUN = "Project.Group.Run";
const char * const G_PROJECT_CONFIG = "Project.Group.Config";
const char * const G_FOLDER_FILES = "ProjectFolder.Group.Files";
const char * const G_FOLDER_OTHER = "ProjectFolder.Group.Other";
const char * const G_FOLDER_CONFIG = "ProjectFolder.Group.Config";
const char * const G_FILE_OPEN = "ProjectFile.Group.Open";
const char * const G_FILE_OTHER = "ProjectFile.Group.Other";
const char * const G_FILE_CONFIG = "ProjectFile.Group.Config";
const char * const RUNMENUCONTEXTMENU = "Project.RunMenu";
// file id
const char * const FILE_FACTORY_ID = "ProjectExplorer.FileFactoryId";
2008-12-02 12:01:29 +01:00
// wizard kind
const char * const WIZARD_TYPE_PROJECT = "ProjectExplorer.WizardType.Project";
// icons
const char * const ICON_BUILD = ":/projectexplorer/images/build.png";
const char * const ICON_BUILD_SMALL = ":/projectexplorer/images/build_small.png";
const char * const ICON_CLEAN = ":/projectexplorer/images/clean.png";
const char * const ICON_CLEAN_SMALL = ":/projectexplorer/images/clean_small.png";
const char * const ICON_REBUILD = ":/projectexplorer/images/rebuild.png";
const char * const ICON_REBUILD_SMALL = ":/projectexplorer/images/rebuild_small.png";
const char * const ICON_RUN = ":/projectexplorer/images/run.png";
const char * const ICON_RUN_SMALL = ":/projectexplorer/images/run_small.png";
const char * const ICON_SESSION = ":/projectexplorer/images/session.png";
const char * const ICON_DEBUG = ":/projectexplorer/images/debugger_start.png";
const char * const ICON_DEBUG_SMALL = ":/projectexplorer/images/debugger_start_small.png";
const char * const ICON_CLOSETAB = ":/projectexplorer/images/closetab.png";
const char * const ICON_STOP = ":/projectexplorer/images/stop.png";
// find filters
const char * const FIND_CUR_PROJECT = "ProjectExplorer.FindFilter.CurrentProject";
const char * const FIND_ALL_PROJECTS = "ProjectExplorer.FindFilter.AllProjects";
const char * const TASK_BUILD = "ProjectExplorer.Task.Build";
const char * const SESSIONFILE_MIMETYPE = "application/vnd.nokia.xml.qt.creator.session";
const char * const PROFILE_MIMETYPE = "application/vnd.nokia.qt.qmakeprofile";
const char * const C_SOURCE_MIMETYPE = "text/x-csrc";
const char * const C_HEADER_MIMETYPE = "text/x-chdr";
const char * const CPP_SOURCE_MIMETYPE = "text/x-c++src";
const char * const CPP_HEADER_MIMETYPE = "text/x-c++hdr";
const char * const FORM_MIMETYPE = "application/x-designer";
const char * const RESOURCE_MIMETYPE = "application/vnd.nokia.xml.qt.resource";
// settings page
const char * const PROJECTEXPLORER_SETTINGS_CATEGORY = "K.ProjectExplorer";
const char * const PROJECTEXPLORER_SETTINGS_TR_CATEGORY = QT_TRANSLATE_NOOP("ProjectExplorer", "Projects");
const char * const PROJECTEXPLORER_SETTINGS_CATEGORY_ICON = ":/core/images/category_project.png";
const char * const PROJECTEXPLORER_SETTINGS_ID = "ProjectExplorer.ProjectExplorer";
// task categories
const char * const TASK_CATEGORY_COMPILE = "Task.Category.Compile";
const char * const TASK_CATEGORY_BUILDSYSTEM = "Task.Category.Buildsystem";
// Wizard category
2010-01-13 18:44:15 +01:00
const char * const PROJECT_WIZARD_CATEGORY = "I.Projects"; // (after Qt)
const char * const PROJECT_WIZARD_TR_SCOPE = "ProjectExplorer";
const char * const PROJECT_WIZARD_TR_CATEGORY = QT_TRANSLATE_NOOP("ProjectExplorer", "Other Project");
// Build step lists ids:
const char * const BUILDSTEPS_CLEAN = "ProjectExplorer.BuildSteps.Clean";
const char * const BUILDSTEPS_BUILD = "ProjectExplorer.BuildSteps.Build";
const char * const BUILDSTEPS_DEPLOY = "ProjectExplorer.BuildSteps.Deploy";
// Deploy Configuration id:
const char * const DEFAULT_DEPLOYCONFIGURATION_ID = "ProjectExplorer.DefaultDeployConfiguration";
// Run Configuration defaults:
const int QML_DEFAULT_DEBUG_SERVER_PORT = 3768;
2011-01-20 14:03:07 +01:00
// Default directory to run custom (build) commands in.
const char * const DEFAULT_WORKING_DIR = "%{buildDir}";
2008-12-02 16:19:05 +01:00
} // namespace Constants
} // namespace ProjectExplorer
2008-12-02 12:01:29 +01:00
2008-12-02 16:19:05 +01:00
#endif // PROJECTEXPLORERCONSTANTS_H