use of org.karnak.frontend.forwardnode.edit.source.component.GridSourceNode in project karnak by OsiriX-Foundation.
the class SourceView method buildComponentsLayout.
/**
* Create components, layout and add the layout of the view
*/
private void buildComponentsLayout() {
setSizeFull();
gridSourceNode = new GridSourceNode();
filter = new TextField();
newSourceNode = new Button(LABEL_NEW_SOURCE_NODE);
layoutFilterButton = new HorizontalLayout(filter, newSourceNode);
layoutFilterButton.setVerticalComponentAlignment(Alignment.START, filter);
layoutFilterButton.expand(filter);
setTextFieldFilter();
setButtonNewDestinationDICOM();
add(UIS.setWidthFull(layoutFilterButton), UIS.setWidthFull(gridSourceNode));
}
Aggregations