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


Java BalloonBuilder.setFadeoutTime方法代码示例

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


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

示例1: showBalloon

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private void showBalloon(Editor editor, String replacementPreviewText) {
  if (ApplicationManager.getApplication().isUnitTestMode()) {
    myReplacementPreviewText = replacementPreviewText;
    return;
  }

  ReplacementView replacementView = new ReplacementView(replacementPreviewText);

  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance().createBalloonBuilder(replacementView);
  balloonBuilder.setFadeoutTime(0);
  balloonBuilder.setFillColor(IdeTooltipManager.GRAPHITE_COLOR);
  balloonBuilder.setAnimationCycle(0);
  balloonBuilder.setHideOnClickOutside(false);
  balloonBuilder.setHideOnKeyOutside(false);
  balloonBuilder.setHideOnAction(false);
  balloonBuilder.setCloseButtonEnabled(true);
  myReplacementBalloon = balloonBuilder.createBalloon();

  myReplacementBalloon.show(new ReplacementBalloonPositionTracker(editor), Balloon.Position.below);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:21,代码来源:LivePreview.java

示例2: showWrongJavaVersionBaloon

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private static void showWrongJavaVersionBaloon() {
  // Just a copy paste from ChangesViewBaloonProblemNotifier
  final JFrame frame = WindowManager.getInstance().findVisibleFrame();
  final JComponent component = frame.getRootPane();
  if (component == null) {
    return;
  }
  final Rectangle rect = component.getVisibleRect();
  final Point p = new Point(rect.x + 30, rect.y + rect.height - 10);
  final RelativePoint point = new RelativePoint(component, p);

  final MessageType messageType = MessageType.ERROR;
  final BalloonBuilder builder = JBPopupFactory.getInstance()
    .createHtmlTextBalloonBuilder(IdeBundle.message("use.sun.jdk.prompt"), messageType.getDefaultIcon(), messageType.getPopupBackground(),
                                  null);
  builder.setFadeoutTime(-1);
  builder.createBalloon().show(point, Balloon.Position.above);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:19,代码来源:OpenJdkNotifier.java

示例3: showBalloon

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private void showBalloon(FindResult cursor, Editor editor, String replacementPreviewText) {
  if (ApplicationManager.getApplication().isUnitTestMode()) {
    myReplacementPreviewText = replacementPreviewText;
    return;
  }

  ReplacementView replacementView = new ReplacementView(replacementPreviewText, cursor);

  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance().createBalloonBuilder(replacementView);
  balloonBuilder.setFadeoutTime(0);
  balloonBuilder.setFillColor(IdeTooltipManager.GRAPHITE_COLOR);
  balloonBuilder.setAnimationCycle(0);
  balloonBuilder.setHideOnClickOutside(false);
  balloonBuilder.setHideOnKeyOutside(false);
  balloonBuilder.setHideOnAction(false);
  balloonBuilder.setCloseButtonEnabled(true);
  myReplacementBalloon = balloonBuilder.createBalloon();

  myReplacementBalloon.show(new ReplacementBalloonPositionTracker(editor), Balloon.Position.above);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:21,代码来源:LivePreview.java

示例4: showBalloon

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private void showBalloon(Editor editor, String replacementPreviewText) {
  if (ApplicationManager.getApplication().isUnitTestMode()) {
    myReplacementPreviewText = replacementPreviewText;
    return;
  }

  ReplacementView replacementView = new ReplacementView(replacementPreviewText);

  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance().createBalloonBuilder(replacementView);
  balloonBuilder.setFadeoutTime(0);
  balloonBuilder.setFillColor(IdeTooltipManager.GRAPHITE_COLOR);
  balloonBuilder.setAnimationCycle(0);
  balloonBuilder.setHideOnClickOutside(false);
  balloonBuilder.setHideOnKeyOutside(false);
  balloonBuilder.setHideOnAction(false);
  balloonBuilder.setCloseButtonEnabled(true);
  myReplacementBalloon = balloonBuilder.createBalloon();

  myReplacementBalloon.show(new ReplacementBalloonPositionTracker(editor), Balloon.Position.above);
}
 
开发者ID:consulo,项目名称:consulo,代码行数:21,代码来源:LivePreview.java

示例5: showError

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private static void showError(final JTextField field, final String message) {
  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance()
    .createHtmlTextBalloonBuilder(message, MessageType.ERROR.getDefaultIcon(), MessageType.ERROR.getPopupBackground(), null);
  balloonBuilder.setFadeoutTime(1500);
  final Balloon balloon = balloonBuilder.createBalloon();
  final Rectangle rect = field.getBounds();
  final Point p = new Point(0, rect.height);
  final RelativePoint point = new RelativePoint(field, p);
  balloon.show(point, Balloon.Position.below);
  Disposer.register(ProjectManager.getInstance().getDefaultProject(), balloon);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:GeneralCodeStylePanel.java

示例6: showStatus

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private static void showStatus(final Component component, final String message, MessageType messageType) {
  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance()
    .createHtmlTextBalloonBuilder(message, messageType.getDefaultIcon(),
                                  messageType.getPopupBackground(), null);
  balloonBuilder.setFadeoutTime(5000);
  final Balloon balloon = balloonBuilder.createBalloon();
  final Rectangle rect = component.getBounds();
  final Point p = new Point(rect.x, rect.y + rect.height);
  final RelativePoint point = new RelativePoint(component, p);
  balloon.show(point, Balloon.Position.below);
  Disposer.register(ProjectManager.getInstance().getDefaultProject(), balloon);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:ManageCodeStyleSchemesDialog.java

示例7: showError

import com.intellij.openapi.ui.popup.BalloonBuilder; //导入方法依赖的package包/类
private static void showError(final JTextField field, final String message) {
  BalloonBuilder balloonBuilder = JBPopupFactory.getInstance()
          .createHtmlTextBalloonBuilder(message, MessageType.ERROR.getDefaultIcon(), MessageType.ERROR.getPopupBackground(), null);
  balloonBuilder.setFadeoutTime(1500);
  final Balloon balloon = balloonBuilder.createBalloon();
  final Rectangle rect = field.getBounds();
  final Point p = new Point(0, rect.height);
  final RelativePoint point = new RelativePoint(field, p);
  balloon.show(point, Balloon.Position.below);
  Disposer.register(ProjectManager.getInstance().getDefaultProject(), balloon);
}
 
开发者ID:consulo,项目名称:consulo,代码行数:12,代码来源:GeneralCodeStylePanel.java


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