dabecf1326480efc1f44591cbe764b5dfb8683d8
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / PHPPerspectiveFactory.java
1 package net.sourceforge.phpeclipse;
2
3 import net.sourceforge.phpeclipse.webbrowser.views.BrowserView;
4
5 import org.eclipse.debug.ui.IDebugUIConstants;
6 import org.eclipse.search.ui.NewSearchUI;
7 import org.eclipse.ui.IFolderLayout;
8 import org.eclipse.ui.IPageLayout;
9 import org.eclipse.ui.IPerspectiveFactory;
10 import org.eclipse.ui.console.IConsoleConstants;
11
12 //import org.eclipse.update.internal.ui.UpdatePerspective;
13 public class PHPPerspectiveFactory implements IPerspectiveFactory {
14   public static final String ID_PROGRESS_VIEW= "org.eclipse.ui.views.ProgressView"; // see bug 63563  //$NON-NLS-1$
15         
16   public PHPPerspectiveFactory() {
17     super();
18   }
19
20   public void createInitialLayout(IPageLayout layout) {
21     String editorArea = layout.getEditorArea();
22     //          IFolderLayout phpResourcesArea = layout.createFolder("phpresourcesarea",
23     // IPageLayout.LEFT, (float)0.25, editorArea);
24     //          phpResourcesArea.addView(PHPeclipsePlugin.PHP_RESOURCES_VIEW_ID);
25     IFolderLayout folder = layout.createFolder("left", IPageLayout.LEFT,
26         (float) 0.25, editorArea); //$NON-NLS-1$
27     folder.addView(IPageLayout.ID_RES_NAV);
28     //folder.addPlaceholder(IPageLayout.ID_RES_NAV);
29     IFolderLayout outputfolder = layout.createFolder("bottom",
30         IPageLayout.BOTTOM, (float) 0.75, editorArea); //$NON-NLS-1$
31     outputfolder.addView(IPageLayout.ID_PROBLEM_VIEW);
32
33     outputfolder.addPlaceholder(NewSearchUI.SEARCH_VIEW_ID);
34     outputfolder.addView(IConsoleConstants.ID_CONSOLE_VIEW);
35     outputfolder.addView(IPageLayout.ID_BOOKMARKS);
36     outputfolder.addPlaceholder(ID_PROGRESS_VIEW);
37     
38     layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.RIGHT, (float) 0.75,
39         editorArea);
40     layout.addActionSet(IDebugUIConstants.LAUNCH_ACTION_SET);
41     layout.addActionSet(IPageLayout.ID_NAVIGATE_ACTION_SET);
42     layout.addShowViewShortcut(BrowserView.ID_BROWSER);
43
44     //  views - search
45     layout.addShowViewShortcut(NewSearchUI.SEARCH_VIEW_ID);
46
47     // views - debugging
48     layout.addShowViewShortcut(IConsoleConstants.ID_CONSOLE_VIEW);
49     // views - standard workbench
50     layout.addShowViewShortcut(IPageLayout.ID_OUTLINE);
51     layout.addShowViewShortcut(IPageLayout.ID_PROBLEM_VIEW);
52     layout.addShowViewShortcut(IPageLayout.ID_RES_NAV);
53     // new actions - PHP project creation wizards
54     //          layout.addNewWizardShortcut("org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard");
55     // //$NON-NLS-1$
56     layout
57         .addNewWizardShortcut("net.sourceforge.phpeclipse.wizards.PHPFileWizard"); //$NON-NLS-1$
58     layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder");//$NON-NLS-1$
59     layout.addNewWizardShortcut("org.eclipse.ui.wizards.new.file");//$NON-NLS-1$
60   }
61 }