Package org.eclipse.sapphire.ui.forms.swt.internal

Examples of org.eclipse.sapphire.ui.forms.swt.internal.CompositePresentation


    }
   
    @Override
    public FormComponentPresentation createPresentation( final SwtPresentation parent, final Composite composite )
    {
        return new CompositePresentation( this, parent, composite );
    }
View Full Code Here


       
        final Composite innerComposite = new Composite( composite, SWT.NONE );
        innerComposite.setLayout( glayout( 2, 0, 0 ) );
        innerComposite.setLayoutData( gdfill() );
       
        final Presentation presentation = new CompositePresentation( this.part, null, innerComposite )
        {
            @Override
            public void layout()
            {
                super.layout();
               
                final IWizardContainer container = getContainer();
               
                if( container instanceof IWizardContainer2 )
                {
                    ( (IWizardContainer2) container ).updateSize();
                }
            }
        };
       
        presentation.render();
       
        final ISapphireDocumentation doc = this.part.definition().getDocumentation().content();
       
        if( doc != null )
        {
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.ui.forms.swt.internal.CompositePresentation

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.