Examples of TabContent


Examples of de.hwrberlin.it11.tsp.gui.components.TabContent

  /**
   * Erzeugt einen neuen TabContent, f�gt ihn zu einem neuen CTabItem hinzu und f�gt das CTabItems dem CTabFolder hinzu. Danach wird der Fokus auf
   * das neu kreierte Item gesetzt.
   */
  private void newTab() {
    TabContent content = new TabContent(_tabFolder, SWT.NONE);
    content.setLayout(new MigLayout("fill"));
    content.setLayoutData("hmin 0, wmin 0");

    CTabItem tabItem = new CTabItem(_tabFolder, SWT.NONE);
    tabItem.setText(content.getController().getProject().getTSPData().getName());
    tabItem.setControl(content);

    _tabFolder.setSelection(tabItem);
    if (_currentTabContent != null) {
      _currentTabContent.getController().getProject().getTSPData().removePropertyChangeListener(this);
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.