本文整理汇总了Java中com.intellij.ui.awt.RelativePoint.getSouthWestOf方法的典型用法代码示例。如果您正苦于以下问题:Java RelativePoint.getSouthWestOf方法的具体用法?Java RelativePoint.getSouthWestOf怎么用?Java RelativePoint.getSouthWestOf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.ui.awt.RelativePoint
的用法示例。
在下文中一共展示了RelativePoint.getSouthWestOf方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: showPopup
import com.intellij.ui.awt.RelativePoint; //导入方法依赖的package包/类
private void showPopup(boolean mouseClick) {
ApplicationManager.getApplication().assertIsDispatchThread();
if (myPopup == null || myPopup.isDisposed()) return;
if (mouseClick && myPanel.isShowing()) {
final RelativePoint swCorner = RelativePoint.getSouthWestOf(myPanel);
final int yOffset = canPlaceBulbOnTheSameLine(myEditor) ? 0 : myEditor.getLineHeight() - (myEditor.isOneLineMode() ? SMALL_BORDER_SIZE : NORMAL_BORDER_SIZE);
myPopup.show(new RelativePoint(swCorner.getComponent(), new Point(swCorner.getPoint().x, swCorner.getPoint().y + yOffset)));
}
else {
myPopup.showInBestPositionFor(myEditor);
}
myPopupShown = true;
}
示例2: showTextBelow
import com.intellij.ui.awt.RelativePoint; //导入方法依赖的package包/类
public static void showTextBelow(JComponent component, String text) {
final RelativePoint calloutPoint = RelativePoint.getSouthWestOf(component);
calloutPoint.getPoint().x += 5;
Callout.showText(calloutPoint, Callout.SOUTH_EAST, text);
}