]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java
Remove dependency of client.rcp on client.ui
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.rcp / src / org / argeo / slc / client / rcp / Perspective.java
index 8ada2a007fadb6c7b3d579240b9f9184c9939354..c5b83678429aa9e9bcd49d75f96776b681ca0fbb 100644 (file)
@@ -1,6 +1,6 @@
 package org.argeo.slc.client.rcp;
 
-import org.argeo.slc.client.ui.views.ExecutionModulesView;
+import org.eclipse.ui.IFolderLayout;
 import org.eclipse.ui.IPageLayout;
 import org.eclipse.ui.IPerspectiveFactory;
 
@@ -11,8 +11,21 @@ public class Perspective implements IPerspectiveFactory {
                layout.setEditorAreaVisible(false);
                layout.setFixed(true);
 
-               layout.addStandaloneView(ExecutionModulesView.ID, false,
-                               IPageLayout.LEFT, 1.0f, editorArea);
+               IFolderLayout topLeft = layout.createFolder("topLeft",
+                               IPageLayout.LEFT, 0.5f, editorArea);
+               topLeft.addView("org.argeo.slc.client.ui.executionModulesView");
+
+               IFolderLayout topRight = layout.createFolder("topRight",
+                               IPageLayout.RIGHT, 0.5f, editorArea);
+               topRight.addView("org.argeo.slc.client.ui.resultListView");
+
+               IFolderLayout bottomRight = layout.createFolder("bottomRight",
+                               IPageLayout.BOTTOM, 0.6f, "topRight");
+               bottomRight.addView("org.argeo.slc.client.ui.processListView");
+
+               IFolderLayout bottomLeft = layout.createFolder("bottomLeft",
+                               IPageLayout.BOTTOM, 0.6f, "topLeft");
+               bottomLeft.addView("org.argeo.slc.client.ui.processBuilderView");
        }
 
 }