ElementBuilder
.org.eclipse.rap.ui.branding
extension point. If there is no default Layout defined a fallback mechanism will be used to show the standard Layout.
<!ELEMENT extension (layout+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT layoutSet EMPTY>
<!ATTLIST layoutSet
id CDATA #REQUIRED
name CDATA #IMPLIED
class CDATA #REQUIRED
overridesId IDREF #IMPLIED>
<!ELEMENT layout (layoutSet+)>
<!ATTLIST layout
id CDATA #REQUIRED
name CDATA #IMPLIED>
<extension point="org.eclipse.rap.ui.layouts"> <layout id="org.eclipse.presentation.example.layout" name="Example Layout"> <layoutSet class="org.eclipse.rap.ui.interactiondesign.example.layoutset.HeaderLayoutSet2" id="header.layoutset" name="Header2"> </layoutSet> <layoutSet class="org.eclipse.rap.ui.interactiondesign.example.layoutset.MacBarLayoutSet2" id="macBar.layoutset" name="MacBar 2"> </layoutSet> <layoutSet class="org.eclipse.rap.ui.interactiondesign.example.layoutset.FooterLayoutSet2" id="footer.layoutset" name="Footer"> </layoutSet> <layoutSet class="org.eclipse.rap.ui.interactiondesign.example.layoutset.NavigationPaneLayoutSet2" id="navigationpane.layoutset" name="NavigationPane"> </layoutSet> </layout> </extension>
ILayoutSetInitializer
interface. The method within is called during the plugin activation to initialize components like images or fonts for this LayoutSet. This implementation can look like this:
public class HeaderLayoutSet implements ILayoutSetInitializer {
public void initializeLayoutSet( LayoutSet layoutSet ) {
layoutSet.addImagePath( HeaderBuilderData.LEFT, "icons/headerLeft.png" );
layoutSet.addImagePath( HeaderBuilderData.CENTER, "icons/headerCenter.png" );
layoutSet.addImagePath( HeaderBuilderData.RIGHT, "icons/headerRight.png" );
layoutSet.addImagePath( HeaderBuilderData.LOGO, "icons/headerLogo.png" );
addHeaderPositions( layoutSet );
}
}
org.eclipse.rap.presentation.example
project. This project defines two Layouts and a bunch of LayoutSets. They look not pretty but they do their job.
Copyright (c) 2008, 2015 EclipseSource and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Eclipse Public License v1.0 which accompanies
this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html