Package org.eclipse.ui.part

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


   
    Composite externalGraphicPage;
    MarkEditorPage markComponent;
   
    private void createGraphicBook(Composite parent) {
        graphicBook = new PageBook(parent, SWT.NONE);
        GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
        gd.verticalSpan = 2;
        graphicBook.setLayoutData(gd);
       
        markComponent = new MarkEditorPage();
View Full Code Here


        pageBook.showPage(treeview);
        thumbnail.setVisible(false);
    }

    private void createPageBook(Composite parent) {
        pageBook = new PageBook(parent, SWT.NONE);
        createTreeview(pageBook);
        createOverview(pageBook);
        showTreeview();
    }
View Full Code Here

      GridLayout layout2 = new GridLayout(1, false);
      layout2.marginHeight = 0;
      layout2.marginWidth = 0;
      parent.setLayout(layout2);
      Composite owner = new Composite(parent, SWT.NONE);
      pageBook = new PageBook(parent, SWT.NONE);
      final Browser lm = new Browser(pageBook, SWT.NONE);
      lm.setText("<h3>No open tabs</h3> <p>To show Blobs from Blob Storage, please:<br>1) Choose connection configuration between 'manipulate with local server' or 'manipulate with development server';<br>2) click either 'add view'.");
      viewHolder = new CTabFolder(pageBook, SWT.NONE | SWT.CLOSE
          | SWT.BORDER);
      pageBook.showPage(lm);
View Full Code Here

      GridLayout layout2 = new GridLayout(1, false);
      layout2.marginHeight = 0;
      layout2.marginWidth = 0;
      parent.setLayout(layout2);
      Composite owner = new Composite(parent, SWT.NONE);
      pageBook = new PageBook(parent, SWT.NONE);
      final Browser lm = new Browser(pageBook, SWT.NONE);
      lm.setText("<h3>No open tabs</h3> <p>To show Data Store entities, please:<br>1) enter the kind into the text field;<br>2) Choose connection configuration between 'manipulate with local server' or 'manipulate with development server';<br>3) click either 'add view', or press 'enter'.</p><i>Hint:</i> push Ctrl-Space in the text field to display the known kinds.");
      viewHolder = new CTabFolder(pageBook, SWT.NONE | SWT.CLOSE
          | SWT.BORDER);
      pageBook.showPage(lm);
View Full Code Here

      }

      // add the grammar specific generation options
      //
      {
        pageBook = new PageBook(containerGroup, SWT.NONE);
        pageBook.setLayoutData(new GridData(GridData.FILL_BOTH));
        xsdOptionsPanel = new XSDOptionsPanel(this, pageBook);
        dtdOptionsPanel = new DTDOptionsPanel(this, pageBook);
        pageBook.showPage(xsdOptionsPanel);
      }
View Full Code Here

    buttons = formToolkit.createComposite(form.getHead(), SWT.NONE);
    buttons.setBackgroundMode(SWT.INHERIT_DEFAULT);
    // buttons.setBackground(null);
    buttons.setLayout(new GridLayout(7, false));
    form.setHeadClient(buttons);
    pageBook = new PageBook(form.getBody(), SWT.NONE);
    pageBook.setLayoutData(GridDataFactory.fillDefaults().grab(true, true)
        .create());
    viewerHolder = formToolkit.createComposite(pageBook);
    // pageBook.showPage(overview);
    viewerHolder.setLayoutData(GridDataFactory.fillDefaults().grab(true,
View Full Code Here

    radioButton[1] = new Button(this, SWT.RADIO);
    radioButton[1].setText(XMLUIMessages._UI_RADIO_BUTTON_SELECT_FROM_CATALOG);
    radioButton[1].setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
    radioButton[1].addSelectionListener(this);

    pageBook = new PageBook(this, SWT.NONE);
    pageBook.setLayoutData(new GridData(GridData.FILL_BOTH));

    selectSingleFileView = new MySelectSingleFileView(pageBook);

    ICatalog xmlCatalog = XMLCorePlugin.getDefault().getDefaultXMLCatalog();
View Full Code Here

    // Group namespaceInfoGroup = new Group(this, SWT.NONE);
    // namespaceInfoGroup.setText("Namespace Declarations");
    // //XMLCommonUIPlugin.getInstance().getString("_UI_LABEL_XML_SCHEMA_INFORMATION"));
    // namespaceInfoGroup.setLayout(new GridLayout(2, false));
    // namespaceInfoGroup.setLayoutData(new GridData(GridData.FILL_BOTH));
    pageBook = new PageBook(this, SWT.NONE);
    pageBook.setLayoutData(new GridData(GridData.FILL_BOTH));

    tableSection = new Composite(pageBook, SWT.NONE);
    tableSection.setLayout(new GridLayout());
    Label label = new Label(tableSection, SWT.NONE);
View Full Code Here

      tbm.add(aci);
    }

    @Override
    public void createControl(Composite parent) {
      pageBook = new PageBook(parent, SWT.NONE);
      outline = getViewer().createControl(pageBook);
      pageBook.showPage(outline);
      createZoomActions();
      configureOutlineViewer();
      hookOutlineViewer();
View Full Code Here

    super();
    listeners = new ArrayList<ISelectionChangedListener>();
  }

  public void createControl(Composite parent) {
    pagebook = new PageBook(parent, SWT.NONE);
  }
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.