2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-01-15 16:58:52 +01:00
|
|
|
|
|
|
|
|
#include "javaeditor.h"
|
|
|
|
|
#include "javaindenter.h"
|
|
|
|
|
#include "androidconstants.h"
|
|
|
|
|
|
2014-08-22 12:49:02 +02:00
|
|
|
#include <coreplugin/editormanager/ieditorfactory.h>
|
2022-09-27 08:50:58 +02:00
|
|
|
|
|
|
|
|
#include <texteditor/codeassist/keywordscompletionassist.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <texteditor/textdocument.h>
|
2014-08-20 01:09:56 +02:00
|
|
|
#include <texteditor/texteditoractionhandler.h>
|
2014-01-15 16:58:52 +01:00
|
|
|
#include <texteditor/texteditorconstants.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <texteditor/texteditor.h>
|
|
|
|
|
|
2022-09-27 08:50:58 +02:00
|
|
|
#include <utils/filepath.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <utils/uncommentselection.h>
|
2014-01-15 16:58:52 +01:00
|
|
|
|
2022-09-27 08:50:58 +02:00
|
|
|
namespace Android::Internal {
|
2014-01-15 16:58:52 +01:00
|
|
|
|
2016-05-30 15:23:52 +02:00
|
|
|
static TextEditor::TextDocument *createJavaDocument()
|
2014-08-22 12:49:02 +02:00
|
|
|
{
|
2016-05-30 15:23:52 +02:00
|
|
|
auto doc = new TextEditor::TextDocument;
|
|
|
|
|
doc->setId(Constants::JAVA_EDITOR_ID);
|
|
|
|
|
doc->setMimeType(QLatin1String(Constants::JAVA_MIMETYPE));
|
2019-01-16 09:37:54 +01:00
|
|
|
doc->setIndenter(new JavaIndenter(doc->document()));
|
2016-05-30 15:23:52 +02:00
|
|
|
return doc;
|
2014-01-15 16:58:52 +01:00
|
|
|
}
|
|
|
|
|
|
2014-08-20 01:09:56 +02:00
|
|
|
//
|
|
|
|
|
// JavaEditorFactory
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
JavaEditorFactory::JavaEditorFactory()
|
|
|
|
|
{
|
2017-07-26 11:07:32 +02:00
|
|
|
static QStringList keywords = {
|
|
|
|
|
"abstract", "assert", "boolean", "break", "byte", "case", "catch", "char", "class", "const",
|
|
|
|
|
"continue", "default", "do", "double", "else", "enum", "extends", "final", "finally",
|
|
|
|
|
"float", "for", "goto", "if", "implements", "import", "instanceof", "int", "interface",
|
|
|
|
|
"long", "native", "new", "package", "private", "protected", "public", "return", "short",
|
|
|
|
|
"static", "strictfp", "super", "switch", "synchronized", "this", "throw", "throws",
|
|
|
|
|
"transient", "try", "void", "volatile", "while"
|
|
|
|
|
};
|
2014-08-22 12:49:02 +02:00
|
|
|
setId(Constants::JAVA_EDITOR_ID);
|
2020-02-11 17:51:59 +01:00
|
|
|
setDisplayName(QCoreApplication::translate("OpenWith::Editors", "Java Editor"));
|
2014-08-22 12:49:02 +02:00
|
|
|
addMimeType(Constants::JAVA_MIMETYPE);
|
2014-08-20 01:09:56 +02:00
|
|
|
|
2016-05-30 15:23:52 +02:00
|
|
|
setDocumentCreator(createJavaDocument);
|
2015-02-03 09:18:57 +01:00
|
|
|
setUseGenericHighlighter(true);
|
2017-04-24 16:01:14 +02:00
|
|
|
setCommentDefinition(Utils::CommentDefinition::CppStyle);
|
2014-09-02 12:25:20 +02:00
|
|
|
setEditorActionHandlers(TextEditor::TextEditorActionHandler::UnCommentSelection);
|
2017-07-26 11:07:32 +02:00
|
|
|
setCompletionAssistProvider(new TextEditor::KeywordsCompletionAssistProvider(keywords));
|
2014-08-20 01:09:56 +02:00
|
|
|
}
|
|
|
|
|
|
2022-09-27 08:50:58 +02:00
|
|
|
} // Android::Internal
|