2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef PROJECTEXPLORERCONSTANTS_H
|
|
|
|
|
#define PROJECTEXPLORERCONSTANTS_H
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtGlobal>
|
2009-11-27 10:33:24 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace ProjectExplorer {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
2011-09-02 13:19:50 +02:00
|
|
|
// Modes and their priorities
|
|
|
|
|
const char MODE_SESSION[] = "Project";
|
|
|
|
|
const int P_MODE_SESSION = 85;
|
|
|
|
|
|
|
|
|
|
// Actions
|
|
|
|
|
const char NEWSESSION[] = "ProjectExplorer.NewSession";
|
|
|
|
|
const char NEWPROJECT[] = "ProjectExplorer.NewProject";
|
|
|
|
|
const char LOAD[] = "ProjectExplorer.Load";
|
|
|
|
|
const char UNLOAD[] = "ProjectExplorer.Unload";
|
|
|
|
|
const char CLEARSESSION[] = "ProjectExplorer.ClearSession";
|
|
|
|
|
const char BUILDPROJECTONLY[] = "ProjectExplorer.BuildProjectOnly";
|
|
|
|
|
const char BUILD[] = "ProjectExplorer.Build";
|
|
|
|
|
const char BUILDCM[] = "ProjectExplorer.BuildCM";
|
|
|
|
|
const char BUILDSESSION[] = "ProjectExplorer.BuildSession";
|
|
|
|
|
const char REBUILDPROJECTONLY[] = "ProjectExplorer.RebuildProjectOnly";
|
|
|
|
|
const char REBUILD[] = "ProjectExplorer.Rebuild";
|
|
|
|
|
const char REBUILDCM[] = "ProjectExplorer.RebuildCM";
|
|
|
|
|
const char REBUILDSESSION[] = "ProjectExplorer.RebuildSession";
|
|
|
|
|
const char DEPLOYPROJECTONLY[] = "ProjectExplorer.DeployProjectOnly";
|
|
|
|
|
const char DEPLOY[] = "ProjectExplorer.Deploy";
|
|
|
|
|
const char DEPLOYCM[] = "ProjectExplorer.DeployCM";
|
|
|
|
|
const char DEPLOYSESSION[] = "ProjectExplorer.DeploySession";
|
|
|
|
|
const char PUBLISH[] = "ProjectExplorer.Publish";
|
|
|
|
|
const char CLEANPROJECTONLY[] = "ProjectExplorer.CleanProjectOnly";
|
|
|
|
|
const char CLEAN[] = "ProjectExplorer.Clean";
|
|
|
|
|
const char CLEANCM[] = "ProjectExplorer.CleanCM";
|
|
|
|
|
const char CLEANSESSION[] = "ProjectExplorer.CleanSession";
|
|
|
|
|
const char CANCELBUILD[] = "ProjectExplorer.CancelBuild";
|
|
|
|
|
const char RUN[] = "ProjectExplorer.Run";
|
2011-10-25 18:23:37 +08:00
|
|
|
const char RUNWITHOUTDEPLOY[] = "ProjectExplorer.RunWithoutDeploy";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char RUNCONTEXTMENU[] = "ProjectExplorer.RunContextMenu";
|
|
|
|
|
const char STOP[] = "ProjectExplorer.Stop";
|
|
|
|
|
const char ADDNEWFILE[] = "ProjectExplorer.AddNewFile";
|
|
|
|
|
const char ADDEXISTINGFILES[] = "ProjectExplorer.AddExistingFiles";
|
2013-08-24 23:10:17 +02:00
|
|
|
const char ADDEXISTINGDIRECTORY[] = "ProjectExplorer.AddExistingDirectory";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char ADDNEWSUBPROJECT[] = "ProjectExplorer.AddNewSubproject";
|
|
|
|
|
const char REMOVEPROJECT[] = "ProjectExplorer.RemoveProject";
|
|
|
|
|
const char OPENFILE[] = "ProjectExplorer.OpenFile";
|
|
|
|
|
const char SEARCHONFILESYSTEM[] = "ProjectExplorer.SearchOnFileSystem";
|
|
|
|
|
const char SHOWINGRAPHICALSHELL[] = "ProjectExplorer.ShowInGraphicalShell";
|
|
|
|
|
const char OPENTERMIANLHERE[] = "ProjectExplorer.OpenTerminalHere";
|
|
|
|
|
const char REMOVEFILE[] = "ProjectExplorer.RemoveFile";
|
|
|
|
|
const char DELETEFILE[] = "ProjectExplorer.DeleteFile";
|
|
|
|
|
const char RENAMEFILE[] = "ProjectExplorer.RenameFile";
|
|
|
|
|
const char SETSTARTUP[] = "ProjectExplorer.SetStartup";
|
|
|
|
|
const char PROJECTTREE_COLLAPSE_ALL[] = "ProjectExplorer.CollapseAll";
|
|
|
|
|
|
|
|
|
|
const char SELECTTARGET[] = "ProjectExplorer.SelectTarget";
|
2011-09-26 14:48:12 +02:00
|
|
|
const char SELECTTARGETQUICK[] = "ProjectExplorer.SelectTargetQuick";
|
2011-09-02 13:19:50 +02:00
|
|
|
|
|
|
|
|
// Action priorities
|
|
|
|
|
const int P_ACTION_RUN = 100;
|
|
|
|
|
const int P_ACTION_BUILDPROJECT = 80;
|
|
|
|
|
|
|
|
|
|
// Context
|
|
|
|
|
const char C_PROJECTEXPLORER[] = "Project Explorer";
|
|
|
|
|
const char C_PROJECT_TREE[] = "ProjectExplorer.ProjectTreeContext";
|
|
|
|
|
const char C_APP_OUTPUT[] = "ProjectExplorer.ApplicationOutput";
|
|
|
|
|
const char C_COMPILE_OUTPUT[] = "ProjectExplorer.CompileOutput";
|
|
|
|
|
|
|
|
|
|
// Languages
|
|
|
|
|
const char LANG_CXX[] = "CXX";
|
|
|
|
|
const char LANG_QMLJS[] = "QMLJS";
|
|
|
|
|
|
|
|
|
|
// Menus
|
|
|
|
|
const char M_RECENTPROJECTS[] = "ProjectExplorer.Menu.Recent";
|
2014-08-19 16:40:06 +02:00
|
|
|
const char M_UNLOADPROJECTS[] = "ProjectExplorer.Menu.Unload";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char M_BUILDPROJECT[] = "ProjectExplorer.Menu.Build";
|
|
|
|
|
const char M_DEBUG[] = "ProjectExplorer.Menu.Debug";
|
|
|
|
|
const char M_DEBUG_STARTDEBUGGING[] = "ProjectExplorer.Menu.Debug.StartDebugging";
|
|
|
|
|
const char M_SESSION[] = "ProjectExplorer.Menu.Session";
|
|
|
|
|
|
|
|
|
|
// Menu groups
|
2012-04-26 19:28:59 +02:00
|
|
|
const char G_BUILD_BUILD[] = "ProjectExplorer.Group.Build";
|
|
|
|
|
const char G_BUILD_DEPLOY[] = "ProjectExplorer.Group.Deploy";
|
|
|
|
|
const char G_BUILD_REBUILD[] = "ProjectExplorer.Group.Rebuild";
|
|
|
|
|
const char G_BUILD_CLEAN[] = "ProjectExplorer.Group.Clean";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char G_BUILD_RUN[] = "ProjectExplorer.Group.Run";
|
|
|
|
|
const char G_BUILD_CANCEL[] = "ProjectExplorer.Group.BuildCancel";
|
|
|
|
|
|
|
|
|
|
// Context menus
|
|
|
|
|
const char M_SESSIONCONTEXT[] = "Project.Menu.Session";
|
|
|
|
|
const char M_PROJECTCONTEXT[] = "Project.Menu.Project";
|
|
|
|
|
const char M_SUBPROJECTCONTEXT[] = "Project.Menu.SubProject";
|
|
|
|
|
const char M_FOLDERCONTEXT[] = "Project.Menu.Folder";
|
|
|
|
|
const char M_FILECONTEXT[] = "Project.Menu.File";
|
|
|
|
|
const char M_OPENFILEWITHCONTEXT[] = "Project.Menu.File.OpenWith";
|
|
|
|
|
|
|
|
|
|
// Context menu groups
|
|
|
|
|
const char G_SESSION_BUILD[] = "Session.Group.Build";
|
2012-04-26 19:28:59 +02:00
|
|
|
const char G_SESSION_REBUILD[] = "Session.Group.Rebuild";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char G_SESSION_FILES[] = "Session.Group.Files";
|
|
|
|
|
const char G_SESSION_OTHER[] = "Session.Group.Other";
|
|
|
|
|
|
|
|
|
|
const char G_PROJECT_FIRST[] = "Project.Group.Open";
|
|
|
|
|
const char G_PROJECT_BUILD[] = "Project.Group.Build";
|
2012-04-26 19:28:59 +02:00
|
|
|
const char G_PROJECT_REBUILD[] = "Project.Group.Rebuild";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char G_PROJECT_RUN[] = "Project.Group.Run";
|
|
|
|
|
const char G_PROJECT_FILES[] = "Project.Group.Files";
|
|
|
|
|
const char G_PROJECT_TREE[] = "Project.Group.Tree";
|
|
|
|
|
const char G_PROJECT_LAST[] = "Project.Group.Last";
|
|
|
|
|
|
|
|
|
|
const char G_FOLDER_FILES[] = "ProjectFolder.Group.Files";
|
|
|
|
|
const char G_FOLDER_OTHER[] = "ProjectFolder.Group.Other";
|
|
|
|
|
const char G_FOLDER_CONFIG[] = "ProjectFolder.Group.Config";
|
|
|
|
|
|
|
|
|
|
const char G_FILE_OPEN[] = "ProjectFile.Group.Open";
|
|
|
|
|
const char G_FILE_OTHER[] = "ProjectFile.Group.Other";
|
|
|
|
|
const char G_FILE_CONFIG[] = "ProjectFile.Group.Config";
|
|
|
|
|
|
|
|
|
|
const char RUNMENUCONTEXTMENU[] = "Project.RunMenu";
|
|
|
|
|
|
|
|
|
|
// File factory
|
|
|
|
|
const char FILE_FACTORY_ID[] = "ProjectExplorer.FileFactoryId";
|
|
|
|
|
|
|
|
|
|
// Icons
|
|
|
|
|
const char ICON_BUILD[] = ":/projectexplorer/images/build.png";
|
|
|
|
|
const char ICON_BUILD_SMALL[] = ":/projectexplorer/images/build_small.png";
|
|
|
|
|
const char ICON_CLEAN[] = ":/projectexplorer/images/clean.png";
|
|
|
|
|
const char ICON_CLEAN_SMALL[] = ":/projectexplorer/images/clean_small.png";
|
|
|
|
|
const char ICON_REBUILD[] = ":/projectexplorer/images/rebuild.png";
|
|
|
|
|
const char ICON_REBUILD_SMALL[] = ":/projectexplorer/images/rebuild_small.png";
|
|
|
|
|
const char ICON_RUN[] = ":/projectexplorer/images/run.png";
|
|
|
|
|
const char ICON_RUN_SMALL[] = ":/projectexplorer/images/run_small.png";
|
|
|
|
|
const char ICON_DEBUG_SMALL[] = ":/projectexplorer/images/debugger_start_small.png";
|
|
|
|
|
const char ICON_STOP[] = ":/projectexplorer/images/stop.png";
|
|
|
|
|
const char ICON_STOP_SMALL[] = ":/projectexplorer/images/stop_small.png";
|
|
|
|
|
const char ICON_WINDOW[] = ":/projectexplorer/images/window.png";
|
|
|
|
|
|
|
|
|
|
// Mime types
|
|
|
|
|
const char C_SOURCE_MIMETYPE[] = "text/x-csrc";
|
|
|
|
|
const char C_HEADER_MIMETYPE[] = "text/x-chdr";
|
|
|
|
|
const char CPP_SOURCE_MIMETYPE[] = "text/x-c++src";
|
|
|
|
|
const char CPP_HEADER_MIMETYPE[] = "text/x-c++hdr";
|
2014-02-07 22:39:44 +01:00
|
|
|
const char LINGUIST_MIMETYPE[] = "application/x-linguist";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char FORM_MIMETYPE[] = "application/x-designer";
|
2012-12-06 12:11:12 +01:00
|
|
|
const char QML_MIMETYPE[] = "application/x-qml"; // separate def also in qmljstoolsconstants.h
|
2013-05-21 23:37:47 +03:00
|
|
|
const char RESOURCE_MIMETYPE[] = "application/vnd.qt.xml.resource";
|
2011-09-02 13:19:50 +02:00
|
|
|
|
|
|
|
|
// Settings page
|
|
|
|
|
const char PROJECTEXPLORER_SETTINGS_CATEGORY[] = "K.ProjectExplorer";
|
2011-09-15 19:20:50 +02:00
|
|
|
const char PROJECTEXPLORER_SETTINGS_TR_CATEGORY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Build & Run");
|
2014-06-04 09:50:52 +02:00
|
|
|
const char PROJECTEXPLORER_SETTINGS_CATEGORY_ICON[] = ":/projectexplorer/images/category_buildrun.png";
|
2011-09-15 19:20:50 +02:00
|
|
|
const char PROJECTEXPLORER_SETTINGS_ID[] = "A.ProjectExplorer.ProjectExplorer";
|
2011-09-02 13:19:50 +02:00
|
|
|
const char TOOLCHAIN_SETTINGS_PAGE_ID[] = "M.ProjectExplorer.ToolChainOptions";
|
2013-08-14 18:30:40 +02:00
|
|
|
const char DEBUGGER_SETTINGS_PAGE_ID[] = "N.ProjectExplorer.DebuggerOptions";
|
2012-09-03 18:31:44 +02:00
|
|
|
const char KITS_SETTINGS_PAGE_ID[] = "D.ProjectExplorer.KitsOptions";
|
2011-09-02 13:19:50 +02:00
|
|
|
|
2012-03-06 12:31:42 +01:00
|
|
|
// Device settings page
|
2013-01-23 14:34:01 +01:00
|
|
|
const char DEVICE_SETTINGS_CATEGORY[] = "XW.Devices";
|
2012-03-06 12:31:42 +01:00
|
|
|
const char DEVICE_SETTINGS_PAGE_ID[] = "AA.Device Settings";
|
|
|
|
|
|
2011-09-02 13:19:50 +02:00
|
|
|
// Task categories
|
|
|
|
|
const char TASK_CATEGORY_COMPILE[] = "Task.Category.Compile";
|
|
|
|
|
const char TASK_CATEGORY_BUILDSYSTEM[] = "Task.Category.Buildsystem";
|
2013-08-19 15:35:14 +02:00
|
|
|
const char TASK_CATEGORY_DEPLOYMENT[] = "Task.Category.Deploy";
|
2009-11-11 09:54:13 +01:00
|
|
|
|
2011-11-18 12:54:41 +01:00
|
|
|
// Wizard categories
|
2012-02-08 17:25:35 +01:00
|
|
|
const char QT_PROJECT_WIZARD_CATEGORY[] = "H.QtProjects";
|
|
|
|
|
const char QT_PROJECT_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Other Project");
|
|
|
|
|
|
|
|
|
|
const char QT_APPLICATION_WIZARD_CATEGORY[] = "F.QtApplications";
|
|
|
|
|
const char QT_APPLICATION_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Applications");
|
|
|
|
|
|
|
|
|
|
const char LIBRARIES_WIZARD_CATEGORY[] = "G.Libraries";
|
|
|
|
|
const char LIBRARIES_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Libraries");
|
2011-11-18 12:54:41 +01:00
|
|
|
|
2012-02-08 17:25:35 +01:00
|
|
|
const char IMPORT_WIZARD_CATEGORY[] = "T.Import";
|
2011-11-18 12:54:41 +01:00
|
|
|
const char IMPORT_WIZARD_CATEGORY_DISPLAY[] = QT_TRANSLATE_NOOP("ProjectExplorer", "Import Project");
|
2009-11-27 10:33:24 +01:00
|
|
|
|
2012-04-02 14:55:56 +02:00
|
|
|
// Wizard extra values
|
2014-03-19 10:07:22 +01:00
|
|
|
const char PREFERRED_PROJECT_NODE[] = "ProjectExplorer.PreferredProjectNode";
|
2012-09-04 15:27:10 +02:00
|
|
|
const char PROJECT_KIT_IDS[] = "ProjectExplorer.Profile.Ids";
|
2012-04-02 14:55:56 +02:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
// Build step lists ids:
|
2011-09-02 13:19:50 +02:00
|
|
|
const char BUILDSTEPS_CLEAN[] = "ProjectExplorer.BuildSteps.Clean";
|
|
|
|
|
const char BUILDSTEPS_BUILD[] = "ProjectExplorer.BuildSteps.Build";
|
|
|
|
|
const char BUILDSTEPS_DEPLOY[] = "ProjectExplorer.BuildSteps.Deploy";
|
2010-07-16 14:00:41 +02:00
|
|
|
|
|
|
|
|
// Deploy Configuration id:
|
2011-09-02 13:19:50 +02:00
|
|
|
const char DEFAULT_DEPLOYCONFIGURATION_ID[] = "ProjectExplorer.DefaultDeployConfiguration";
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2011-02-01 18:36:00 +01:00
|
|
|
// ToolChain Ids
|
2011-09-02 13:19:50 +02:00
|
|
|
const char CLANG_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.Clang";
|
|
|
|
|
const char GCC_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.Gcc";
|
|
|
|
|
const char LINUXICC_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.LinuxIcc";
|
|
|
|
|
const char MINGW_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.Mingw";
|
|
|
|
|
const char MSVC_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.Msvc";
|
2011-11-16 21:15:48 +00:00
|
|
|
const char WINCE_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.WinCE";
|
2013-01-09 21:40:34 +02:00
|
|
|
const char CUSTOM_TOOLCHAIN_ID[] = "ProjectExplorer.ToolChain.Custom";
|
2011-02-01 18:36:00 +01:00
|
|
|
|
2011-01-20 14:03:07 +01:00
|
|
|
// Default directory to run custom (build) commands in.
|
2011-09-02 13:19:50 +02:00
|
|
|
const char DEFAULT_WORKING_DIR[] = "%{buildDir}";
|
2013-04-16 14:18:57 +02:00
|
|
|
const char DEFAULT_WORKING_DIR_ALTERNATE[] = "%{sourceDir}";
|
2011-01-20 14:03:07 +01:00
|
|
|
|
2012-05-29 17:00:24 +02:00
|
|
|
// Desktop Device related ids:
|
|
|
|
|
const char DESKTOP_DEVICE_ID[] = "Desktop Device";
|
|
|
|
|
const char DESKTOP_DEVICE_TYPE[] = "Desktop";
|
2013-03-20 13:00:10 +01:00
|
|
|
const int DESKTOP_PORT_START = 30000;
|
|
|
|
|
const int DESKTOP_PORT_END = 31000;
|
2012-05-29 17:00:24 +02:00
|
|
|
|
2012-11-16 19:11:36 +01:00
|
|
|
// Variable Names:
|
2013-03-11 11:05:06 +01:00
|
|
|
const char VAR_CURRENTPROJECT_PREFIX[] = "CurrentProject";
|
2012-11-16 19:11:36 +01:00
|
|
|
const char VAR_CURRENTPROJECT_BUILDPATH[] = "CurrentProject:BuildPath";
|
|
|
|
|
const char VAR_CURRENTPROJECT_NAME[] = "CurrentProject:Name";
|
|
|
|
|
const char VAR_CURRENTKIT_NAME[] = "CurrentKit:Name";
|
|
|
|
|
const char VAR_CURRENTKIT_FILESYSTEMNAME[] = "CurrentKit:FileSystemName";
|
|
|
|
|
const char VAR_CURRENTKIT_ID[] = "CurrentKit:Id";
|
|
|
|
|
const char VAR_CURRENTBUILD_NAME[] = "CurrentBuild:Name";
|
|
|
|
|
const char VAR_CURRENTBUILD_TYPE[] = "CurrentBuild:Type";
|
2013-11-06 12:04:52 +01:00
|
|
|
const char VAR_CURRENTSESSION_PREFIX[] = "CurrentSession";
|
|
|
|
|
const char VAR_CURRENTSESSION_NAME[] = "CurrentSession:Name";
|
2014-02-05 14:44:54 +01:00
|
|
|
const char VAR_CURRENTDEVICE_HOSTADDRESS[] = "CurrentDevice:HostAddress";
|
|
|
|
|
const char VAR_CURRENTDEVICE_SSHPORT[] = "CurrentDevice:SshPort";
|
|
|
|
|
const char VAR_CURRENTDEVICE_USERNAME[] = "CurrentDevice:UserName";
|
|
|
|
|
const char VAR_CURRENTDEVICE_PRIVATEKEYFILE[] = "CurrentDevice:PrivateKeyFile";
|
2012-11-16 19:11:36 +01:00
|
|
|
|
2013-08-24 23:10:17 +02:00
|
|
|
const char HIDE_FILE_FILTER_SETTING[] = "GenericProject/FileFilter";
|
2014-03-25 02:14:48 +01:00
|
|
|
const char HIDE_FILE_FILTER_DEFAULT[] = "Makefile*; *.o; *.lo; *.la; *.obj; *~; *.files;"
|
|
|
|
|
" *.config; *.creator; *.user; *.includes; *.autosave";
|
2013-08-24 23:10:17 +02:00
|
|
|
|
|
|
|
|
const char SHOW_FILE_FILTER_SETTING[] = "GenericProject/ShowFileFilter";
|
|
|
|
|
const char SHOW_FILE_FILTER_DEFAULT[] = "*.c; *.cc; *.cpp; *.cp; *.cxx; *.c++; *.h; *.hh; *.hpp; *.hxx;";
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace Constants
|
2012-01-10 19:17:24 +01:00
|
|
|
|
|
|
|
|
// Run modes
|
|
|
|
|
enum RunMode {
|
|
|
|
|
NoRunMode,
|
|
|
|
|
NormalRunMode,
|
|
|
|
|
DebugRunMode,
|
|
|
|
|
DebugRunModeWithBreakOnMain,
|
|
|
|
|
QmlProfilerRunMode,
|
|
|
|
|
CallgrindRunMode,
|
|
|
|
|
MemcheckRunMode
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace ProjectExplorer
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
#endif // PROJECTEXPLORERCONSTANTS_H
|