X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=eclipse%2Fplugins%2Forg.argeo.slc.client.ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2FSlcExecutionPerspective.java;fp=eclipse%2Fplugins%2Forg.argeo.slc.client.ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2FSlcExecutionPerspective.java;h=5374dd17f11d67b6c1f28fb42c7259261843d424;hb=a181e3d059185a9dc108e81f38c66f48f4e4aac8;hp=81547347b89278d24b5b4d714efe1851006f008f;hpb=e9e32f3294118e8289ca21034a7bd799ec91048d;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java b/eclipse/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java index 81547347b..5374dd17f 100644 --- a/eclipse/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java +++ b/eclipse/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java @@ -8,7 +8,7 @@ public class SlcExecutionPerspective implements IPerspectiveFactory { public void createInitialLayout(IPageLayout layout) { String editorArea = layout.getEditorArea(); - layout.setEditorAreaVisible(false); + layout.setEditorAreaVisible(true); layout.setFixed(false); // Create the main ui layout @@ -17,30 +17,28 @@ public class SlcExecutionPerspective implements IPerspectiveFactory { // current space and the part on bottom gets the rest. Likewise, for a // horizontal split, the part at left gets the specified ratio of the // current space. - IFolderLayout main = layout.createFolder("main", IPageLayout.RIGHT, - 0.3f, editorArea); +// IFolderLayout main = layout.createFolder("main", IPageLayout.RIGHT, +// 0.3f, editorArea); IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT, 0.3f, editorArea); IFolderLayout bottom = layout.createFolder("bottom", - IPageLayout.BOTTOM, 0.65f, "main"); + IPageLayout.BOTTOM, 0.65f, editorArea); + bottom.addView("org.argeo.slc.client.ui.processListView"); - IFolderLayout topRight = layout.createFolder("topRight", - IPageLayout.RIGHT, 0.6f, "main"); +// IFolderLayout topRight = layout.createFolder("topRight", +// IPageLayout.RIGHT, 0.6f, "main"); // add the views to the corresponding place holder left.addView("org.argeo.slc.client.ui.jcrExecutionModulesView"); left.addView("org.argeo.slc.client.ui.resultListView"); - main.addView("org.argeo.slc.client.ui.processBuilderView"); - main.addPlaceholder("org.argeo.slc.client.ui.resultDetailView:UUID-*"); - // main.addView("org.argeo.slc.client.ui.resultExcelView"); - // main.addPlaceholder("org.argeo.slc.client.ui.resultExcelView:UUID-*"); - main.addPlaceholder("org.argeo.slc.client.ui.processDetailView:UUID-*"); +// main.addView("org.argeo.slc.client.ui.processBuilderView"); +// main.addPlaceholder("org.argeo.slc.client.ui.resultDetailView:UUID-*"); +// main.addPlaceholder("org.argeo.slc.client.ui.processDetailView:UUID-*"); - bottom.addView("org.argeo.slc.client.ui.processListView"); - topRight.addView("org.argeo.slc.client.ui.processParametersView"); +// topRight.addView("org.argeo.slc.client.ui.processParametersView"); } }