X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=eclipse%2Fplugins%2Forg.argeo.slc.client.rcp%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Frcp%2FPerspective.java;h=c5b83678429aa9e9bcd49d75f96776b681ca0fbb;hb=8d63b14238448a9d11481e4071eba9d20e161ae2;hp=e3b0c4b1a3bd095ca99059fb5e1a73f6c6924bc7;hpb=e7d183fb130b3e99ca4447cc363e09c97f8fd376;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java b/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java index e3b0c4b1a..c5b836784 100644 --- a/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java +++ b/eclipse/plugins/org.argeo.slc.client.rcp/src/org/argeo/slc/client/rcp/Perspective.java @@ -1,7 +1,6 @@ package org.argeo.slc.client.rcp; -import org.argeo.slc.client.ui.views.ExecutionModulesView; -import org.argeo.slc.client.ui.views.ResultListView; +import org.eclipse.ui.IFolderLayout; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; @@ -12,10 +11,21 @@ public class Perspective implements IPerspectiveFactory { layout.setEditorAreaVisible(false); layout.setFixed(true); - layout.addStandaloneView(ExecutionModulesView.ID, false, + IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, 0.5f, editorArea); - layout.addStandaloneView(ResultListView.ID, false, IPageLayout.RIGHT, - 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"); } }