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=4f0be36ebf9ea6a755bbb89676544f3c9c4a9275;hb=af9457b0628ba4cc625192762d0c0fe7564b9846;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..4f0be36eb 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 @@ -19,6 +19,7 @@ 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 +27,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("org.argeo.slc.client.ui.jcrExecutionModulesView"); + left.addView("org.argeo.slc.client.ui.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"); } - }