本文整理汇总了Java中com.intellij.openapi.ui.popup.ListPopup.showCenteredInCurrentWindow方法的典型用法代码示例。如果您正苦于以下问题:Java ListPopup.showCenteredInCurrentWindow方法的具体用法?Java ListPopup.showCenteredInCurrentWindow怎么用?Java ListPopup.showCenteredInCurrentWindow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.openapi.ui.popup.ListPopup
的用法示例。
在下文中一共展示了ListPopup.showCenteredInCurrentWindow方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: actionPerformed
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
@Override
public void actionPerformed(AnActionEvent e) {
JComponent button = (JComponent)e.getPresentation().getClientProperty(CUSTOM_COMPONENT_PROPERTY);
if (button == null) {
Component contextComponent = e.getData(PlatformDataKeys.CONTEXT_COMPONENT);
JRootPane rootPane = UIUtil.getParentOfType(JRootPane.class, contextComponent);
if (rootPane != null) {
button = (ComboBoxButton)
UIUtil.uiTraverser().withRoot(rootPane).bfsTraversal().filter(new Condition<Component>() {
@Override
public boolean value(Component component) {
return component instanceof ComboBoxButton && ((ComboBoxButton)component).getMyAction() == ComboBoxAction.this;
}
}).first();
}
if (button == null) return;
}
if (!button.isShowing()) return;
if (button instanceof ComboBoxButton) {
((ComboBoxButton)button).showPopup();
} else {
DataContext context = e.getDataContext();
Project project = e.getProject();
if (project == null) return;
DefaultActionGroup group = createPopupActionGroup(button);
ListPopup popup = JBPopupFactory.getInstance().createActionGroupPopup(
myPopupTitle, group, context, false, shouldShowDisabledActions(), false, null, getMaxRows(), getPreselectCondition());
popup.setMinimumSize(new Dimension(getMinWidth(), getMinHeight()));
popup.showCenteredInCurrentWindow(project);
}
}
示例2: showPopup
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(AnActionEvent e, ListPopup popup) {
Project project = e.getProject();
if (project != null) {
popup.showCenteredInCurrentWindow(project);
}
else {
popup.showInBestPositionFor(e.getDataContext());
}
}
示例3: actionPerformed
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
@Override
public void actionPerformed(final AnActionEvent e) {
final ListPopup popup = JBPopupFactory.getInstance()
.createActionGroupPopup("Play Saved Macros", new MacrosGroup(), e.getDataContext(), JBPopupFactory.ActionSelectionAid.SPEEDSEARCH,
false);
final Project project = e.getProject();
if (project != null ) {
popup.showCenteredInCurrentWindow(project);
} else {
popup.showInFocusCenter();
}
}
示例4: showPopup
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(DataContext context) {
ListPopup popup = createPopup(context);
Project project = CommonDataKeys.PROJECT.getData(context);
if (project != null) {
popup.showCenteredInCurrentWindow(project);
}
else {
popup.showInBestPositionFor(context);
}
}
示例5: showPopup
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(AnActionEvent e, ListPopup popup) {
popup.showCenteredInCurrentWindow(e.getData(PlatformDataKeys.PROJECT));
}
示例6: showPopup
import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(AnActionEvent e, ListPopup popup) {
popup.showCenteredInCurrentWindow(e.getData(CommonDataKeys.PROJECT));
}