Package org.cishell.templates.wizards.pagepanels

Examples of org.cishell.templates.wizards.pagepanels.SetupPlatformsPanel


  }
 
  public void createControl(Composite parent) {
    final ScrolledComposite scrollingContainer =
      new ScrolledComposite(parent, SWT.V_SCROLL);
    final SetupPlatformsPanel setupPlatformsPanel =
      new SetupPlatformsPanel(scrollingContainer,
                  SWT.NONE,
                  this.executableNameOption,
                  this.platformOptionProvider);
    this.setupPlatformsPanel = setupPlatformsPanel;
   
    // TODO: This control listener should maybe be on setupPlatformsPanel?
    scrollingContainer.addControlListener(new ControlAdapter() {
      public void controlResized(ControlEvent controlEvent) {
        scrollingContainer.setMinSize(
          setupPlatformsPanel.computeSize(SWT.DEFAULT, SWT.DEFAULT));
      }
    });
   
    scrollingContainer.setContent(setupPlatformsPanel);
    scrollingContainer.setExpandHorizontal(true);
View Full Code Here

TOP

Related Classes of org.cishell.templates.wizards.pagepanels.SetupPlatformsPanel

Copyright © 2018 www.massapicom. 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.