X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=eclipse%2Fplugins%2Fruntime%2Forg.argeo.slc.client.ui%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fperspectives%2FSlcExecution.java;fp=eclipse%2Fplugins%2Fruntime%2Forg.argeo.slc.client.ui%2Fsrc%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2Fperspectives%2FSlcExecution.java;h=0000000000000000000000000000000000000000;hb=b8b8b7dcec14762561b0f429f99ee779bf50e487;hp=f50ea1814802d6fb449b57b386042bb555029209;hpb=5e5b06fe0c831e66bc048d8bf8da40b32f79a5c9;p=gpl%2Fargeo-slc.git diff --git a/eclipse/plugins/runtime/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/perspectives/SlcExecution.java b/eclipse/plugins/runtime/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/perspectives/SlcExecution.java deleted file mode 100644 index f50ea1814..000000000 --- a/eclipse/plugins/runtime/org.argeo.slc.client.ui/src/org/argeo/slc/client/ui/perspectives/SlcExecution.java +++ /dev/null @@ -1,44 +0,0 @@ -package org.argeo.slc.client.ui.perspectives; - -import org.eclipse.ui.IFolderLayout; -import org.eclipse.ui.IPageLayout; -import org.eclipse.ui.IPerspectiveFactory; - -public class SlcExecution implements IPerspectiveFactory { - - public void createInitialLayout(IPageLayout layout) { - String editorArea = layout.getEditorArea(); - layout.setEditorAreaVisible(false); - layout.setFixed(false); - - // Create the main ui layout - - // For a vertical split, the part on top gets the specified ratio of the - // 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 left = layout.createFolder("left", IPageLayout.LEFT, - 0.3f, editorArea); - - IFolderLayout bottom = layout.createFolder("bottom", - IPageLayout.BOTTOM, 0.65f, "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.executionModulesView"); - 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.addPlaceholder("org.argeo.slc.client.ui.processDetailView:UUID-*"); - - bottom.addView("org.argeo.slc.client.ui.processListView"); - - topRight.addView("org.argeo.slc.client.ui.processParametersView"); - } - -}