当前位置: 首页>>代码示例>>Java>>正文


Java ListPopup.showCenteredInCurrentWindow方法代码示例

本文整理汇总了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);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:32,代码来源:ComboBoxAction.java

示例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());
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:QuickSwitchSchemeAction.java

示例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();
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:PlaySavedMacros.java

示例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);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:NewElementSamePlaceAction.java

示例5: showPopup

import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(AnActionEvent e, ListPopup popup) {
  popup.showCenteredInCurrentWindow(e.getData(PlatformDataKeys.PROJECT));
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:4,代码来源:QuickSwitchSchemeAction.java

示例6: showPopup

import com.intellij.openapi.ui.popup.ListPopup; //导入方法依赖的package包/类
protected void showPopup(AnActionEvent e, ListPopup popup) {
  popup.showCenteredInCurrentWindow(e.getData(CommonDataKeys.PROJECT));
}
 
开发者ID:consulo,项目名称:consulo,代码行数:4,代码来源:QuickSwitchSchemeAction.java


注:本文中的com.intellij.openapi.ui.popup.ListPopup.showCenteredInCurrentWindow方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。