use of org.entirej.applicationframework.rwt.application.form.containers.EJRWTSingleFormContainer in project rap by entirej.
the class EJRWTApplicationContainer method buildApplicationContainer.
protected void buildApplicationContainer() {
GridLayout gridLayout = new GridLayout(_layoutContainer.getColumns(), false);
_mainPane.setLayout(gridLayout);
List<EJCoreLayoutItem> items = _layoutContainer.getItems();
for (EJCoreLayoutItem item : items) {
switch(item.getType()) {
case GROUP:
createGroupLayout(_mainPane, (LayoutGroup) item);
break;
case SPACE:
createSpace(_mainPane, (LayoutSpace) item);
break;
case COMPONENT:
createComponent(_mainPane, (LayoutComponent) item);
break;
case SPLIT:
createSplitLayout(_mainPane, (SplitGroup) item);
break;
case TAB:
createTabLayout(_mainPane, (TabGroup) item);
break;
}
}
_mainPane.layout();
if (_formContainer != null) {
for (EJRWTApplicationComponent applicationComponent : _addedComponents) {
if (applicationComponent instanceof EJRWTFormSelectedListener) {
_formContainer.addFormSelectedListener(applicationComponent);
}
}
}
for (EJRWTSingleFormContainer singleFormContainer : _singleFormContainers) {
if (singleFormContainer.getForm() != null) {
fireFormOpened(singleFormContainer.getForm());
}
}
}
use of org.entirej.applicationframework.rwt.application.form.containers.EJRWTSingleFormContainer in project rap by entirej.
the class EJRWTApplicationContainer method createComponent.
private void createComponent(Composite parent, EJCoreLayoutItem.LayoutComponent component) {
try {
EJApplicationComponentRenderer applicationComponentRenderer = EJRendererFactory.getInstance().getApplicationComponentRenderer(component.getRenderer());
if (applicationComponentRenderer instanceof EJRWTFormContainer) {
if (_formContainer != null) {
throw new IllegalStateException("Multiple EJRWTFormContainer setup in layout");
}
_formContainer = (EJRWTFormContainer) applicationComponentRenderer;
}
if (applicationComponentRenderer instanceof EJRWTApplicationStatusbar) {
if (_statusbar != null) {
throw new IllegalStateException("Multiple EJRWTApplicationStatusbar setup in layout");
}
_statusbar = (EJRWTApplicationStatusbar) applicationComponentRenderer;
}
if (applicationComponentRenderer instanceof EJRWTSingleFormContainer) {
_singleFormContainers.add((EJRWTSingleFormContainer) applicationComponentRenderer);
}
if (applicationComponentRenderer instanceof EJRWTApplicationComponent) {
_addedComponents.add((EJRWTApplicationComponent) applicationComponentRenderer);
}
EJRWTAppComponentRenderer renderer = (EJRWTAppComponentRenderer) applicationComponentRenderer;
renderer.createContainer(_applicationManager, parent, component.getRendereProperties());
EJ_RWT.setTestId(renderer.getGuiComponent(), component.getName());
renderer.getGuiComponent().setLayoutData(createGridData(component));
return;
} catch (Exception e) {
_applicationManager.getApplicationMessenger().handleException(e, true);
}
// fail over
Composite layoutBody = new Composite(parent, SWT.NO_FOCUS | SWT.BORDER);
layoutBody.setLayoutData(createGridData(component));
layoutBody.setLayout(new GridLayout());
Label spaceLabel = new Label(layoutBody, SWT.NONE);
spaceLabel.setText(String.format("<%s>", component.getRenderer() == null || component.getRenderer().length() == 0 ? "<component>" : component.getRenderer()));
spaceLabel.setLayoutData(createGridData(component));
spaceLabel.setLayoutData(new GridData(GridData.FILL_BOTH));
}
use of org.entirej.applicationframework.rwt.application.form.containers.EJRWTSingleFormContainer in project rap by entirej.
the class EJRWTApplicationContainer method buildServiceApplicationContainer.
protected void buildServiceApplicationContainer(final String fromID) {
GridLayout gridLayout = new GridLayout(1, false);
_mainPane.setLayout(gridLayout);
EJRWTSingleFormContainer container = new EJRWTSingleFormContainer() {
@Override
protected String getFormId(EJFrameworkExtensionProperties rendererprop) {
return fromID;
}
};
container.createContainer(_applicationManager, _mainPane, null);
container.getGuiComponent().setLayoutData(new GridData(GridData.FILL_BOTH | GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL));
_singleFormContainers.add(container);
_mainPane.layout();
for (EJRWTSingleFormContainer singleFormContainer : _singleFormContainers) {
if (singleFormContainer.getForm() != null) {
fireFormOpened(singleFormContainer.getForm());
}
}
}
Aggregations