本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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();
}
}
示例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;
}
示例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;
}
}
示例7: isHintVisible
import com.intellij.openapi.ui.popup.JBPopup; //导入方法依赖的package包/类
@Contract("!null->true")
private static boolean isHintVisible(JBPopup hint) {
return hint != null && hint.isVisible();
}
示例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);
}
}