2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2012-04-26 14:17:42 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2012-04-26 14:17:42 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-04-26 14:17:42 +02: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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-04-26 14:17:42 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-04-26 14:17:42 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-04-26 14:17:42 +02:00
|
|
|
|
|
|
|
|
#include "texteditorconstants.h"
|
|
|
|
|
|
2012-05-03 13:59:49 +02:00
|
|
|
#include <QByteArray>
|
2012-04-26 14:17:42 +02:00
|
|
|
|
|
|
|
|
namespace TextEditor {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
|
|
|
|
const char *nameForStyle(TextStyle style)
|
|
|
|
|
{
|
|
|
|
|
switch (style) {
|
|
|
|
|
case C_TEXT: return "Text";
|
|
|
|
|
|
|
|
|
|
case C_LINK: return "Link";
|
|
|
|
|
case C_SELECTION: return "Selection";
|
|
|
|
|
case C_LINE_NUMBER: return "LineNumber";
|
|
|
|
|
case C_SEARCH_RESULT: return "SearchResult";
|
2020-09-10 14:33:14 +02:00
|
|
|
case C_SEARCH_RESULT_ALT1: return "SearchResultAlt1";
|
|
|
|
|
case C_SEARCH_RESULT_ALT2: return "SearchResultAlt2";
|
2022-05-07 00:44:03 +03:00
|
|
|
case C_SEARCH_RESULT_CONTAINING_FUNCTION: return "SearchResultContainingFunction";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_SEARCH_SCOPE: return "SearchScope";
|
|
|
|
|
case C_PARENTHESES: return "Parentheses";
|
2015-04-28 11:04:07 +02:00
|
|
|
case C_PARENTHESES_MISMATCH:return "ParenthesesMismatch";
|
2016-04-28 12:51:34 +02:00
|
|
|
case C_AUTOCOMPLETE: return "AutoComplete";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_CURRENT_LINE: return "CurrentLine";
|
|
|
|
|
case C_CURRENT_LINE_NUMBER: return "CurrentLineNumber";
|
|
|
|
|
case C_OCCURRENCES: return "Occurrences";
|
|
|
|
|
case C_OCCURRENCES_UNUSED: return "Occurrences.Unused";
|
|
|
|
|
case C_OCCURRENCES_RENAME: return "Occurrences.Rename";
|
|
|
|
|
|
|
|
|
|
case C_NUMBER: return "Number";
|
|
|
|
|
case C_STRING: return "String";
|
|
|
|
|
case C_TYPE: return "Type";
|
2021-10-27 15:52:20 +02:00
|
|
|
case C_NAMESPACE: return "Namespace";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_LOCAL: return "Local";
|
2021-03-03 19:32:48 +01:00
|
|
|
case C_PARAMETER: return "Parameter";
|
2016-03-07 11:59:01 +01:00
|
|
|
case C_GLOBAL: return "Global";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_FIELD: return "Field";
|
2012-08-27 10:42:42 +02:00
|
|
|
// TODO: Rename "Static" to "Enumeration" in next major update,
|
|
|
|
|
// because renaming here would break styles defined by the user.
|
|
|
|
|
case C_ENUMERATION: return "Static";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_VIRTUAL_METHOD: return "VirtualMethod";
|
2010-10-18 17:45:49 +02:00
|
|
|
case C_FUNCTION: return "Function";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_KEYWORD: return "Keyword";
|
2014-06-21 14:31:06 +04:00
|
|
|
case C_PRIMITIVE_TYPE: return "PrimitiveType";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_OPERATOR: return "Operator";
|
2016-11-05 15:29:10 +01:00
|
|
|
case C_OVERLOADED_OPERATOR: return "Overloaded Operator";
|
2018-09-21 01:28:48 +03:00
|
|
|
case C_PUNCTUATION: return "Punctuation";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_PREPROCESSOR: return "Preprocessor";
|
2022-06-17 11:06:10 +02:00
|
|
|
case C_MACRO: return "Macro";
|
2012-04-26 14:17:42 +02:00
|
|
|
case C_LABEL: return "Label";
|
|
|
|
|
case C_COMMENT: return "Comment";
|
|
|
|
|
case C_DOXYGEN_COMMENT: return "Doxygen.Comment";
|
|
|
|
|
case C_DOXYGEN_TAG: return "Doxygen.Tag";
|
|
|
|
|
case C_VISUAL_WHITESPACE: return "VisualWhitespace";
|
|
|
|
|
case C_QML_LOCAL_ID: return "QmlLocalId";
|
|
|
|
|
case C_QML_EXTERNAL_ID: return "QmlExternalId";
|
|
|
|
|
case C_QML_TYPE_ID: return "QmlTypeId";
|
|
|
|
|
case C_QML_ROOT_OBJECT_PROPERTY: return "QmlRootObjectProperty";
|
|
|
|
|
case C_QML_SCOPE_OBJECT_PROPERTY: return "QmlScopeObjectProperty";
|
|
|
|
|
case C_QML_EXTERNAL_OBJECT_PROPERTY: return "QmlExternalObjectProperty";
|
|
|
|
|
case C_JS_SCOPE_VAR: return "JsScopeVar";
|
|
|
|
|
case C_JS_IMPORT_VAR: return "JsImportVar";
|
|
|
|
|
case C_JS_GLOBAL_VAR: return "JsGlobalVar";
|
|
|
|
|
case C_QML_STATE_NAME: return "QmlStateName";
|
|
|
|
|
case C_BINDING: return "Binding";
|
|
|
|
|
|
|
|
|
|
case C_DISABLED_CODE: return "DisabledCode";
|
|
|
|
|
case C_ADDED_LINE: return "AddedLine";
|
|
|
|
|
case C_REMOVED_LINE: return "RemovedLine";
|
|
|
|
|
case C_DIFF_FILE: return "DiffFile";
|
|
|
|
|
case C_DIFF_LOCATION: return "DiffLocation";
|
|
|
|
|
|
2013-07-02 19:32:12 +02:00
|
|
|
case C_DIFF_FILE_LINE: return "DiffFileLine";
|
2013-06-05 15:25:42 +02:00
|
|
|
case C_DIFF_CONTEXT_LINE: return "DiffContextLine";
|
|
|
|
|
case C_DIFF_SOURCE_LINE: return "DiffSourceLine";
|
|
|
|
|
case C_DIFF_SOURCE_CHAR: return "DiffSourceChar";
|
|
|
|
|
case C_DIFF_DEST_LINE: return "DiffDestLine";
|
|
|
|
|
case C_DIFF_DEST_CHAR: return "DiffDestChar";
|
|
|
|
|
|
2015-03-25 10:30:24 +02:00
|
|
|
case C_LOG_CHANGE_LINE: return "LogChangeLine";
|
2020-07-01 21:31:09 +02:00
|
|
|
case C_LOG_AUTHOR_NAME: return "LogAuthorName";
|
|
|
|
|
case C_LOG_COMMIT_DATE: return "LogCommitDate";
|
|
|
|
|
case C_LOG_COMMIT_HASH: return "LogCommitHash";
|
|
|
|
|
case C_LOG_COMMIT_SUBJECT: return "LogCommitSubject";
|
|
|
|
|
case C_LOG_DECORATION: return "LogDecoration";
|
2015-03-25 10:30:24 +02:00
|
|
|
|
2015-09-10 14:18:09 +02:00
|
|
|
case C_ERROR: return "Error";
|
|
|
|
|
case C_ERROR_CONTEXT: return "ErrorContext";
|
|
|
|
|
case C_WARNING: return "Warning";
|
|
|
|
|
case C_WARNING_CONTEXT: return "WarningContext";
|
|
|
|
|
|
2016-07-17 00:29:33 +02:00
|
|
|
case C_DECLARATION: return "Declaration";
|
|
|
|
|
case C_FUNCTION_DEFINITION: return "FunctionDefinition";
|
|
|
|
|
case C_OUTPUT_ARGUMENT: return "OutputArgument";
|
2021-10-27 13:46:15 +02:00
|
|
|
case C_STATIC_MEMBER: return "StaticMember";
|
2012-04-26 14:17:42 +02:00
|
|
|
|
2022-04-01 07:35:08 +02:00
|
|
|
case C_COCO_CODE_ADDED: return "CocoCodeAdded";
|
|
|
|
|
case C_COCO_PARTIALLY_COVERED: return "CocoPartiallyCovered";
|
|
|
|
|
case C_COCO_NOT_COVERED: return "CocoNotCovered";
|
|
|
|
|
case C_COCO_FULLY_COVERED: return "CocoFullyCovered";
|
|
|
|
|
case C_COCO_MANUALLY_VALIDATED: return "CocoManuallyValidated";
|
|
|
|
|
case C_COCO_DEAD_CODE: return "CocoDeadCode";
|
|
|
|
|
case C_COCO_EXECUTION_COUNT_TOO_LOW: return "CocoExecutionCountTooLow";
|
|
|
|
|
case C_COCO_NOT_COVERED_INFO: return "CocoNotCoveredInfo";
|
|
|
|
|
case C_COCO_COVERED_INFO: return "CocoCoveredInfo";
|
|
|
|
|
case C_COCO_MANUALLY_VALIDATED_INFO: return "CocoManuallyValidatedInfo";
|
|
|
|
|
|
|
|
|
|
|
2015-09-10 14:18:37 +02:00
|
|
|
case C_LAST_STYLE_SENTINEL: return "LastStyleSentinel";
|
2012-04-26 14:17:42 +02:00
|
|
|
}
|
|
|
|
|
return "Unknown Style";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TextStyle styleFromName(const char *name)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < C_LAST_STYLE_SENTINEL; ++i) {
|
|
|
|
|
if (qstrcmp(name, nameForStyle(TextStyle(i))) == 0)
|
|
|
|
|
return TextStyle(i);
|
|
|
|
|
}
|
2015-05-04 09:40:41 +02:00
|
|
|
return C_LAST_STYLE_SENTINEL;
|
2012-04-26 14:17:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace TextEditor
|