當前位置: 首頁>>代碼示例>>Java>>正文


Java IdeGlassPaneImpl.setVisible方法代碼示例

本文整理匯總了Java中com.intellij.openapi.wm.impl.IdeGlassPaneImpl.setVisible方法的典型用法代碼示例。如果您正苦於以下問題:Java IdeGlassPaneImpl.setVisible方法的具體用法?Java IdeGlassPaneImpl.setVisible怎麽用?Java IdeGlassPaneImpl.setVisible使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.intellij.openapi.wm.impl.IdeGlassPaneImpl的用法示例。


在下文中一共展示了IdeGlassPaneImpl.setVisible方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: WelcomeFrame

import com.intellij.openapi.wm.impl.IdeGlassPaneImpl; //導入方法依賴的package包/類
public WelcomeFrame() {
  JRootPane rootPane = getRootPane();
  final WelcomeScreen screen = createScreen(rootPane);

  final IdeGlassPaneImpl glassPane = new IdeGlassPaneImpl(rootPane);
  setGlassPane(glassPane);
  glassPane.setVisible(false);
  setContentPane(screen.getWelcomePanel());
  setTitle(ApplicationNamesInfo.getInstance().getFullProductName());
  AppUIUtil.updateWindowIcon(this);

  ProjectManager.getInstance().addProjectManagerListener(new ProjectManagerAdapter() {
    @Override
    public void projectOpened(Project project) {
      dispose();
    }
  });

  myBalloonLayout = new BalloonLayoutImpl(rootPane.getLayeredPane(), new Insets(8, 8, 8, 8));

  myScreen = screen;
  setupCloseAction();
  new MnemonicHelper().register(this);
  myScreen.setupFrame(this);
}
 
開發者ID:lshain-android-source,項目名稱:tools-idea,代碼行數:26,代碼來源:WelcomeFrame.java

示例2: WelcomeFrame

import com.intellij.openapi.wm.impl.IdeGlassPaneImpl; //導入方法依賴的package包/類
public WelcomeFrame() {
  JRootPane rootPane = getRootPane();
  final WelcomeScreen screen = createScreen(rootPane);

  final IdeGlassPaneImpl glassPane = new IdeGlassPaneImpl(rootPane);
  setGlassPane(glassPane);
  glassPane.setVisible(false);
  setContentPane(screen.getWelcomePanel());
  setTitle(ApplicationNamesInfo.getInstance().getFullProductName());
  AppUIUtil.updateWindowIcon(this);

  ProjectManager.getInstance().addProjectManagerListener(new ProjectManagerAdapter() {
    @Override
    public void projectOpened(Project project) {
      dispose();
    }
  });

  myBalloonLayout = new BalloonLayoutImpl(rootPane, new Insets(8, 8, 8, 8));

  myScreen = screen;
  setupCloseAction(this);
  MnemonicHelper.init(this);
  myScreen.setupFrame(this);
  Disposer.register(ApplicationManager.getApplication(), new Disposable() {
    @Override
    public void dispose() {
      WelcomeFrame.this.dispose();
    }
  });
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:32,代碼來源:WelcomeFrame.java

示例3: FlatWelcomeFrame

import com.intellij.openapi.wm.impl.IdeGlassPaneImpl; //導入方法依賴的package包/類
@RequiredDispatchThread
public FlatWelcomeFrame() {
  final JRootPane rootPane = getRootPane();
  myScreen = new FlatWelcomeScreen(this);

  final IdeGlassPaneImpl glassPane = new IdeGlassPaneImpl(rootPane);

  setGlassPane(glassPane);
  glassPane.setVisible(false);
  //setUndecorated(true);
  setContentPane(myScreen);
  setDefaultTitle();
  AppUIUtil.updateWindowIcon(this);
  UIUtil.resetRootPaneAppearance(rootPane);
  setSize(TargetAWT.to(WelcomeFrameManager.getDefaultWindowSize()));
  setResizable(false);
  Point location = DimensionService.getInstance().getLocationNoRealKey(WelcomeFrame.DIMENSION_KEY);
  Rectangle screenBounds = ScreenUtil.getScreenRectangle(location != null ? location : new Point(0, 0));
  setLocation(new Point(screenBounds.x + (screenBounds.width - getWidth()) / 2, screenBounds.y + (screenBounds.height - getHeight()) / 3));

  ProjectManager.getInstance().addProjectManagerListener(new ProjectManagerAdapter() {
    @Override
    public void projectOpened(Project project) {
      Disposer.dispose(FlatWelcomeFrame.this);
    }
  }, this);

  myBalloonLayout = new WelcomeDesktopBalloonLayoutImpl(rootPane, JBUI.insets(8), myScreen.getMainWelcomePanel().myEventListener, myScreen.getMainWelcomePanel().myEventLocation);

  setupCloseAction(this);
  MnemonicHelper.init(this);
  Disposer.register(ApplicationManager.getApplication(), this);
}
 
開發者ID:consulo,項目名稱:consulo,代碼行數:34,代碼來源:FlatWelcomeFrame.java

示例4: FlatWelcomeFrame

import com.intellij.openapi.wm.impl.IdeGlassPaneImpl; //導入方法依賴的package包/類
public FlatWelcomeFrame() {
  final JRootPane rootPane = getRootPane();
  myScreen = new FlatWelcomeScreen();

  final IdeGlassPaneImpl glassPane = new IdeGlassPaneImpl(rootPane) {
    @Override
    public void addNotify() {
      super.addNotify();
      rootPane.remove(getProxyComponent());
      //noinspection SSBasedInspection
      SwingUtilities.invokeLater(new Runnable() {
        public void run() {
          JBProtocolCommand.handleCurrentCommand();
        }
      });
    }
  };

  setGlassPane(glassPane);
  glassPane.setVisible(false);
  //setUndecorated(true);
  setContentPane(myScreen.getWelcomePanel());
  setTitle("Welcome to " + ApplicationNamesInfo.getInstance().getFullProductName());
  AppUIUtil.updateWindowIcon(this);
  final int width = RecentProjectsManager.getInstance().getRecentProjectsActions(false).length == 0 ? 666 : 777;
  setSize(JBUI.size(width, 460));
  setResizable(false);
  //int x = bounds.x + (bounds.width - getWidth()) / 2;
  //int y = bounds.y + (bounds.height - getHeight()) / 2;
  Point location = DimensionService.getInstance().getLocation(WelcomeFrame.DIMENSION_KEY, null);
  Rectangle screenBounds = ScreenUtil.getScreenRectangle(location != null ? location : new Point(0, 0));
  setLocation(new Point(
    screenBounds.x + (screenBounds.width - getWidth()) / 2,
    screenBounds.y + (screenBounds.height - getHeight()) / 3
  ));

  //setLocation(x, y);
  ProjectManager.getInstance().addProjectManagerListener(new ProjectManagerAdapter() {
    @Override
    public void projectOpened(Project project) {
      dispose();
    }
  });

  myBalloonLayout = new BalloonLayoutImpl(rootPane, JBUI.insets(8));

  WelcomeFrame.setupCloseAction(this);
  MnemonicHelper.init(this);
  Disposer.register(ApplicationManager.getApplication(), new Disposable() {
    @Override
    public void dispose() {
      FlatWelcomeFrame.this.dispose();
    }
  });
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:56,代碼來源:FlatWelcomeFrame.java


注:本文中的com.intellij.openapi.wm.impl.IdeGlassPaneImpl.setVisible方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。