Package org.eclipse.ui.part

Examples of org.eclipse.ui.part.PageBook$PageBookLayout


    });

    bindingContext.bindValue(SWTObservables.observeSelection(typeCombo), Observables.observeMapEntry(map, "type"), //$NON-NLS-1$
        new UpdateValueStrategy().setAfterConvertValidator(new ComboValidator(Messages.CloudFoundryServicePlanWizardPage_TEXT_SELECT_TYPE)), null);

    pageBook = new PageBook(composite, SWT.NONE);
    GridDataFactory.fillDefaults().grab(true, true).span(2, 1).applyTo(pageBook);

    planGroup = new Group(pageBook, SWT.BORDER);
    GridDataFactory.fillDefaults().grab(true, true).applyTo(planGroup);
    planGroup.setLayout(new GridLayout());
View Full Code Here


      GridData data = new GridData(GridData.FILL_BOTH);
      composite1.setLayoutData(data);
      GridLayout layout = new GridLayout();
      composite1.setLayout(layout);

      pageContainer = new PageBook(composite1, SWT.NONE);
      pageContainer.setLayoutData(new GridData(GridData.FILL_BOTH));

      if (fCatalogElement.getType() == ICatalogElement.TYPE_ENTRY) {
        CatalogElementPage entryPage = new CatalogEntryPage();
        entryPage.createControl(pageContainer);
View Full Code Here

    layout.marginHeight = 0;
    layout.marginWidth = 0;
    composite1.setLayout(layout);

    // createPageBookPanel(composite1);
    pageContainer = new PageBook(composite1, SWT.NONE);
    pageContainer.setLayoutData(new GridData(GridData.FILL_BOTH));

    // add pages for each type of catalog element
    createCatalogEntryButton();
    createRewriteButton();
View Full Code Here

            }
        };
       
        control.setLayout(new MigLayout("insets 0", "[fill][]", "[fill]"));

        pageBook = new PageBook(control, SWT.NO_SCROLL);
        pageBook.setLayoutData("cell 0 0,grow,width 200:100%:100%,height 18:75%:100%");
       
        placeholder = new Label( pageBook, SWT.SINGLE );
        placeholder.setText("Choose expression editor");
       
View Full Code Here

     * Creates the table control.
     *
     * @param parent The to be parent of the control.
     */
    public void createTableControl( Composite parent ) {
        book = new PageBook(parent, SWT.NONE);
        message = new Text(book, SWT.WRAP);
        messageBackground = message.getBackground();
        messageForeground = message.getForeground();
        createTableViewer(book);
    }
View Full Code Here

        super();
    }

    @Override
    public void createPartControl( Composite parent ) {
        book = new PageBook(parent, SWT.NONE);

        information = new Text(book, SWT.WRAP);
        information.setText(Messages.MosaicInfoView_DefaultViewText);
        book.showPage(information);
View Full Code Here

  }

  @Override
  public void createPartControl(Composite parent) {
    // the PageBook allows simple switching between two viewers
    pagebook = new PageBook(parent, SWT.NONE);

    tableviewer = new TableViewer(pagebook, SWT.NONE);
    tableviewer.setLabelProvider(new WorkbenchLabelProvider());
    tableviewer.setContentProvider(new ArrayContentProvider());
    tableviewer.setSelection(null);
View Full Code Here

    }
  }
 
  @Override
  public void createControl(Composite parent) {
    book = new PageBook(parent, SWT.NONE);
   
    messageText = new Text(book, SWT.WRAP | SWT.READ_ONLY);
    messageText.setBackground(parent.getShell().getBackground());
    messageText.setText(notAvailableMessage);
   
View Full Code Here

        super.init(site);
        this.pageSite = new PageSite( site );
    }
   
    public void createPartControl( Composite parent ) {
        book = new PageBook( parent, SWT.NONE );
        messagePage = new MessagePage();
        messagePage.setMessage("Please select a feature with the edit geometry tool");
        messagePage.init( pageSite );
        messagePage.createControl(book);
       
View Full Code Here

        layout = new FormData();
        layout.top = new FormAttachment(null, 0);
        layout.left = new FormAttachment(null, 1);
        layout.width = 200;

        book = new PageBook(parent, SWT.NONE);
        layout = new FormData();
        layout.top = new FormAttachment(0);
        layout.left = new FormAttachment(0);
        layout.right = new FormAttachment(100);
        layout.bottom = new FormAttachment(100);
View Full Code Here

TOP

Related Classes of org.eclipse.ui.part.PageBook$PageBookLayout

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.