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


Java RelativePoint.fromScreen方法代码示例

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


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

示例1: guessBestPopupLocation

import com.intellij.ui.awt.RelativePoint; //导入方法依赖的package包/类
@NotNull
private RelativePoint guessBestPopupLocation(@NotNull Editor editor) {
  RelativePoint preferredLocation = JBPopupFactory.getInstance().guessBestPopupLocation(editor);
  if (myDimensionServiceKey == null) {
    return preferredLocation;
  }
  Dimension preferredSize = DimensionService.getInstance().getSize(myDimensionServiceKey, myProject);
  if (preferredSize == null) {
    return preferredLocation;
  }
  Rectangle preferredBounds = new Rectangle(preferredLocation.getScreenPoint(), preferredSize);
  Rectangle adjustedBounds = new Rectangle(preferredBounds);
  ScreenUtil.moveRectangleToFitTheScreen(adjustedBounds);
  if (preferredBounds.y - adjustedBounds.y <= 0) {
    return preferredLocation;
  }
  int adjustedY = preferredBounds.y - editor.getLineHeight() * 3 / 2 - preferredSize.height;
  if (adjustedY < 0) {
    return preferredLocation;
  }
  Point point = new Point(preferredBounds.x, adjustedY);
  Component component = preferredLocation.getComponent();
  if (component == null) {
    return RelativePoint.fromScreen(point);
  }
  SwingUtilities.convertPointFromScreen(point, component);
  return new RelativePoint(component, point);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:29,代码来源:AbstractPopup.java

示例2: getHintContainerShowPoint

import com.intellij.ui.awt.RelativePoint; //导入方法依赖的package包/类
AsyncResult<RelativePoint> getHintContainerShowPoint() {
  final AsyncResult<RelativePoint> result = new AsyncResult<RelativePoint>();
  if (myLocationCache == null) {
    if (myHintContainer != null) {
      final Point p = AbstractPopup.getCenterOf(myHintContainer, this);
      p.y -= myHintContainer.getVisibleRect().height / 4;
      myLocationCache = RelativePoint.fromScreen(p);
    } else {
      if (myContextComponent != null) {
        myLocationCache = JBPopupFactory.getInstance().guessBestPopupLocation(DataManager.getInstance().getDataContext(myContextComponent));
      } else {
        DataManager.getInstance().getDataContextFromFocus().doWhenDone(new Consumer<DataContext>() {
          @Override
          public void consume(DataContext dataContext) {
            myContextComponent = PlatformDataKeys.CONTEXT_COMPONENT.getData(dataContext);
            myLocationCache = JBPopupFactory.getInstance().guessBestPopupLocation(DataManager.getInstance().getDataContext(myContextComponent));
          }
        });
      }
    }
  }
  final Component c = myLocationCache.getComponent();
  if (!(c instanceof JComponent && c.isShowing())) {
    //Yes. It happens sometimes.
    // 1. Empty frame. call nav bar, select some package and open it in Project View
    // 2. Call nav bar, then Esc
    // 3. Hide all tool windows (Ctrl+Shift+F12), so we've got empty frame again
    // 4. Call nav bar. NPE. ta da
    final JComponent ideFrame = WindowManager.getInstance().getIdeFrame(getProject()).getComponent();
    final JRootPane rootPane = UIUtil.getRootPane(ideFrame);
    myLocationCache = JBPopupFactory.getInstance().guessBestPopupLocation(rootPane);
  }
  result.setDone(myLocationCache);
  return result;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:36,代码来源:NavBarPanel.java


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