Examples of IWorkbenchWindowConfigurer


Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

   
  /**
   * {@inheritDoc}
   */
    public void preWindowOpen() {
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
       
        configurer.setShowCoolBar(true);
        configurer.setShowMenuBar(true);
        configurer.setShowStatusLine(true);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

      IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
  }

  public void preWindowOpen() {
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    configurer.setInitialSize(new Point(640, 480));
    configurer.setShowCoolBar(true);
    configurer.setShowStatusLine(true);
    configurer.setTitle("IntiMap");
  }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

    public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
        return new ApplicationActionBarAdvisor(configurer);
    }
   
    public void preWindowOpen() {
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
        configurer.setInitialSize(new Point(400, 300));
        configurer.setShowCoolBar(true);
        configurer.setShowStatusLine(false);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

     * is called immediately after this method is called.
     */
    @Override
    public void preWindowOpen() {

        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
        configurer.setInitialSize(new Point(900, 700));
        configurer.setShowCoolBar(true);
        configurer.setShowStatusLine(true);
        // configurer.setShowPerspectiveBar(true);
        configurer.setShowProgressIndicator(true);
        configurer.setShowFastViewBars(true);

        PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

    public void preWindowOpen() {
//        logger.debug("window pre-open");

        PlatformUI.getPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_TRADITIONAL_STYLE_TABS, false);

        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();

        // get window size
        int width = 1024;
        try {
//            width = Integer.parseInt(preferences.getValue(IPreferenceConstants.DEFAULT_WINDOW_WIDTH).getValue());
//            logger.trace("width: " + width);
        }
        catch(Exception e) {
            // ignore
        }
        int height = 768;
        try {
//            height = Integer.parseInt(preferences.getValue(IPreferenceConstants.DEFAULT_WINDOW_HEIGHT).getValue());
//            logger.trace("height: " + height);
        }
        catch(Exception e) {
            // ignore
        }

        configurer.setInitialSize(new Point(width, height));

//        configurer.setShowCoolBar(true);
//        configurer.setShowStatusLine(true);
//        configurer.setShowProgressIndicator(true);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

  public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
  }

  public void preWindowOpen() {
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    // configurer.setInitialSize(new Point(400, 300));
    configurer.setShowCoolBar(false);
    configurer.setShowStatusLine(false);
    configurer.setTitle("Flash Doctors");
  }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

   
  /**
   * {@inheritDoc}
   */
    public void preWindowOpen() {
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
       
        configurer.setShowCoolBar(true);
        configurer.setShowMenuBar(true);
        configurer.setShowStatusLine(true);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

    public ActionBarAdvisor createActionBarAdvisor(IActionBarConfigurer configurer) {
        return new ApplicationActionBarAdvisor(configurer);
    }
   
    public void preWindowOpen() {
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
        configurer.setInitialSize(new Point(400, 300));
        configurer.setShowCoolBar(false);
        configurer.setShowStatusLine(false);
    }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

      IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
  }

  public void preWindowOpen() {
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    configurer.setTitle("MooApps :: MooSharee");
    configurer.setInitialSize(new Point(800, 600));
    configurer.setShowCoolBar(false);
    configurer.setShowStatusLine(false);
  }
View Full Code Here

Examples of org.eclipse.ui.application.IWorkbenchWindowConfigurer

      IActionBarConfigurer configurer) {
    return new ApplicationActionBarAdvisor(configurer);
  }

  public void preWindowOpen() {
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
    configurer.setInitialSize(new Point(400, 300));
    configurer.setShowCoolBar(false);
    configurer.setShowStatusLine(false);
    configurer.setTitle("RFR Application");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.