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


Java JBPopup.isVisible方法代码示例

本文整理汇总了Java中com.intellij.openapi.ui.popup.JBPopup.isVisible方法的典型用法代码示例。如果您正苦于以下问题:Java JBPopup.isVisible方法的具体用法?Java JBPopup.isVisible怎么用?Java JBPopup.isVisible使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.intellij.openapi.ui.popup.JBPopup的用法示例。


在下文中一共展示了JBPopup.isVisible方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: discoverPopup

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
private static Component discoverPopup(final DataKey<JBPopup> datakey, Component focusOwner) {
  if (focusOwner == null) {
    focusOwner = KeyboardFocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
  }

  if (focusOwner == null) return null;

  final DataContext dataContext = DataManager.getInstance().getDataContext(focusOwner);
  if (dataContext == null) return null;

  final JBPopup popup = datakey.getData(dataContext);
  if (popup != null && popup.isVisible()) {
    return popup.getContent();
  }

  return null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:PopupPositionManager.java

示例2: cancelPopups

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
private static boolean cancelPopups(final JBPopup[] activePopup) {
  for (JBPopup popup : activePopup) {
    if (popup != null && popup.isVisible()) {
      popup.cancel();
      return true;
    }
  }
  return false;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:SearchUtil.java

示例3: getDocInfoHint

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
@Nullable
public JBPopup getDocInfoHint() {
  if (myDocInfoHintRef == null) return null;
  JBPopup hint = myDocInfoHintRef.get();
  if (hint == null || !hint.isVisible() && !ApplicationManager.getApplication().isUnitTestMode()) {
    myDocInfoHintRef = null;
    return null;
  }
  return hint;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:DocumentationManager.java

示例4: actionPerformed

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
@Override
public void actionPerformed(AnActionEvent e) {
  super.actionPerformed(e);
  final JBPopup hint = myHint;
  if (hint != null && hint.isVisible()) {
    hint.cancel();
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:9,代码来源:DocumentationComponent.java

示例5: getOldHector

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
@Nullable
private JBPopup getOldHector(){
  if (myHectorRef == null) return null;
  final JBPopup hector = myHectorRef.get();
  if (hector == null || !hector.isVisible()){
    myHectorRef = null;
    return null;
  }
  return hector;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:11,代码来源:HectorComponent.java

示例6: showPopupIfNeedTo

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
private static boolean showPopupIfNeedTo(@NotNull JBPopup popup, @NotNull RelativePoint popupPosition) {
  if (!popup.isDisposed() && !popup.isVisible()) {
    popup.show(popupPosition);
    return true;
  }
  else {
    return false;
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:ShowUsagesAction.java

示例7: isHintVisible

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
@Contract("!null->true")
private static boolean isHintVisible(JBPopup hint) {
  return hint != null && hint.isVisible();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:HintUpdateSupply.java

示例8: doShowJavaDocInfo

import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
private void doShowJavaDocInfo(@NotNull final PsiElement element,
                               boolean requestFocus,
                               PopupUpdateProcessor updateProcessor,
                               final PsiElement originalElement,
                               @Nullable final Runnable closeCallback) {
  Project project = getProject(element);
  if (!project.isOpen()) return;

  storeOriginalElement(project, originalElement, element);

  myPreviouslyFocused = WindowManagerEx.getInstanceEx().getFocusedComponent(project);

  JBPopup _oldHint = getDocInfoHint();
  if (PreviewManager.SERVICE.preview(myProject, DocumentationPreviewPanelProvider.ID, Couple.of(element, originalElement), requestFocus) != null) {
    return;
  }

  if (myToolWindow == null && PropertiesComponent.getInstance().isTrueValue(SHOW_DOCUMENTATION_IN_TOOL_WINDOW)) {
    createToolWindow(element, originalElement);
  }
  else if (myToolWindow != null) {
    Content content = myToolWindow.getContentManager().getSelectedContent();
    if (content != null) {
      DocumentationComponent component = (DocumentationComponent)content.getComponent();
      boolean sameElement = element.getManager().areElementsEquivalent(component.getElement(), element);
      if (sameElement) {
        JComponent preferredFocusableComponent = content.getPreferredFocusableComponent();
        // focus toolwindow on the second actionPerformed
        boolean focus = requestFocus || CommandProcessor.getInstance().getCurrentCommand() != null;
        if (preferredFocusableComponent != null && focus) {
          IdeFocusManager.getInstance(myProject).requestFocus(preferredFocusableComponent, true);
        }
      }
      if (!sameElement || !component.isUpToDate()) {
        content.setDisplayName(getTitle(element, true));
        fetchDocInfo(getDefaultCollector(element, originalElement), component, true);
      }
    }

    if (!myToolWindow.isVisible()) {
      myToolWindow.show(null);
    }
  }
  else if (_oldHint != null && _oldHint.isVisible() && _oldHint instanceof AbstractPopup) {
    DocumentationComponent oldComponent = (DocumentationComponent)((AbstractPopup)_oldHint).getComponent();
    fetchDocInfo(getDefaultCollector(element, originalElement), oldComponent);
  }
  else {
    showInPopup(element, requestFocus, updateProcessor, originalElement, closeCallback);
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:52,代码来源:DocumentationManager.java


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