Moved EditSignatureBalloon class to top level.
This commit is contained in:
@@ -0,0 +1,124 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2010-2012 JetBrains s.r.o.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.jetbrains.jet.plugin.codeInsight;
|
||||||
|
|
||||||
|
import com.intellij.codeInsight.ExternalAnnotationsManager;
|
||||||
|
import com.intellij.openapi.application.Result;
|
||||||
|
import com.intellij.openapi.command.WriteCommandAction;
|
||||||
|
import com.intellij.openapi.editor.Document;
|
||||||
|
import com.intellij.openapi.editor.Editor;
|
||||||
|
import com.intellij.openapi.editor.EditorFactory;
|
||||||
|
import com.intellij.openapi.editor.EditorSettings;
|
||||||
|
import com.intellij.openapi.project.Project;
|
||||||
|
import com.intellij.openapi.ui.popup.*;
|
||||||
|
import com.intellij.openapi.wm.IdeFocusManager;
|
||||||
|
import com.intellij.psi.JavaPsiFacade;
|
||||||
|
import com.intellij.psi.PsiMethod;
|
||||||
|
import com.intellij.psi.PsiNameValuePair;
|
||||||
|
import com.intellij.ui.awt.RelativePoint;
|
||||||
|
import org.jetbrains.jet.plugin.JetFileType;
|
||||||
|
|
||||||
|
import javax.swing.*;
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import java.awt.event.MouseEvent;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Evgeny Gerashchenko
|
||||||
|
* @since 10.08.12
|
||||||
|
*/
|
||||||
|
@SuppressWarnings("SSBasedInspection")
|
||||||
|
class EditSignatureBalloon {
|
||||||
|
private final Editor editor;
|
||||||
|
private final PsiMethod method;
|
||||||
|
private final String previousSignature;
|
||||||
|
private final Balloon balloon;
|
||||||
|
|
||||||
|
public EditSignatureBalloon(PsiMethod method, String previousSignature) {
|
||||||
|
this.method = method;
|
||||||
|
this.previousSignature = previousSignature;
|
||||||
|
|
||||||
|
EditorFactory editorFactory = EditorFactory.getInstance();
|
||||||
|
assert editorFactory != null;
|
||||||
|
Document document = editorFactory.createDocument(previousSignature);
|
||||||
|
editor = editorFactory.createEditor(document, method.getProject(), JetFileType.INSTANCE, false);
|
||||||
|
EditorSettings settings = editor.getSettings();
|
||||||
|
settings.setVirtualSpace(false);
|
||||||
|
settings.setLineMarkerAreaShown(false);
|
||||||
|
settings.setFoldingOutlineShown(false);
|
||||||
|
settings.setRightMarginShown(false);
|
||||||
|
settings.setAdditionalPageAtBottom(false);
|
||||||
|
settings.setAdditionalLinesCount(0);
|
||||||
|
|
||||||
|
JPanel panel = new JPanel(new BorderLayout());
|
||||||
|
panel.add(editor.getComponent(), BorderLayout.CENTER);
|
||||||
|
|
||||||
|
JPanel toolbar = new JPanel(new FlowLayout(FlowLayout.RIGHT));
|
||||||
|
JButton saveButton = new JButton("Save");
|
||||||
|
toolbar.add(saveButton);
|
||||||
|
panel.add(toolbar, BorderLayout.SOUTH);
|
||||||
|
saveButton.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
save();
|
||||||
|
balloon.hide();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
BalloonBuilder builder = JBPopupFactory.getInstance().createDialogBalloonBuilder(panel, "Kotlin signature");
|
||||||
|
builder.setHideOnClickOutside(true);
|
||||||
|
builder.setHideOnKeyOutside(true);
|
||||||
|
|
||||||
|
balloon = builder.createBalloon();
|
||||||
|
balloon.addListener(new JBPopupAdapter() {
|
||||||
|
@Override
|
||||||
|
public void onClosed(LightweightWindowEvent event) {
|
||||||
|
dispose();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public void show(MouseEvent e) {
|
||||||
|
balloon.show(new RelativePoint(e), Balloon.Position.above);
|
||||||
|
IdeFocusManager.getInstance(editor.getProject()).requestFocus(editor.getContentComponent(), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void dispose() {
|
||||||
|
EditorFactory editorFactory = EditorFactory.getInstance();
|
||||||
|
assert editorFactory != null;
|
||||||
|
editorFactory.releaseEditor(editor);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void save() {
|
||||||
|
String newSignature = editor.getDocument().getText();
|
||||||
|
if (previousSignature.equals(newSignature)) return;
|
||||||
|
final Project project = method.getProject();
|
||||||
|
final PsiNameValuePair[] nameValuePairs = JavaPsiFacade.getElementFactory(project).createAnnotationFromText(
|
||||||
|
"@" + KotlinSignatureInJavaMarkerProvider.KOTLIN_SIGNATURE_ANNOTATION + "(value=\"" + newSignature + "\")", null).getParameterList().getAttributes();
|
||||||
|
|
||||||
|
new WriteCommandAction(project){
|
||||||
|
@Override
|
||||||
|
protected void run(final Result result) throws Throwable {
|
||||||
|
ExternalAnnotationsManager
|
||||||
|
.getInstance(project).deannotate(method, KotlinSignatureInJavaMarkerProvider.KOTLIN_SIGNATURE_ANNOTATION);
|
||||||
|
ExternalAnnotationsManager.getInstance(project).annotateExternally(
|
||||||
|
method, KotlinSignatureInJavaMarkerProvider.KOTLIN_SIGNATURE_ANNOTATION, method.getContainingFile(), nameValuePairs);
|
||||||
|
}
|
||||||
|
}.execute();
|
||||||
|
}
|
||||||
|
}
|
||||||
+2
-99
@@ -17,36 +17,20 @@
|
|||||||
package org.jetbrains.jet.plugin.codeInsight;
|
package org.jetbrains.jet.plugin.codeInsight;
|
||||||
|
|
||||||
import com.intellij.codeHighlighting.Pass;
|
import com.intellij.codeHighlighting.Pass;
|
||||||
import com.intellij.codeInsight.ExternalAnnotationsManager;
|
|
||||||
import com.intellij.codeInsight.daemon.GutterIconNavigationHandler;
|
import com.intellij.codeInsight.daemon.GutterIconNavigationHandler;
|
||||||
import com.intellij.codeInsight.daemon.LineMarkerInfo;
|
import com.intellij.codeInsight.daemon.LineMarkerInfo;
|
||||||
import com.intellij.codeInsight.daemon.LineMarkerProvider;
|
import com.intellij.codeInsight.daemon.LineMarkerProvider;
|
||||||
import com.intellij.codeInsight.navigation.NavigationUtil;
|
import com.intellij.codeInsight.navigation.NavigationUtil;
|
||||||
import com.intellij.openapi.application.Result;
|
|
||||||
import com.intellij.openapi.command.WriteCommandAction;
|
|
||||||
import com.intellij.openapi.editor.Document;
|
|
||||||
import com.intellij.openapi.editor.Editor;
|
|
||||||
import com.intellij.openapi.editor.EditorFactory;
|
|
||||||
import com.intellij.openapi.editor.EditorSettings;
|
|
||||||
import com.intellij.openapi.fileEditor.OpenFileDescriptor;
|
import com.intellij.openapi.fileEditor.OpenFileDescriptor;
|
||||||
import com.intellij.openapi.project.Project;
|
|
||||||
import com.intellij.openapi.ui.popup.*;
|
|
||||||
import com.intellij.openapi.vfs.VirtualFile;
|
import com.intellij.openapi.vfs.VirtualFile;
|
||||||
import com.intellij.openapi.wm.IdeFocusManager;
|
|
||||||
import com.intellij.psi.*;
|
import com.intellij.psi.*;
|
||||||
import com.intellij.ui.awt.RelativePoint;
|
|
||||||
import com.intellij.util.Function;
|
import com.intellij.util.Function;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
import org.jetbrains.jet.lang.resolve.java.JavaDescriptorResolver;
|
import org.jetbrains.jet.lang.resolve.java.JavaDescriptorResolver;
|
||||||
import org.jetbrains.jet.lang.resolve.java.JvmStdlibNames;
|
import org.jetbrains.jet.lang.resolve.java.JvmStdlibNames;
|
||||||
import org.jetbrains.jet.plugin.JetFileType;
|
|
||||||
import org.jetbrains.jet.plugin.JetIcons;
|
import org.jetbrains.jet.plugin.JetIcons;
|
||||||
|
|
||||||
import javax.swing.*;
|
|
||||||
import java.awt.*;
|
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import java.awt.event.MouseEvent;
|
import java.awt.event.MouseEvent;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -96,12 +80,12 @@ public class KotlinSignatureInJavaMarkerProvider implements LineMarkerProvider {
|
|||||||
else {
|
else {
|
||||||
// TODO check if annotations are editable
|
// TODO check if annotations are editable
|
||||||
|
|
||||||
new EditSignatureBalloon(element).show(e);
|
new EditSignatureBalloon(element, getKotlinSignature(annotation)).show(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private static final String KOTLIN_SIGNATURE_ANNOTATION = JvmStdlibNames.KOTLIN_SIGNATURE.getFqName().getFqName();
|
static final String KOTLIN_SIGNATURE_ANNOTATION = JvmStdlibNames.KOTLIN_SIGNATURE.getFqName().getFqName();
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
private static PsiAnnotation findKotlinSignatureAnnotation(@NotNull PsiElement element) {
|
private static PsiAnnotation findKotlinSignatureAnnotation(@NotNull PsiElement element) {
|
||||||
@@ -138,85 +122,4 @@ public class KotlinSignatureInJavaMarkerProvider implements LineMarkerProvider {
|
|||||||
@Override
|
@Override
|
||||||
public void collectSlowLineMarkers(@NotNull List<PsiElement> elements, @NotNull Collection<LineMarkerInfo> result) {
|
public void collectSlowLineMarkers(@NotNull List<PsiElement> elements, @NotNull Collection<LineMarkerInfo> result) {
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("SSBasedInspection")
|
|
||||||
private static class EditSignatureBalloon {
|
|
||||||
private final JPanel panel;
|
|
||||||
private final Editor editor;
|
|
||||||
private final PsiMethod method;
|
|
||||||
private final String previousSignature;
|
|
||||||
private final Balloon balloon;
|
|
||||||
|
|
||||||
public EditSignatureBalloon(PsiMethod method) {
|
|
||||||
panel = new JPanel(new BorderLayout());
|
|
||||||
this.method = method;
|
|
||||||
PsiAnnotation kotlinSignatureAnnotation = findKotlinSignatureAnnotation(this.method);
|
|
||||||
assert kotlinSignatureAnnotation != null;
|
|
||||||
previousSignature = getKotlinSignature(kotlinSignatureAnnotation);
|
|
||||||
EditorFactory editorFactory = EditorFactory.getInstance();
|
|
||||||
assert editorFactory != null;
|
|
||||||
Document document = editorFactory.createDocument(previousSignature);
|
|
||||||
editor = editorFactory.createEditor(document, method.getProject(), JetFileType.INSTANCE, false);
|
|
||||||
EditorSettings settings = editor.getSettings();
|
|
||||||
settings.setVirtualSpace(false);
|
|
||||||
settings.setLineMarkerAreaShown(false);
|
|
||||||
settings.setFoldingOutlineShown(false);
|
|
||||||
settings.setRightMarginShown(false);
|
|
||||||
settings.setAdditionalPageAtBottom(false);
|
|
||||||
settings.setAdditionalLinesCount(0);
|
|
||||||
panel.add(editor.getComponent(), BorderLayout.CENTER);
|
|
||||||
|
|
||||||
JPanel toolbar = new JPanel(new FlowLayout(FlowLayout.RIGHT));
|
|
||||||
JButton saveButton = new JButton("Save");
|
|
||||||
toolbar.add(saveButton);
|
|
||||||
panel.add(toolbar, BorderLayout.SOUTH);
|
|
||||||
saveButton.addActionListener(new ActionListener() {
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
save();
|
|
||||||
balloon.hide();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
BalloonBuilder builder = JBPopupFactory.getInstance().createDialogBalloonBuilder(panel, "Kotlin signature");
|
|
||||||
builder.setHideOnClickOutside(true);
|
|
||||||
builder.setHideOnKeyOutside(true);
|
|
||||||
|
|
||||||
balloon = builder.createBalloon();
|
|
||||||
balloon.addListener(new JBPopupAdapter() {
|
|
||||||
@Override
|
|
||||||
public void onClosed(LightweightWindowEvent event) {
|
|
||||||
dispose();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
public void show(MouseEvent e) {
|
|
||||||
balloon.show(new RelativePoint(e), Balloon.Position.above);
|
|
||||||
IdeFocusManager.getInstance(editor.getProject()).requestFocus(editor.getContentComponent(), false);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void dispose() {
|
|
||||||
EditorFactory editorFactory = EditorFactory.getInstance();
|
|
||||||
assert editorFactory != null;
|
|
||||||
editorFactory.releaseEditor(editor);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void save() {
|
|
||||||
String newSignature = editor.getDocument().getText();
|
|
||||||
if (previousSignature.equals(newSignature)) return;
|
|
||||||
final Project project = method.getProject();
|
|
||||||
final PsiNameValuePair[] nameValuePairs = JavaPsiFacade.getElementFactory(project).createAnnotationFromText(
|
|
||||||
"@" + KOTLIN_SIGNATURE_ANNOTATION + "(value=\"" + newSignature + "\")", null).getParameterList().getAttributes();
|
|
||||||
|
|
||||||
new WriteCommandAction(project){
|
|
||||||
@Override
|
|
||||||
protected void run(final Result result) throws Throwable {
|
|
||||||
ExternalAnnotationsManager.getInstance(project).deannotate(method, KOTLIN_SIGNATURE_ANNOTATION);
|
|
||||||
ExternalAnnotationsManager.getInstance(project).annotateExternally(
|
|
||||||
method, KOTLIN_SIGNATURE_ANNOTATION, method.getContainingFile(), nameValuePairs);
|
|
||||||
}
|
|
||||||
}.execute();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user