forked from qt-creator/qt-creator
248 lines
12 KiB
C++
248 lines
12 KiB
C++
/**************************************************************************
|
|
**
|
|
** This file is part of Qt Creator
|
|
**
|
|
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
**
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
|
**
|
|
** Commercial Usage
|
|
**
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and Nokia.
|
|
**
|
|
** 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.
|
|
**
|
|
** If you are unsure which license is appropriate for your use, please
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
|
**
|
|
**************************************************************************/
|
|
|
|
#ifndef CORECONSTANTS_H
|
|
#define CORECONSTANTS_H
|
|
|
|
#include <QtCore/QtGlobal>
|
|
|
|
namespace Core {
|
|
namespace Constants {
|
|
|
|
#define IDE_VERSION_MAJOR 1
|
|
#define IDE_VERSION_MINOR 3
|
|
#define IDE_VERSION_RELEASE 84
|
|
|
|
#define STRINGIFY_INTERNAL(x) #x
|
|
#define STRINGIFY(x) STRINGIFY_INTERNAL(x)
|
|
|
|
#define IDE_VERSION STRINGIFY(IDE_VERSION_MAJOR) \
|
|
"." STRINGIFY(IDE_VERSION_MINOR) \
|
|
"." STRINGIFY(IDE_VERSION_RELEASE)
|
|
|
|
const char * const IDE_VERSION_LONG = IDE_VERSION;
|
|
const char * const IDE_AUTHOR = "Nokia Corporation";
|
|
const char * const IDE_YEAR = "2010";
|
|
|
|
#ifdef IDE_VERSION_DESCRIPTION
|
|
const char * const IDE_VERSION_DESCRIPTION_STR = STRINGIFY(IDE_VERSION_DESCRIPTION);
|
|
#else
|
|
const char * const IDE_VERSION_DESCRIPTION_STR = "";
|
|
#endif
|
|
|
|
#ifdef IDE_REVISION
|
|
const char * const IDE_REVISION_STR = STRINGIFY(IDE_REVISION);
|
|
#else
|
|
const char * const IDE_REVISION_STR = "";
|
|
#endif
|
|
|
|
#undef IDE_VERSION
|
|
#undef STRINGIFY
|
|
#undef STRINGIFY_INTERNAL
|
|
|
|
//modes
|
|
const char * const MODE_WELCOME = "Welcome";
|
|
const char * const MODE_EDIT = "Edit";
|
|
const char * const MODE_DESIGN = "Design";
|
|
const int P_MODE_WELCOME = 100;
|
|
const int P_MODE_EDIT = 90;
|
|
const int P_MODE_DESIGN = 89;
|
|
const int P_MODE_OUTPUT = 10;
|
|
|
|
//menubar
|
|
const char * const MENU_BAR = "QtCreator.MenuBar";
|
|
|
|
//menus
|
|
const char * const M_FILE = "QtCreator.Menu.File";
|
|
const char * const M_FILE_OPEN = "QtCreator.Menu.File.Open";
|
|
const char * const M_FILE_NEW = "QtCreator.Menu.File.New";
|
|
const char * const M_FILE_RECENTFILES = "QtCreator.Menu.File.RecentFiles";
|
|
const char * const M_EDIT = "QtCreator.Menu.Edit";
|
|
const char * const M_EDIT_ADVANCED = "QtCreator.Menu.Edit.Advanced";
|
|
const char * const M_TOOLS = "QtCreator.Menu.Tools";
|
|
const char * const M_WINDOW = "QtCreator.Menu.Window";
|
|
const char * const M_WINDOW_PANES = "QtCreator.Menu.Window.Panes";
|
|
const char * const M_WINDOW_VIEWS = "QtCreator.Menu.Window.Views";
|
|
const char * const M_HELP = "QtCreator.Menu.Help";
|
|
|
|
//contexts
|
|
const char * const C_GLOBAL = "Global Context";
|
|
const int C_GLOBAL_ID = 0;
|
|
const char * const C_WELCOME_MODE = "Core.WelcomeMode";
|
|
const char * const C_EDIT_MODE = "Core.EditMode";
|
|
const char * const C_DESIGN_MODE = "Core.DesignMode";
|
|
const char * const C_EDITORMANAGER = "Core.EditorManager";
|
|
const char * const C_NAVIGATION_PANE = "Core.NavigationPane";
|
|
const char * const C_PROBLEM_PANE = "Core.ProblemPane";
|
|
|
|
//default editor kind
|
|
const char * const K_DEFAULT_TEXT_EDITOR_DISPLAY_NAME = QT_TRANSLATE_NOOP("OpenWith::Editors", "Plain Text Editor");
|
|
const char * const K_DEFAULT_TEXT_EDITOR_ID = "Core.PlainTextEditor";
|
|
const char * const K_DEFAULT_BINARY_EDITOR_ID = "Core.BinaryEditor";
|
|
|
|
//actions
|
|
const char * const UNDO = "QtCreator.Undo";
|
|
const char * const REDO = "QtCreator.Redo";
|
|
const char * const COPY = "QtCreator.Copy";
|
|
const char * const PASTE = "QtCreator.Paste";
|
|
const char * const CUT = "QtCreator.Cut";
|
|
const char * const SELECTALL = "QtCreator.SelectAll";
|
|
|
|
const char * const GOTO = "QtCreator.Goto";
|
|
|
|
const char * const NEW = "QtCreator.New";
|
|
const char * const OPEN = "QtCreator.Open";
|
|
const char * const OPEN_WITH = "QtCreator.OpenWith";
|
|
const char * const REVERTTOSAVED = "QtCreator.RevertToSaved";
|
|
const char * const SAVE = "QtCreator.Save";
|
|
const char * const SAVEAS = "QtCreator.SaveAs";
|
|
const char * const SAVEALL = "QtCreator.SaveAll";
|
|
const char * const PRINT = "QtCreator.Print";
|
|
const char * const EXIT = "QtCreator.Exit";
|
|
|
|
const char * const OPTIONS = "QtCreator.Options";
|
|
const char * const TOGGLE_SIDEBAR = "QtCreator.ToggleSidebar";
|
|
const char * const TOGGLE_FULLSCREEN = "QtCreator.ToggleFullScreen";
|
|
|
|
const char * const MINIMIZE_WINDOW = "QtCreator.MinimizeWindow";
|
|
const char * const ZOOM_WINDOW = "QtCreator.ZoomWindow";
|
|
|
|
const char * const SPLIT = "QtCreator.Split";
|
|
const char * const SPLIT_SIDE_BY_SIDE = "QtCreator.SplitSideBySide";
|
|
const char * const REMOVE_CURRENT_SPLIT = "QtCreator.RemoveCurrentSplit";
|
|
const char * const REMOVE_ALL_SPLITS = "QtCreator.RemoveAllSplits";
|
|
const char * const GOTO_OTHER_SPLIT = "QtCreator.GotoOtherSplit";
|
|
const char * const SAVEASDEFAULT = "QtCreator.SaveAsDefaultLayout";
|
|
const char * const RESTOREDEFAULT = "QtCreator.RestoreDefaultLayout";
|
|
const char * const CLOSE = "QtCreator.Close";
|
|
const char * const CLOSEALL = "QtCreator.CloseAll";
|
|
const char * const CLOSEOTHERS = "QtCreator.CloseOthers";
|
|
const char * const GOTONEXT = "QtCreator.GotoNext";
|
|
const char * const GOTOPREV = "QtCreator.GotoPrevious";
|
|
const char * const GOTONEXTINHISTORY = "QtCreator.GotoNextInHistory";
|
|
const char * const GOTOPREVINHISTORY = "QtCreator.GotoPreviousInHistory";
|
|
const char * const GO_BACK = "QtCreator.GoBack";
|
|
const char * const GO_FORWARD = "QtCreator.GoForward";
|
|
const char * const GOTOPREVIOUSGROUP = "QtCreator.GotoPreviousTabGroup";
|
|
const char * const GOTONEXTGROUP = "QtCreator.GotoNextTabGroup";
|
|
const char * const WINDOWSLIST = "QtCreator.WindowsList";
|
|
const char * const ABOUT_QTCREATOR = "QtCreator.AboutQtCreator";
|
|
const char * const ABOUT_PLUGINS = "QtCreator.AboutPlugins";
|
|
const char * const ABOUT_QT = "QtCreator.AboutQt";
|
|
const char * const S_RETURNTOEDITOR = "QtCreator.ReturnToEditor";
|
|
const char * const OPEN_IN_EXTERNAL_EDITOR = "QtCreator.OpenInExternalEditor";
|
|
|
|
// default groups
|
|
const char * const G_DEFAULT_ONE = "QtCreator.Group.Default.One";
|
|
const char * const G_DEFAULT_TWO = "QtCreator.Group.Default.Two";
|
|
const char * const G_DEFAULT_THREE = "QtCreator.Group.Default.Three";
|
|
|
|
// main menu bar groups
|
|
const char * const G_FILE = "QtCreator.Group.File";
|
|
const char * const G_EDIT = "QtCreator.Group.Edit";
|
|
const char * const G_VIEW = "QtCreator.Group.View";
|
|
const char * const G_TOOLS = "QtCreator.Group.Tools";
|
|
const char * const G_WINDOW = "QtCreator.Group.Window";
|
|
const char * const G_HELP = "QtCreator.Group.Help";
|
|
|
|
// file menu groups
|
|
const char * const G_FILE_NEW = "QtCreator.Group.File.New";
|
|
const char * const G_FILE_OPEN = "QtCreator.Group.File.Open";
|
|
const char * const G_FILE_PROJECT = "QtCreator.Group.File.Project";
|
|
const char * const G_FILE_SAVE = "QtCreator.Group.File.Save";
|
|
const char * const G_FILE_CLOSE = "QtCreator.Group.File.Close";
|
|
const char * const G_FILE_PRINT = "QtCreator.Group.File.Print";
|
|
const char * const G_FILE_OTHER = "QtCreator.Group.File.Other";
|
|
|
|
// edit menu groups
|
|
const char * const G_EDIT_UNDOREDO = "QtCreator.Group.Edit.UndoRedo";
|
|
const char * const G_EDIT_COPYPASTE = "QtCreator.Group.Edit.CopyPaste";
|
|
const char * const G_EDIT_SELECTALL = "QtCreator.Group.Edit.SelectAll";
|
|
const char * const G_EDIT_ADVANCED = "QtCreator.Group.Edit.Advanced";
|
|
|
|
const char * const G_EDIT_FIND = "QtCreator.Group.Edit.Find";
|
|
const char * const G_EDIT_OTHER = "QtCreator.Group.Edit.Other";
|
|
|
|
// advanced edit menu groups
|
|
|
|
const char * const G_EDIT_FORMAT = "QtCreator.Group.Edit.Format";
|
|
const char * const G_EDIT_COLLAPSING = "QtCreator.Group.Edit.Collapsing";
|
|
const char * const G_EDIT_BLOCKS = "QtCreator.Group.Edit.Blocks";
|
|
const char * const G_EDIT_FONT = "QtCreator.Group.Edit.Font";
|
|
const char * const G_EDIT_EDITOR = "QtCreator.Group.Edit.Editor";
|
|
|
|
// window menu groups
|
|
const char * const G_WINDOW_SIZE = "QtCreator.Group.Window.Size";
|
|
const char * const G_WINDOW_PANES = "QtCreator.Group.Window.Panes";
|
|
const char * const G_WINDOW_VIEWS = "QtCreator.Group.Window.Views";
|
|
const char * const G_WINDOW_SPLIT = "QtCreator.Group.Window.Split";
|
|
const char * const G_WINDOW_NAVIGATE = "QtCreator.Group.Window.Navigate";
|
|
const char * const G_WINDOW_OTHER = "QtCreator.Group.Window.Other";
|
|
|
|
// help groups (global)
|
|
const char * const G_HELP_HELP = "QtCreator.Group.Help.Help";
|
|
const char * const G_HELP_ABOUT = "QtCreator.Group.Help.About";
|
|
|
|
const char * const ICON_MINUS = ":/core/images/minus.png";
|
|
const char * const ICON_PLUS = ":/core/images/plus.png";
|
|
const char * const ICON_NEWFILE = ":/core/images/filenew.png";
|
|
const char * const ICON_OPENFILE = ":/core/images/fileopen.png";
|
|
const char * const ICON_SAVEFILE = ":/core/images/filesave.png";
|
|
const char * const ICON_UNDO = ":/core/images/undo.png";
|
|
const char * const ICON_REDO = ":/core/images/redo.png";
|
|
const char * const ICON_COPY = ":/core/images/editcopy.png";
|
|
const char * const ICON_PASTE = ":/core/images/editpaste.png";
|
|
const char * const ICON_CUT = ":/core/images/editcut.png";
|
|
const char * const ICON_NEXT = ":/core/images/next.png";
|
|
const char * const ICON_PREV = ":/core/images/prev.png";
|
|
const char * const ICON_DIR = ":/core/images/dir.png";
|
|
const char * const ICON_CLEAN_PANE = ":/core/images/clean_pane_small.png";
|
|
const char * const ICON_CLEAR = ":/core/images/clear.png";
|
|
const char * const ICON_FIND = ":/core/images/find.png";
|
|
const char * const ICON_FINDNEXT = ":/core/images/findnext.png";
|
|
const char * const ICON_REPLACE = ":/core/images/replace.png";
|
|
const char * const ICON_RESET = ":/core/images/reset.png";
|
|
const char * const ICON_MAGNIFIER = ":/core/images/magnifier.png";
|
|
const char * const ICON_TOGGLE_SIDEBAR = ":/core/images/sidebaricon.png";
|
|
|
|
const char * const WIZARD_CATEGORY_QT = "R.Qt";
|
|
const char * const WIZARD_TR_CATEGORY_QT = QT_TRANSLATE_NOOP("Core", "Qt");
|
|
|
|
const char * const SETTINGS_CATEGORY_CORE = "A.Core";
|
|
const char * const SETTINGS_CATEGORY_CORE_ICON = ":/core/images/category_core.png";
|
|
const char * const SETTINGS_TR_CATEGORY_CORE = QT_TRANSLATE_NOOP("Core", "Environment");
|
|
const char * const SETTINGS_ID_ENVIRONMENT = "A.General";
|
|
|
|
const int TARGET_ICON_SIZE = 32;
|
|
|
|
} // namespace Constants
|
|
} // namespace Core
|
|
|
|
#endif // CORECONSTANTS_H
|