2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
** Non-Open Source Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
|
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
|
|
|
** alternatively, in accordance with the terms contained in a written
|
2008-12-02 14:17:16 +01:00
|
|
|
** agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
|
|
|
** of this file. Please review the following information to ensure GNU
|
|
|
|
|
** General Public Licensing requirements will be met:
|
|
|
|
|
**
|
|
|
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2008-12-02 14:17:16 +01:00
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
|
|
|
|
** version 1.2, included in the file GPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
***************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef TEXTEDITORCONSTANTS_H
|
|
|
|
|
#define TEXTEDITORCONSTANTS_H
|
|
|
|
|
|
|
|
|
|
namespace TextEditor {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
|
|
|
|
const char * const C_TEXTEDITOR = "Text Editor";
|
|
|
|
|
const char * const COMPLETE_THIS = "TextEditor.CompleteThis";
|
|
|
|
|
const char * const VISUALIZE_WHITESPACE = "TextEditor.VisualizeWhitespace";
|
|
|
|
|
const char * const TEXT_WRAPPING = "TextEditor.TextWrapping";
|
|
|
|
|
const char * const UN_COMMENT_SELECTION = "TextEditor.UnCommentSelection";
|
|
|
|
|
const char * const COLLAPSE = "TextEditor.Collapse";
|
|
|
|
|
const char * const EXPAND = "TextEditor.Expand";
|
|
|
|
|
const char * const UN_COLLAPSE_ALL = "TextEditor.UnCollapseAll";
|
|
|
|
|
const char * const AUTO_INDENT_SELECTION = "TextEditor.AutoIndentSelection";
|
|
|
|
|
const char * const INCREASE_FONT_SIZE = "TextEditor.IncreaseFontSize";
|
|
|
|
|
const char * const DECREASE_FONT_SIZE = "TextEditor.DecreaseFontSize";
|
2008-12-04 18:37:02 +01:00
|
|
|
const char * const GOTO_BLOCK_START = "TextEditor.GotoBlockStart";
|
|
|
|
|
const char * const GOTO_BLOCK_START_WITH_SELECTION = "TextEditor.GotoBlockStartWithSelection";
|
|
|
|
|
const char * const GOTO_BLOCK_END = "TextEditor.GotoBlockEnd";
|
|
|
|
|
const char * const GOTO_BLOCK_END_WITH_SELECTION = "TextEditor.GotoBlockEndWithSelection";
|
2008-12-02 12:01:29 +01:00
|
|
|
const char * const DELETE_LINE = "TextEditor.DeleteLine";
|
|
|
|
|
const char * const DELETE_WORD = "TextEditor.DeleteWord";
|
|
|
|
|
const char * const SELECT_ENCODING = "TextEditor.SelectEncoding";
|
2008-12-04 18:37:02 +01:00
|
|
|
const char * const GOTO_OPENING_PARENTHESIS = "TextEditor.GotoOpeningParenthesis";
|
|
|
|
|
const char * const GOTO_CLOSING_PARENTHESIS = "TextEditor.GotoOpeningParenthesis";
|
2008-12-02 12:01:29 +01:00
|
|
|
const char * const C_TEXTEDITOR_MIMETYPE_TEXT = "text/plain";
|
|
|
|
|
const char * const C_TEXTEDITOR_MIMETYPE_XML = "application/xml";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Text color and style categories
|
|
|
|
|
const char * const C_TEXT = "Text";
|
|
|
|
|
|
|
|
|
|
const char * const C_SELECTION = "Selection";
|
|
|
|
|
const char * const C_LINE_NUMBER = "LineNumber";
|
|
|
|
|
const char * const C_SEARCH_RESULT = "SearchResult";
|
|
|
|
|
const char * const C_SEARCH_SCOPE = "SearchScope";
|
|
|
|
|
const char * const C_PARENTHESES = "Parentheses";
|
|
|
|
|
const char * const C_CURRENT_LINE = "CurrentLine";
|
|
|
|
|
|
|
|
|
|
const char * const C_NUMBER = "Number";
|
|
|
|
|
const char * const C_STRING = "String";
|
|
|
|
|
const char * const C_TYPE = "Type";
|
|
|
|
|
const char * const C_KEYWORD = "Keyword";
|
|
|
|
|
const char * const C_OPERATOR = "Operator";
|
|
|
|
|
const char * const C_PREPROCESSOR = "Preprocessor";
|
|
|
|
|
const char * const C_LABEL = "Label";
|
|
|
|
|
const char * const C_COMMENT = "Comment";
|
|
|
|
|
const char * const C_DISABLED_CODE = "DisabledCode";
|
|
|
|
|
|
|
|
|
|
const char * const C_ADDED_LINE = "AddedLine";
|
|
|
|
|
const char * const C_REMOVED_LINE = "RemovedLine";
|
|
|
|
|
const char * const C_DIFF_FILE = "DiffFile";
|
|
|
|
|
const char * const C_DIFF_LOCATION = "DiffLocation";
|
|
|
|
|
|
|
|
|
|
const char * const C_VARIABLE = "Variable";
|
|
|
|
|
const char * const C_FUNCTION = "Function";
|
|
|
|
|
|
|
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace TextEditor
|
|
|
|
|
|
|
|
|
|
#endif // TEXTEDITORCONSTANTS_H
|