Package org.eclipse.sapphire.ui.swt.gef.layout

Examples of org.eclipse.sapphire.ui.swt.gef.layout.SapphireStackLayout


        SapphireSequenceLayout sequenceLayout = new SapphireSequenceLayout((SequenceLayoutDef)layout);
        this.setLayoutManager(sequenceLayout);
      }
      else
      {
        SapphireStackLayout sapphireStackLayout = new SapphireStackLayout((SequenceLayoutDef)this.layout);
        this.setLayoutManager(sapphireStackLayout);
      }
    }
    setBorder(new RectangleBorder(this.rectPresentation, this.resourceCache));
  }
View Full Code Here


      SapphireSequenceLayout sapphireSequenceLayout = (SapphireSequenceLayout)this.getLayoutManager();
      return sapphireSequenceLayout.calculateMaximumSize(this);
    }
    else if (this.getLayoutManager() instanceof SapphireStackLayout)
    {
      SapphireStackLayout sapphireStackLayout = (SapphireStackLayout)this.getLayoutManager();
      return sapphireStackLayout.calculateMaximumSize(this);
    }
    else
    {
      return super.getMaximumSize();
    }
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.ui.swt.gef.layout.SapphireStackLayout

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.