Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Overbey2010-05-13 19:43:46 +0000
committerJeffrey Overbey2010-05-13 19:43:46 +0000
commit6536f7d588e404c37b483949a8b70b8f6da71a67 (patch)
treef91790a982a2e4dd5c3b3307270136b14111ecac /org.eclipse.photran.cdtinterface
parent809cc892fb7e0a1aed751d9b4cc0856049766dfb (diff)
downloadorg.eclipse.photran-6536f7d588e404c37b483949a8b70b8f6da71a67.tar.gz
org.eclipse.photran-6536f7d588e404c37b483949a8b70b8f6da71a67.tar.xz
org.eclipse.photran-6536f7d588e404c37b483949a8b70b8f6da71a67.zip
Added Fortran Problems View icon; modified Fortran Perspective defaults (Bug 312001)
Diffstat (limited to 'org.eclipse.photran.cdtinterface')
-rw-r--r--org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/ui/FortranPerspectiveFactory.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/ui/FortranPerspectiveFactory.java b/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/ui/FortranPerspectiveFactory.java
index f8502f70..44274ada 100644
--- a/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/ui/FortranPerspectiveFactory.java
+++ b/org.eclipse.photran.cdtinterface/src/org/eclipse/photran/internal/cdtinterface/ui/FortranPerspectiveFactory.java
@@ -39,17 +39,22 @@ public class FortranPerspectiveFactory implements IPerspectiveFactory
IFolderLayout folder1= layout.createFolder("topLeft", IPageLayout.LEFT, (float)0.25, editorArea); //$NON-NLS-1$
folder1.addView(FortranView.FORTRAN_VIEW_ID);
- folder1.addView(IPageLayout.ID_RES_NAV);
- folder1.addPlaceholder(IPageLayout.ID_BOOKMARKS);
+ //folder1.addView(IPageLayout.ID_RES_NAV);
+ //folder1.addPlaceholder(IPageLayout.ID_BOOKMARKS);
IFolderLayout folder2= layout.createFolder("bottom", IPageLayout.BOTTOM, (float)0.75, editorArea); //$NON-NLS-1$
folder2.addView(IPageLayout.ID_PROBLEM_VIEW);
folder2.addView(IConsoleConstants.ID_CONSOLE_VIEW);
//folder2.addView(IPageLayout.ID_PROP_SHEET);
folder2.addView("org.eclipse.photran.ui.DeclarationView");
+ folder2.addView("org.eclipse.photran.ui.VGPProblemView");
+ folder2.addView(IPageLayout.ID_BOOKMARKS);
- IFolderLayout folder3= layout.createFolder("topRight", IPageLayout.RIGHT,(float)0.75, editorArea); //$NON-NLS-1$
+ IFolderLayout folder3= layout.createFolder("topRight", IPageLayout.RIGHT, (float)0.75, editorArea); //$NON-NLS-1$
folder3.addView(IPageLayout.ID_OUTLINE);
+
+ IFolderLayout folder4= layout.createFolder("bottomLeft", IPageLayout.BOTTOM, (float)0.75, "topLeft"); //$NON-NLS-1$ $NON-NLS-2$
+ folder4.addView(IPageLayout.ID_PROGRESS_VIEW);
layout.addActionSet(CUIPlugin.SEARCH_ACTION_SET_ID); // This is the "Open Type" search toolbar action
layout.addActionSet("org.eclipse.photran.ui.SearchActionSet");

Back to the top