Android: Add minimal Java editing support

Indentation for blocks '{'. '}' and completion for keywords.

TODO: "New File" is missing,
TODO: probably needs some tweaks to the indentation.
Task-number: QTCREATORBUG-11220

Change-Id: I758b3815e47d1427d39c0248eb16e39ffb7a29fb
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
This commit is contained in:
Daniel Teske
2014-01-15 16:58:52 +01:00
parent cdd19fe6ad
commit d1fd61cbf3
16 changed files with 784 additions and 2 deletions

View File

@@ -49,7 +49,12 @@ HEADERS += \
createandroidmanifestwizard.h \
androidpotentialkit.h \
androidextralibrarylistmodel.h \
androidsignaloperation.h
androidsignaloperation.h \
javaeditor.h \
javaeditorfactory.h \
javaindenter.h \
javaautocompleter.h \
javacompletionassistprovider.h
SOURCES += \
androidconfigurations.cpp \
@@ -93,7 +98,12 @@ SOURCES += \
createandroidmanifestwizard.cpp \
androidpotentialkit.cpp \
androidextralibrarylistmodel.cpp \
androidsignaloperation.cpp
androidsignaloperation.cpp \
javaeditor.cpp \
javaeditorfactory.cpp \
javaindenter.cpp \
javaautocompleter.cpp \
javacompletionassistprovider.cpp
FORMS += \
androidsettingswidget.ui \