X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=plugins%2Forg.argeo.slc.client.ui%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fclient%2Fui%2FSlcExecutionPerspective.java;h=257029f3b29759c485c784b39ea4c3a1c6bf513e;hb=0dcc341dafa9c72011b01491bfa8631b4e71ede2;hp=3a2ff605378476828677b923e646f54ebab0d78b;hpb=58e0e18d64a2080680a9f8397b0dfa2894519910;p=gpl%2Fargeo-slc.git diff --git a/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java b/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java index 3a2ff6053..257029f3b 100644 --- a/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java +++ b/plugins/org.argeo.slc.client.ui/src/main/java/org/argeo/slc/client/ui/SlcExecutionPerspective.java @@ -15,10 +15,12 @@ */ package org.argeo.slc.client.ui; +import org.argeo.security.ui.SecurityUiPlugin; import org.eclipse.ui.IFolderLayout; import org.eclipse.ui.IPageLayout; import org.eclipse.ui.IPerspectiveFactory; +/** Perspective to manage SLC execution flows. */ public class SlcExecutionPerspective implements IPerspectiveFactory { public void createInitialLayout(IPageLayout layout) { @@ -26,34 +28,16 @@ public class SlcExecutionPerspective implements IPerspectiveFactory { layout.setEditorAreaVisible(true); 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); + left.addView(ClientUiPlugin.ID + ".jcrExecutionModulesView"); + left.addView(ClientUiPlugin.ID + ".jcrResultListView"); + // Sleak view for SWT resource debugging + // left.addView("org.eclipse.swt.tools.views.SleakView"); IFolderLayout bottom = layout.createFolder("bottom", IPageLayout.BOTTOM, 0.65f, editorArea); - bottom.addView("org.argeo.security.ui.logView"); - bottom.addView("org.argeo.slc.client.ui.jcrProcessListView"); - - // 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.jcrResultListView"); - - // 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-*"); - - // topRight.addView("org.argeo.slc.client.ui.processParametersView"); + bottom.addView(SecurityUiPlugin.PLUGIN_ID + ".logView"); + bottom.addView(ClientUiPlugin.ID + ".jcrProcessListView"); } - }