use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class IncludeCollectionField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
VerticalLayout layout = new VerticalLayout();
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class AbstractStrategyField method initContent.
/* (non-Javadoc)
* @see com.vaadin.ui.CustomField#initContent()
*/
@Override
public Component initContent() {
VerticalLayout layout = new VerticalLayout();
layout.addComponent(combo);
layout.addComponent(table);
layout.addComponent(toolbar);
layout.setComponentAlignment(toolbar, Alignment.MIDDLE_RIGHT);
return layout;
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class TopologyUI method addContentLayout.
private void addContentLayout() {
m_layout = new VerticalLayout();
m_layout.setSizeFull();
// Set expand ratio so that all extra space is allocated to this vertical component
m_rootLayout.addComponent(m_layout);
m_rootLayout.setExpandRatio(m_layout, 1);
m_mapLayout = createMapLayout();
m_mapLayout.setSizeFull();
m_menuBar = new TopologyMenuBar();
m_contextMenu = new TopologyContextMenu();
updateMenu();
if (m_widgetManager.widgetCount() != 0) {
updateWidgetView(m_widgetManager);
} else {
m_layout.addComponent(m_mapLayout);
}
// Set expand ratio so that extra space is not allocated to this vertical component
if (m_showHeader) {
m_rootLayout.addComponent(m_menuBar, 1);
} else {
m_rootLayout.addComponent(m_menuBar, 0);
}
}
use of com.vaadin.ui.VerticalLayout in project opennms by OpenNMS.
the class TopologyUI method createLayouts.
private void createLayouts() {
m_rootLayout = new VerticalLayout();
m_rootLayout.setSizeFull();
m_rootLayout.addStyleName("root-layout");
m_rootLayout.addStyleName("topo-root-layout");
setContent(m_rootLayout);
addHeader();
addContentLayout();
addNoContentWindow();
}
use of com.vaadin.ui.VerticalLayout in project Activiti by Activiti.
the class TaskInvolvedPeopleComponent method initLayout.
protected void initLayout() {
this.layout = new VerticalLayout();
setCompositionRoot(layout);
}
Aggregations