/* * Copyright 2000-2009 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 com.intellij.ide.actions; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.CommonDataKeys; import com.intellij.openapi.actionSystem.PlatformDataKeys; import com.intellij.openapi.actionSystem.PopupAction; import com.intellij.openapi.editor.Editor; import com.intellij.openapi.ui.popup.JBPopupFactory; import com.intellij.openapi.project.DumbAware; import com.intellij.ui.awt.RelativePoint; import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; /** * @author Vladimir Kondratyev */ public class ShowPopupMenuAction extends AnAction implements DumbAware, PopupAction { public ShowPopupMenuAction() { setEnabledInModalContext(true); } public void actionPerformed(AnActionEvent e) { final RelativePoint relPoint = JBPopupFactory.getInstance().guessBestPopupLocation(e.getDataContext()); KeyboardFocusManager focusManager = KeyboardFocusManager.getCurrentKeyboardFocusManager(); Component focusOwner = focusManager.getFocusOwner(); Point popupMenuPoint = relPoint.getPoint(focusOwner); final Editor editor = e.getData(CommonDataKeys.EDITOR); int coord = editor != null ? Math.max(0, popupMenuPoint.y - 1) //To avoid cursor jump to the line below. http://www.jetbrains.net/jira/browse/IDEADEV-10644 : popupMenuPoint.y; focusOwner.dispatchEvent( new MouseEvent( focusOwner, MouseEvent.MOUSE_PRESSED, System.currentTimeMillis(), 0, popupMenuPoint.x, coord, 1, true ) ); } public void update(AnActionEvent e) { KeyboardFocusManager focusManager = KeyboardFocusManager.getCurrentKeyboardFocusManager(); e.getPresentation().setEnabled(focusManager.getFocusOwner() instanceof JComponent); } }