/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui;
import org.eclipse.debug.ui.IDebugUIConstants;
import org.eclipse.search.ui.NewSearchUI;
import org.eclipse.ui.IFolderLayout;
import org.eclipse.ui.IPageLayout;
import org.eclipse.ui.IPerspectiveFactory;
import org.eclipse.ui.console.IConsoleConstants;
import org.eclipse.ui.progress.IProgressConstants;
// WARNING: Reset the perspective when testing this class!!! Otherwise the
// changes will not display.
/**
* The Go perspective definition.
*/
public class GoPerspective implements IPerspectiveFactory {
public static final String ID = "com.googlecode.goclipse.perspectives.GoPerspective";
private IPageLayout factory;
public GoPerspective() {
}
@Override
public void createInitialLayout(IPageLayout factory) {
this.factory = factory;
addViews();
addActionSets();
addPerspectiveShortcuts();
addNewWizardShortcuts();
addViewShortcuts();
}
/**
* Creates the overall folder layout.
*/
private void addViews() {
final String editorArea = factory.getEditorArea();
IFolderLayout topLeft = factory.createFolder("topLeft", IPageLayout.LEFT, 0.25f, editorArea);
topLeft.addView(IPageLayout.ID_PROJECT_EXPLORER);
IFolderLayout bottom = factory.createFolder("bottomRight", IPageLayout.BOTTOM, 0.75f, editorArea);
bottom.addView(IPageLayout.ID_PROBLEM_VIEW);
bottom.addView(IConsoleConstants.ID_CONSOLE_VIEW);
bottom.addPlaceholder(NewSearchUI.SEARCH_VIEW_ID);
bottom.addPlaceholder(IPageLayout.ID_BOOKMARKS);
bottom.addPlaceholder(IPageLayout.ID_TASK_LIST);
bottom.addPlaceholder(IProgressConstants.PROGRESS_VIEW_ID);
IFolderLayout outlineFolder = factory.createFolder("right", IPageLayout.RIGHT, (float) 0.75, editorArea);
outlineFolder.addView(IPageLayout.ID_OUTLINE);
}
private void addActionSets() {
factory.addActionSet(IDebugUIConstants.LAUNCH_ACTION_SET);
factory.addActionSet(IDebugUIConstants.DEBUG_ACTION_SET);
factory.addActionSet("org.eclipse.debug.ui.profileActionSet"); // NON-NLS-1
factory.addActionSet("org.eclipse.team.ui.actionSet"); // NON-NLS-1
factory.addActionSet(IPageLayout.ID_NAVIGATE_ACTION_SET);
}
private void addPerspectiveShortcuts() {
factory.addPerspectiveShortcut("org.eclipse.team.ui.TeamSynchronizingPerspective"); // NON-NLS-1
factory.addPerspectiveShortcut("org.eclipse.ui.resourcePerspective"); // NON-NLS-1
factory.addPerspectiveShortcut(IDebugUIConstants.ID_DEBUG_PERSPECTIVE);
}
private void addNewWizardShortcuts() {
factory.addNewWizardShortcut("org.eclipse.ui.wizards.new.folder"); // NON-NLS-1
factory.addNewWizardShortcut("org.eclipse.ui.wizards.new.file"); // NON-NLS-1
factory.addNewWizardShortcut("org.eclipse.ui.editors.wizards.UntitledTextFileWizard"); //$NON-NLS-1$
factory.addNewWizardShortcut("com.googlecode.goclipse.wizards.project.mainwiz"); // NON-NLS-1
factory.addNewWizardShortcut("com.googlecode.goclipse.wizards.NewGoFileWizard"); // NON-NLS-1
}
private void addViewShortcuts() {
factory.addShowViewShortcut("org.eclipse.team.ui.GenericHistoryView"); // NON-NLS-1
factory.addShowViewShortcut(IConsoleConstants.ID_CONSOLE_VIEW);
factory.addShowViewShortcut(IPageLayout.ID_PROJECT_EXPLORER);
factory.addShowViewShortcut(IPageLayout.ID_PROBLEM_VIEW);
factory.addShowViewShortcut(IPageLayout.ID_OUTLINE);
factory.addShowViewShortcut(IPageLayout.ID_TASK_LIST);
factory.addShowViewShortcut(NewSearchUI.SEARCH_VIEW_ID);
factory.addShowViewShortcut("org.eclipse.pde.runtime.LogView"); //$NON-NLS-1$
}
}