Implemented a resource navigator that hides generated files and non-processing projects, both with the option to disable. This let me remove the single line of depreciated code in the editor perspective. Also, run sketch is enabled in the context menu for skech files/projects in the navigator. Included a full feature build for the update site.

This commit is contained in:
lonnen
2010-09-08 20:29:59 +00:00
parent 5a6232ab7d
commit 5037980c2e
5 changed files with 83 additions and 57 deletions

View File

@@ -26,8 +26,9 @@ public class Sketching implements IPerspectiveFactory {
float leftPanelSizeAsRatio = 0.2f;
IFolderLayout leftPanels =
layout.createFolder("left", IPageLayout.LEFT, leftPanelSizeAsRatio, editorAreaIdentifier);
leftPanels.addView(IPageLayout.ID_RES_NAV);
leftPanels.addView("processing.plugin.ui.views.sketchView");
// Bottom set of tabs
// strangely, this number is the screen ratio the bottom panel should *not* take up
// which is different than the fast view size as ratio
@@ -55,10 +56,9 @@ public class Sketching implements IPerspectiveFactory {
* the PDE toolbars are -- run, stop?, new, open, save, export
*
* For now, the Java perspective may actually be a better way for
* people to interact with the sketch. Don't force this on anyone
* until it is better developed.
* people to interact with the sketch.
*
* @see Bug 36968 - "[Contributions] Improve action contributions "
* @see Eclipse Bug 36968 - "[Contributions] Improve action contributions "
* https://bugs.eclipse.org/bugs/show_bug.cgi?id=36968
*/