blob: 9583c70796c6d20b241db4bd245bf43a2ef8e8fc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 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 org.eclipse.ui.internal;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import javax.annotation.PostConstruct;
import javax.inject.Inject;
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.expressions.Expression;
import org.eclipse.core.expressions.ExpressionInfo;
import org.eclipse.core.expressions.IEvaluationContext;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.ListenerList;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.dynamichelpers.IExtensionTracker;
import org.eclipse.e4.core.contexts.ContextFunction;
import org.eclipse.e4.core.contexts.ContextInjectionFactory;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.core.contexts.RunAndTrack;
import org.eclipse.e4.core.di.InjectionException;
import org.eclipse.e4.core.services.events.IEventBroker;
import org.eclipse.e4.ui.internal.workbench.URIHelper;
import org.eclipse.e4.ui.internal.workbench.renderers.swt.IUpdateService;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.e4.ui.model.application.ui.MElementContainer;
import org.eclipse.e4.ui.model.application.ui.MUIElement;
import org.eclipse.e4.ui.model.application.ui.SideValue;
import org.eclipse.e4.ui.model.application.ui.advanced.MPerspective;
import org.eclipse.e4.ui.model.application.ui.advanced.MPerspectiveStack;
import org.eclipse.e4.ui.model.application.ui.advanced.MPlaceholder;
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
import org.eclipse.e4.ui.model.application.ui.basic.MTrimBar;
import org.eclipse.e4.ui.model.application.ui.basic.MTrimElement;
import org.eclipse.e4.ui.model.application.ui.basic.MTrimmedWindow;
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
import org.eclipse.e4.ui.model.application.ui.menu.MMenu;
import org.eclipse.e4.ui.model.application.ui.menu.MMenuItem;
import org.eclipse.e4.ui.model.application.ui.menu.MMenuSeparator;
import org.eclipse.e4.ui.model.application.ui.menu.MOpaqueMenuItem;
import org.eclipse.e4.ui.model.application.ui.menu.MToolControl;
import org.eclipse.e4.ui.model.application.ui.menu.impl.MenuFactoryImpl;
import org.eclipse.e4.ui.services.EContextService;
import org.eclipse.e4.ui.workbench.IPresentationEngine;
import org.eclipse.e4.ui.workbench.UIEvents;
import org.eclipse.e4.ui.workbench.modeling.EModelService;
import org.eclipse.e4.ui.workbench.modeling.EPartService;
import org.eclipse.e4.ui.workbench.modeling.ISaveHandler;
import org.eclipse.e4.ui.workbench.modeling.IWindowCloseHandler;
import org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerRenderer;
import org.eclipse.e4.ui.workbench.renderers.swt.MenuManagerRendererFilter;
import org.eclipse.e4.ui.workbench.renderers.swt.TrimBarLayout;
import org.eclipse.e4.ui.workbench.swt.factories.IRendererFactory;
import org.eclipse.jface.action.AbstractGroupMarker;
import org.eclipse.jface.action.ActionContributionItem;
import org.eclipse.jface.action.ContributionManager;
import org.eclipse.jface.action.CoolBarManager;
import org.eclipse.jface.action.GroupMarker;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.action.IContributionItem;
import org.eclipse.jface.action.IContributionManagerOverrides;
import org.eclipse.jface.action.ICoolBarManager;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.jface.action.MenuManager;
import org.eclipse.jface.action.StatusLineManager;
import org.eclipse.jface.commands.ActionHandler;
import org.eclipse.jface.dialogs.IDialogConstants;
import org.eclipse.jface.internal.provisional.action.CoolBarManager2;
import org.eclipse.jface.internal.provisional.action.IToolBarManager2;
import org.eclipse.jface.internal.provisional.action.ToolBarManager2;
import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.jface.operation.ModalContext;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.util.IPropertyChangeListener;
import org.eclipse.jface.util.PropertyChangeEvent;
import org.eclipse.jface.viewers.ArrayContentProvider;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.osgi.util.NLS;
import org.eclipse.osgi.util.TextProcessor;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.swt.events.ShellAdapter;
import org.eclipse.swt.events.ShellEvent;
import org.eclipse.swt.widgets.Layout;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.ActiveShellExpression;
import org.eclipse.ui.IPageListener;
import org.eclipse.ui.IPageService;
import org.eclipse.ui.IPartService;
import org.eclipse.ui.IPerspectiveDescriptor;
import org.eclipse.ui.ISaveablePart;
import org.eclipse.ui.ISelectionService;
import org.eclipse.ui.ISources;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchPart;
import org.eclipse.ui.IWorkbenchPartReference;
import org.eclipse.ui.IWorkbenchPreferenceConstants;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.WorkbenchException;
import org.eclipse.ui.application.ActionBarAdvisor;
import org.eclipse.ui.application.WorkbenchAdvisor;
import org.eclipse.ui.application.WorkbenchWindowAdvisor;
import org.eclipse.ui.commands.ICommandService;
import org.eclipse.ui.contexts.IContextService;
import org.eclipse.ui.dialogs.ListSelectionDialog;
import org.eclipse.ui.handlers.IHandlerActivation;
import org.eclipse.ui.handlers.IHandlerService;
import org.eclipse.ui.internal.StartupThreading.StartupRunnable;
import org.eclipse.ui.internal.actions.CommandAction;
import org.eclipse.ui.internal.commands.SlaveCommandService;
import org.eclipse.ui.internal.contexts.ContextService;
import org.eclipse.ui.internal.dialogs.CustomizePerspectiveDialog;
import org.eclipse.ui.internal.e4.compatibility.CompatibilityPart;
import org.eclipse.ui.internal.e4.compatibility.E4Util;
import org.eclipse.ui.internal.e4.compatibility.ModeledPageLayout;
import org.eclipse.ui.internal.e4.compatibility.SelectionService;
import org.eclipse.ui.internal.handlers.ActionCommandMappingService;
import org.eclipse.ui.internal.handlers.IActionCommandMappingService;
import org.eclipse.ui.internal.handlers.LegacyHandlerService;
import org.eclipse.ui.internal.layout.ITrimManager;
import org.eclipse.ui.internal.layout.IWindowTrim;
import org.eclipse.ui.internal.menus.IActionSetsListener;
import org.eclipse.ui.internal.menus.LegacyActionPersistence;
import org.eclipse.ui.internal.menus.MenuHelper;
import org.eclipse.ui.internal.menus.WorkbenchMenuService;
import org.eclipse.ui.internal.misc.UIListenerLogging;
import org.eclipse.ui.internal.progress.ProgressRegion;
import org.eclipse.ui.internal.provisional.application.IActionBarConfigurer2;
import org.eclipse.ui.internal.provisional.presentations.IActionBarPresentationFactory;
import org.eclipse.ui.internal.registry.IWorkbenchRegistryConstants;
import org.eclipse.ui.internal.registry.UIExtensionTracker;
import org.eclipse.ui.internal.services.EvaluationReference;
import org.eclipse.ui.internal.services.IServiceLocatorCreator;
import org.eclipse.ui.internal.services.IWorkbenchLocationService;
import org.eclipse.ui.internal.services.ServiceLocator;
import org.eclipse.ui.internal.services.WorkbenchLocationService;
import org.eclipse.ui.internal.util.PrefUtil;
import org.eclipse.ui.menus.CommandContributionItem;
import org.eclipse.ui.menus.IMenuService;
import org.eclipse.ui.menus.MenuUtil;
import org.eclipse.ui.presentations.AbstractPresentationFactory;
import org.eclipse.ui.services.IDisposable;
import org.eclipse.ui.services.IEvaluationService;
import org.eclipse.ui.services.IServiceScopes;
import org.eclipse.ui.views.IViewDescriptor;
import org.eclipse.ui.views.IViewRegistry;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventHandler;
/**
* A window within the workbench.
*/
public class WorkbenchWindow implements IWorkbenchWindow {
private static final String MAIN_TOOLBAR_ID = "org.eclipse.ui.main.toolbar"; //$NON-NLS-1$
public static final String ACTION_SET_CMD_PREFIX = "AS::"; //$NON-NLS-1$
@Inject
private IWorkbench workbench;
@Inject
private MTrimmedWindow model;
@Inject
private IPresentationEngine engine;
@Inject
private IRendererFactory rendererFactory;
@Inject
private MApplication application;
@Inject
EModelService modelService;
@Inject
private IEventBroker eventBroker;
@Inject
private IExtensionRegistry extensionRegistry;
private WorkbenchPage page;
private WorkbenchWindowAdvisor windowAdvisor;
private ActionBarAdvisor actionBarAdvisor;
private PageListenerList pageListeners = new PageListenerList();
private PerspectiveListenerList perspectiveListeners = new PerspectiveListenerList();
private PartService partService = new PartService();
private WWinActionBars actionBars;
private boolean updateDisabled = false;
private boolean closing = false;
private boolean shellActivated = false;
ProgressRegion progressRegion = null;
private List<MTrimElement> workbenchTrimElements = new ArrayList<MTrimElement>();
private Map<MToolControl, IConfigurationElement> iceMap = new HashMap<MToolControl, IConfigurationElement>();
public IConfigurationElement getICEFor(MToolControl mtc) {
return iceMap.get(mtc);
}
/**
* The map of services maintained by the workbench window. These services
* are initialized when the workbench window is being constructed by
* dependency injection.
*/
private ServiceLocator serviceLocator;
/**
* Bit flags indication which submenus (New, Show Views, ...) this window
* contains. Initially none.
*
* @since 3.0
*/
private int submenus = 0x00;
/**
* Object for configuring this workbench window. Lazily initialized to an
* instance unique to this window.
*
* @since 3.0
*/
private WorkbenchWindowConfigurer windowConfigurer = null;
/**
* List of generic property listeners.
*
* @since 3.3
*/
private ListenerList genericPropertyListeners = new ListenerList();
private IAdaptable input;
private IPerspectiveDescriptor perspective;
private EventHandler windowWidgetHandler = new EventHandler() {
public void handleEvent(Event event) {
if (event.getProperty(UIEvents.EventTags.ELEMENT) == model
&& event.getProperty(UIEvents.EventTags.NEW_VALUE) == null) {
// HandledContributionItem.toolItemUpdater.removeWindowRunnable(menuUpdater);
manageChanges = false;
canUpdateMenus = false;
menuUpdater = null;
removeTrimContributions();
removeTopTrimChildren();
MMenu menu = model.getMainMenu();
if (menu != null) {
engine.removeGui(menu);
model.setMainMenu(null);
}
eventBroker.unsubscribe(windowWidgetHandler);
}
}
};
static final String TEXT_DELIMITERS = TextProcessor.getDefaultDelimiters() + "-"; //$NON-NLS-1$
// constants for shortcut bar group ids
static final String GRP_PAGES = "pages"; //$NON-NLS-1$
static final String GRP_PERSPECTIVES = "perspectives"; //$NON-NLS-1$
static final String GRP_FAST_VIEWS = "fastViews"; //$NON-NLS-1$
// static fields for inner classes.
static final int VGAP = 0;
static final int CLIENT_INSET = 3;
static final int BAR_SIZE = 23;
/**
* Coolbar visibility change property.
*
* @since 3.3
*/
public static final String PROP_COOLBAR_VISIBLE = "coolbarVisible"; //$NON-NLS-1$
/**
* Perspective bar visibility change property.
*
* @since 3.3
*/
public static final String PROP_PERSPECTIVEBAR_VISIBLE = "perspectiveBarVisible"; //$NON-NLS-1$
/**
* The status line visibility change property. for internal use only.
*
* @since 3.4
*/
public static final String PROP_STATUS_LINE_VISIBLE = "statusLineVisible"; //$NON-NLS-1$
/**
* Constant (bit mask) indicating which the Show View submenu is probably
* present somewhere in this window.
*
* @see #addSubmenu
* @since 3.0
*/
public static final int SHOW_VIEW_SUBMENU = 0x01;
/**
* Constant (bit mask) indicating which the Open Perspective submenu is
* probably present somewhere in this window.
*
* @see #addSubmenu
* @since 3.0
*/
public static final int OPEN_PERSPECTIVE_SUBMENU = 0x02;
/**
* Constant (bit mask) indicating which the New Wizard submenu is probably
* present somewhere in this window.
*
* @see #addSubmenu
* @since 3.0
*/
public static final int NEW_WIZARD_SUBMENU = 0x04;
/**
* Remembers that this window contains the given submenu.
*
* @param type
* the type of submenu, one of: {@link #NEW_WIZARD_SUBMENU
* NEW_WIZARD_SUBMENU}, {@link #OPEN_PERSPECTIVE_SUBMENU
* OPEN_PERSPECTIVE_SUBMENU}, {@link #SHOW_VIEW_SUBMENU
* SHOW_VIEW_SUBMENU}
* @see #containsSubmenu
* @since 3.0
*/
public void addSubmenu(int type) {
submenus |= type;
}
/**
* Checks to see if this window contains the given type of submenu.
*
* @param type
* the type of submenu, one of: {@link #NEW_WIZARD_SUBMENU
* NEW_WIZARD_SUBMENU}, {@link #OPEN_PERSPECTIVE_SUBMENU
* OPEN_PERSPECTIVE_SUBMENU}, {@link #SHOW_VIEW_SUBMENU
* SHOW_VIEW_SUBMENU}
* @return <code>true</code> if window contains submenu, <code>false</code>
* otherwise
* @see #addSubmenu
* @since 3.0
*/
public boolean containsSubmenu(int type) {
return ((submenus & type) != 0);
}
/**
* Constant indicating that all the actions bars should be filled.
*
* @since 3.0
*/
private static final int FILL_ALL_ACTION_BARS = ActionBarAdvisor.FILL_MENU_BAR
| ActionBarAdvisor.FILL_COOL_BAR | ActionBarAdvisor.FILL_STATUS_LINE;
/**
* Creates and initializes a new workbench window.
*
* @param input
* the input for this workbench window
* @param pers
* the perspective to initialize this workbench window with
*/
public WorkbenchWindow(IAdaptable input, IPerspectiveDescriptor pers) {
this.input = input;
perspective = pers;
}
@PostConstruct
public void setup() {
final IEclipseContext windowContext = model.getContext();
IServiceLocatorCreator slc = (IServiceLocatorCreator) workbench
.getService(IServiceLocatorCreator.class);
this.serviceLocator = (ServiceLocator) slc.createServiceLocator(workbench, null,
new IDisposable() {
public void dispose() {
final Shell shell = getShell();
if (shell != null && !shell.isDisposed()) {
close();
}
}
});
serviceLocator.setContext(windowContext);
windowContext.set(IExtensionTracker.class.getName(), new ContextFunction() {
@Override
public Object compute(IEclipseContext context) {
if (tracker == null) {
tracker = new UIExtensionTracker(getWorkbench().getDisplay());
}
return tracker;
}
});
windowContext.set(IWindowCloseHandler.class.getName(), new IWindowCloseHandler() {
public boolean close(MWindow window) {
return getWindowAdvisor().preWindowShellClose() && WorkbenchWindow.this.close();
}
});
final ISaveHandler defaultSaveHandler = windowContext.get(ISaveHandler.class);
windowContext.set(ISaveHandler.class, new ISaveHandler() {
public Save promptToSave(MPart dirtyPart) {
Object object = dirtyPart.getObject();
if (object instanceof CompatibilityPart) {
IWorkbenchPart part = ((CompatibilityPart) object).getPart();
if (part instanceof ISaveablePart) {
return SaveableHelper.savePart((ISaveablePart) part, part,
WorkbenchWindow.this, true) ? Save.NO : Save.CANCEL;
}
}
return defaultSaveHandler.promptToSave(dirtyPart);
}
public Save[] promptToSave(Collection<MPart> dirtyParts) {
LabelProvider labelProvider = new LabelProvider() {
@Override
public String getText(Object element) {
return ((MPart) element).getLocalizedLabel();
}
};
List<MPart> parts = new ArrayList<MPart>(dirtyParts);
ListSelectionDialog dialog = new ListSelectionDialog(getShell(), parts,
ArrayContentProvider.getInstance(), labelProvider,
WorkbenchMessages.EditorManager_saveResourcesMessage);
dialog.setInitialSelections(parts.toArray());
dialog.setTitle(WorkbenchMessages.EditorManager_saveResourcesTitle);
if (dialog.open() == IDialogConstants.CANCEL_ID) {
return new Save[] { Save.CANCEL };
}
Object[] toSave = dialog.getResult();
Save[] retSaves = new Save[parts.size()];
Arrays.fill(retSaves, Save.NO);
for (int i = 0; i < retSaves.length; i++) {
MPart part = parts.get(i);
for (Object o : toSave) {
if (o == part) {
retSaves[i] = Save.YES;
break;
}
}
}
return retSaves;
}
});
windowContext.set(IWorkbenchWindow.class.getName(), this);
windowContext.set(IPageService.class, this);
windowContext.set(IPartService.class, partService);
windowContext.set(ISources.ACTIVE_WORKBENCH_WINDOW_NAME, this);
windowContext.set(ISources.ACTIVE_WORKBENCH_WINDOW_SHELL_NAME, getShell());
EContextService cs = (EContextService) windowContext.get(EContextService.class.getName());
cs.activateContext(IContextService.CONTEXT_ID_WINDOW);
cs.getActiveContextIds();
initializeDefaultServices();
// register with the tracker
fireWindowOpening();
try {
page = new WorkbenchPage(this, input);
} catch (WorkbenchException e) {
WorkbenchPlugin.log(e);
}
ContextInjectionFactory.inject(page, model.getContext());
windowContext.set(IWorkbenchPage.class, page);
menuManager.setOverrides(menuOverride);
((CoolBarToTrimManager) getCoolBarManager2()).setOverrides(toolbarOverride);
// Fill the action bars
fillActionBars(FILL_ALL_ACTION_BARS);
firePageOpened();
List<MPerspectiveStack> ps = modelService.findElements(model, null,
MPerspectiveStack.class, null);
MPerspective curPersp = null;
boolean newWindow = true;
if (ps.size() > 0) {
MPerspectiveStack stack = ps.get(0);
if (stack.getSelectedElement() != null) {
curPersp = stack.getSelectedElement();
IPerspectiveDescriptor thePersp = getWorkbench().getPerspectiveRegistry()
.findPerspectiveWithId(curPersp.getElementId());
if (thePersp != null) {
perspective = thePersp;
newWindow = false;
}
}
}
page.setPerspective(perspective);
if (newWindow) {
page.fireInitialPartVisibilityEvents();
} else {
page.updatePerspectiveActionSets();
}
firePageActivated();
populateTopTrimContributions();
populateBottomTrimContributions();
Shell shell = (Shell) model.getWidget();
if (model.getMainMenu() == null) {
final MMenu mainMenu = MenuFactoryImpl.eINSTANCE.createMenu();
mainMenu.setElementId("org.eclipse.ui.main.menu"); //$NON-NLS-1$
final MenuManagerRenderer renderer = (MenuManagerRenderer) rendererFactory.getRenderer(
mainMenu, null);
renderer.linkModelToManager(mainMenu, menuManager);
fill(renderer, mainMenu, menuManager);
model.setMainMenu(mainMenu);
final Menu menu = (Menu) engine.createGui(mainMenu, model.getWidget(),
model.getContext());
shell.setMenuBar(menu);
menuUpdater = new Runnable() {
public void run() {
try {
if (model.getMainMenu() == null || model.getWidget() == null
|| menu.isDisposed() || mainMenu.getWidget() == null) {
return;
}
MenuManagerRendererFilter.updateElementVisibility(mainMenu, renderer,
menuManager, windowContext.getActiveLeaf(), true, false);
menuManager.update(true);
} finally {
canUpdateMenus = true;
}
}
};
RunAndTrack menuChangeManager = new RunAndTrack() {
@Override
public boolean changed(IEclipseContext context) {
ExpressionInfo info = new ExpressionInfo();
IEclipseContext leafContext = windowContext.getActiveLeaf();
MenuManagerRendererFilter.collectInfo(info, mainMenu, renderer, leafContext,
true);
// if one of these variables change, re-run the RAT
for (String name : info.getAccessedVariableNames()) {
leafContext.get(name);
}
if (canUpdateMenus && workbench.getDisplay() != null) {
canUpdateMenus = false;
workbench.getDisplay().asyncExec(menuUpdater);
}
return manageChanges;
}
};
windowContext.runAndTrack(menuChangeManager);
}
eventBroker.subscribe(UIEvents.UIElement.TOPIC_WIDGET, windowWidgetHandler);
partService.setPage(page);
IPreferenceStore preferenceStore = PrefUtil.getAPIPreferenceStore();
boolean enableAnimations = preferenceStore
.getBoolean(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS);
preferenceStore.setValue(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS, false);
// Hack!! don't show the intro if there's more than one open perspective
List<MPerspective> persps = modelService
.findElements(model, null, MPerspective.class, null);
if (persps.size() > 1) {
PrefUtil.getAPIPreferenceStore().setValue(IWorkbenchPreferenceConstants.SHOW_INTRO,
false);
PrefUtil.saveAPIPrefs();
}
getWindowAdvisor().openIntro();
preferenceStore.setValue(IWorkbenchPreferenceConstants.ENABLE_ANIMATIONS, enableAnimations);
getShell().setData(this);
workbench.getHelpSystem().setHelp(getShell(), IWorkbenchHelpContextIds.WORKBENCH_WINDOW);
trackShellActivation();
}
private boolean manageChanges = true;
private boolean canUpdateMenus = true;
private void removeTrimContributions() {
MTrimBar trimBar = getTopTrim();
for (MTrimElement trimElement : workbenchTrimElements) {
trimElement.setToBeRendered(false);
trimBar.getChildren().remove(trimElement);
}
workbenchTrimElements.clear();
}
private void removeTopTrimChildren() {
MTrimBar trimBar = null;
List<MTrimBar> trimBars = model.getTrimBars();
for (MTrimBar bar : trimBars) {
if (MAIN_TOOLBAR_ID.equals(bar.getElementId())) {
trimBar = bar;
break;
}
}
if (trimBar == null) {
return;
}
engine.removeGui(trimBar);
trimBar.getChildren().clear();
}
void populateTopTrimContributions() {
getCoolBarManager2().update(true);
final MTrimBar trimBar = getTopTrim();
// TODO why aren't these added as trim contributions
// that would remove everything from this method except the fill(*)
MToolControl spacerControl = MenuFactoryImpl.eINSTANCE.createToolControl();
spacerControl.setElementId("PerspectiveSpacer"); //$NON-NLS-1$
spacerControl
.setContributionURI("bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"); //$NON-NLS-1$
spacerControl.getTags().add(TrimBarLayout.SPACER);
MToolControl spacerGlueControl = MenuFactoryImpl.eINSTANCE.createToolControl();
spacerGlueControl.setElementId("Spacer Glue"); //$NON-NLS-1$
spacerGlueControl
.setContributionURI("bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"); //$NON-NLS-1$
spacerGlueControl.getTags().add(TrimBarLayout.GLUE);
MToolControl searchControl = MenuFactoryImpl.eINSTANCE.createToolControl();
searchControl.setElementId("SearchField"); //$NON-NLS-1$
searchControl
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.quickaccess.SearchField"); //$NON-NLS-1$
MToolControl glueControl = MenuFactoryImpl.eINSTANCE.createToolControl();
glueControl.setElementId("Search-PS Glue"); //$NON-NLS-1$
glueControl
.setContributionURI("bundleclass://org.eclipse.e4.ui.workbench.renderers.swt/org.eclipse.e4.ui.workbench.renderers.swt.LayoutModifierToolControl"); //$NON-NLS-1$
glueControl.getTags().add(TrimBarLayout.GLUE);
MToolControl switcherControl = MenuFactoryImpl.eINSTANCE.createToolControl();
switcherControl.setToBeRendered(getWindowConfigurer().getShowPerspectiveBar());
switcherControl.setElementId("PerspectiveSwitcher"); //$NON-NLS-1$
switcherControl
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.e4.ui.workbench.addons.perspectiveswitcher.PerspectiveSwitcher"); //$NON-NLS-1$
trimBar.getChildren().add(spacerControl);
trimBar.getChildren().add(spacerGlueControl);
trimBar.getChildren().add(searchControl);
trimBar.getChildren().add(glueControl);
trimBar.getChildren().add(switcherControl);
// render now after everything has been added so contributions can be
// inserted in the right place
trimBar.setToBeRendered(true);
workbenchTrimElements.add(spacerControl);
workbenchTrimElements.add(searchControl);
workbenchTrimElements.add(glueControl);
workbenchTrimElements.add(switcherControl);
}
private void populateStandardTrim(MTrimBar bottomTrim) {
// StatusLine
MToolControl slElement = (MToolControl) modelService.find(
"org.eclipse.ui.StatusLine", bottomTrim); //$NON-NLS-1$
if (slElement == null) {
slElement = MenuFactoryImpl.eINSTANCE.createToolControl();
slElement.setElementId("org.eclipse.ui.StatusLine"); //$NON-NLS-1$
slElement
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"); //$NON-NLS-1$
bottomTrim.getChildren().add(slElement);
}
slElement.setToBeRendered(statusLineVisible);
slElement.getTags().add(TrimBarLayout.SPACER);
// Heap Status
MToolControl hsElement = (MToolControl) modelService.find(
"org.eclipse.ui.HeapStatus", bottomTrim); //$NON-NLS-1$
if (hsElement == null) {
hsElement = MenuFactoryImpl.eINSTANCE.createToolControl();
hsElement.setElementId("org.eclipse.ui.HeapStatus"); //$NON-NLS-1$
hsElement
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"); //$NON-NLS-1$
bottomTrim.getChildren().add(hsElement);
}
hsElement.setToBeRendered(getShowHeapStatus());
// Progress Bar
MToolControl pbElement = (MToolControl) modelService.find(
"org.eclipse.ui.ProgressBar", bottomTrim); //$NON-NLS-1$
if (pbElement == null) {
pbElement = MenuFactoryImpl.eINSTANCE.createToolControl();
pbElement.setElementId("org.eclipse.ui.ProgressBar"); //$NON-NLS-1$
pbElement
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.StandardTrim"); //$NON-NLS-1$
bottomTrim.getChildren().add(pbElement);
}
pbElement.setToBeRendered(getWindowConfigurer().getShowProgressIndicator());
}
private void populateTrimContributions(MTrimBar bottomTrim) {
// Part 1: Add groups
IConfigurationElement[] exts = extensionRegistry
.getConfigurationElementsFor("org.eclipse.ui.menus"); //$NON-NLS-1$
List<IConfigurationElement> items = new ArrayList<IConfigurationElement>();
for (IConfigurationElement ice : exts) {
if ("group".equals(ice.getName()) || "widget".equals(ice.getName())) { //$NON-NLS-1$ //$NON-NLS-2$
items.add(ice);
}
}
if (items.size() == 0)
return;
// Iterate over the items until they've all been placed or unril
// an iteration doesn't place anything
List<IConfigurationElement> handledElements = new ArrayList<IConfigurationElement>();
handledElements.add(items.get(0)); // Hack!! startup seeding
MUIElement createdTrim = null;
while (items.size() > 0 && handledElements.size() > 0) {
handledElements.clear();
for (IConfigurationElement item : items) {
String id = item.getAttribute("id"); //$NON-NLS-1$
String classSpec = item.getAttribute("class"); //$NON-NLS-1$
//boolean sepVisible = "true".equals(item.getAttribute("separatorsVisible")); //$NON-NLS-1$ //$NON-NLS-2$
IConfigurationElement[] locs = item.getChildren("location"); //$NON-NLS-1$
for (IConfigurationElement loc : locs) {
IConfigurationElement[] bars = loc.getChildren("bar"); //$NON-NLS-1$
if (bars.length > 0) {
IConfigurationElement bar = bars[0];
boolean isTrim = "trim".equals(bar.getAttribute("type")); //$NON-NLS-1$//$NON-NLS-2$
if (isTrim) {
String path = bar.getAttribute("path"); //$NON-NLS-1$
if (path != null && path.length() > 0) {
createdTrim = addTrimElement(bottomTrim, item, id, false, path,
classSpec);
} else {
IConfigurationElement[] orders = loc.getChildren("order"); //$NON-NLS-1$
if (orders.length > 0) {
boolean isBefore = "before".equals(orders[0].getAttribute("position")); //$NON-NLS-1$//$NON-NLS-2$
String relTo = orders[0].getAttribute("relativeTo"); //$NON-NLS-1$
if ("status".equals(relTo)) //$NON-NLS-1$
relTo = "org.eclipse.ui.StatusLine"; //$NON-NLS-1$
createdTrim = addTrimElement(bottomTrim, item, id, isBefore,
relTo, classSpec);
}
}
if (createdTrim != null) {
handledElements.add(item);
}
}
}
}
}
items.removeAll(handledElements);
}
}
private MToolControl addTrimElement(MTrimBar bottomTrim, IConfigurationElement ice, String id,
boolean isBefore, String relTo, String classSpec) {
// is it already in the trim ?
MUIElement existingTrim = modelService.find(id, bottomTrim);
if (existingTrim != null) {
iceMap.put((MToolControl) existingTrim, ice);
return (MToolControl) existingTrim;
}
// Ok, create one but only if we can site it correctly
int insertIndex = bottomTrim.getChildren().size();
if (relTo != null) {
MUIElement foundRel = modelService.find(relTo, bottomTrim);
if (foundRel == null)
return null;
insertIndex = bottomTrim.getChildren().indexOf(foundRel);
if (!isBefore)
insertIndex++;
}
MToolControl newTrimElement = MenuFactoryImpl.eINSTANCE.createToolControl();
newTrimElement.setElementId(id);
newTrimElement.setToBeRendered(classSpec != null);
if (classSpec != null) {
newTrimElement
.setContributionURI("bundleclass://org.eclipse.ui.workbench/org.eclipse.ui.internal.LegacyTrim"); //$NON-NLS-1$
}
newTrimElement.setContributorURI(URIHelper.constructPlatformURI(ice.getContributor()));
iceMap.put(newTrimElement, ice);
bottomTrim.getChildren().add(insertIndex, newTrimElement);
return newTrimElement;
}
void populateBottomTrimContributions() {
MTrimBar bottomTrim = modelService.getTrim(model, SideValue.BOTTOM);
populateStandardTrim(bottomTrim);
populateTrimContributions(bottomTrim);
}
public MTrimBar getTopTrim() {
List<MTrimBar> trimBars = model.getTrimBars();
for (MTrimBar bar : trimBars) {
if (MAIN_TOOLBAR_ID.equals(bar.getElementId())) {
return bar;
}
}
return null;
}
private void fill(MenuManagerRenderer renderer, MMenu menu, IMenuManager manager) {
for (IContributionItem item : manager.getItems()) {
if (item instanceof MenuManager) {
MenuManager menuManager = (MenuManager) item;
MMenu subMenu = MenuHelper.createMenu(menuManager);
if (subMenu != null) {
renderer.linkModelToContribution(subMenu, item);
renderer.linkModelToManager(subMenu, menuManager);
fill(renderer, subMenu, menuManager);
menu.getChildren().add(subMenu);
}
} else if (item instanceof CommandContributionItem) {
CommandContributionItem cci = (CommandContributionItem) item;
MMenuItem menuItem = MenuHelper.createItem(application, cci);
manager.remove(item);
if (menuItem != null) {
menu.getChildren().add(menuItem);
}
} else if (item instanceof ActionContributionItem) {
MMenuItem menuItem = MenuHelper.createItem(application,
(ActionContributionItem) item);
manager.remove(item);
if (menuItem != null) {
menu.getChildren().add(menuItem);
}
} else if (item instanceof AbstractGroupMarker) {
MMenuSeparator separator = MenuFactoryImpl.eINSTANCE.createMenuSeparator();
separator.setVisible(item.isVisible());
separator.setElementId(item.getId());
if (item instanceof GroupMarker) {
separator.getTags().add(MenuManagerRenderer.GROUP_MARKER);
}
menu.getChildren().add(separator);
manager.remove(item);
} else {
MOpaqueMenuItem menuItem = MenuFactoryImpl.eINSTANCE.createOpaqueMenuItem();
menuItem.setElementId(item.getId());
menuItem.setVisible(item.isVisible());
menu.getChildren().add(menuItem);
renderer.linkModelToContribution(menuItem, item);
}
}
}
public static String getId(IConfigurationElement element) {
String id = element.getAttribute(IWorkbenchRegistryConstants.ATT_ID);
// For sub-menu management -all- items must be id'd so enforce this
// here (we could optimize by checking the 'name' of the config
// element == "menu"
if (id == null || id.length() == 0) {
id = getCommandId(element);
}
if (id == null || id.length() == 0) {
id = element.toString();
}
return id;
}
public static String getCommandId(IConfigurationElement element) {
return element.getAttribute(IWorkbenchRegistryConstants.ATT_COMMAND_ID);
}
public static String getActionSetCommandId(IConfigurationElement element) {
String id = getDefinitionId(element);
if (id != null) {
return id;
}
id = getId(element);
String actionSetId = null;
Object obj = element.getParent();
while (obj instanceof IConfigurationElement && actionSetId == null) {
IConfigurationElement parent = (IConfigurationElement) obj;
if (parent.getName().equals(IWorkbenchRegistryConstants.TAG_ACTION_SET)) {
actionSetId = getId(parent);
}
obj = parent.getParent();
}
return ACTION_SET_CMD_PREFIX + actionSetId + '/' + id;
}
public static String getDefinitionId(IConfigurationElement element) {
return element.getAttribute(IWorkbenchRegistryConstants.ATT_DEFINITION_ID);
}
public static boolean getRetarget(IConfigurationElement element) {
String r = element.getAttribute(IWorkbenchRegistryConstants.ATT_RETARGET);
return Boolean.valueOf(r);
}
/**
* Return the style bits for the shortcut bar.
*
* @return int
*/
protected int perspectiveBarStyle() {
return SWT.FLAT | SWT.WRAP | SWT.RIGHT | SWT.HORIZONTAL;
}
private boolean coolBarVisible = true;
private boolean perspectiveBarVisible = true;
private boolean fastViewBarVisible = true;
private boolean statusLineVisible = true;
/**
* The handlers for global actions that were last submitted to the workbench
* command support. This is a map of command identifiers to
* <code>ActionHandler</code>. This map is never <code>null</code>, and is
* never empty as long as at least one global action has been registered.
*/
private Map<String, ActionHandler> globalActionHandlersByCommandId = new HashMap<String, ActionHandler>();
/**
* The list of handler submissions submitted to the workbench command
* support. This list may be empty, but it is never <code>null</code>.
*/
private List<IHandlerActivation> handlerActivations = new ArrayList<IHandlerActivation>();
/**
* The number of large updates that are currently going on. If this is
* number is greater than zero, then UI updateActionBars is a no-op.
*
* @since 3.1
*/
private int largeUpdates = 0;
private IExtensionTracker tracker;
private void firePageClosed() {
pageListeners.firePageClosed(page);
}
private void firePageOpened() {
pageListeners.firePageOpened(page);
}
private void firePageActivated() {
pageListeners.firePageActivated(page);
}
void registerGlobalAction(IAction globalAction) {
String commandId = globalAction.getActionDefinitionId();
if (commandId != null) {
final Object value = globalActionHandlersByCommandId.get(commandId);
if (value instanceof ActionHandler) {
// This handler is about to get clobbered, so dispose it.
final ActionHandler handler = (ActionHandler) value;
handler.dispose();
}
if (globalAction instanceof CommandAction) {
final String actionId = globalAction.getId();
if (actionId != null) {
final IActionCommandMappingService mappingService = (IActionCommandMappingService) serviceLocator
.getService(IActionCommandMappingService.class);
mappingService.map(actionId, commandId);
}
} else {
globalActionHandlersByCommandId.put(commandId, new ActionHandler(globalAction));
}
}
submitGlobalActions();
}
/**
* <p>
* Submits the action handlers for action set actions and global actions.
* Global actions are given priority, so that if a global action and an
* action set action both handle the same command, the global action is
* given priority.
* </p>
* <p>
* These submissions are submitted as <code>Priority.LEGACY</code>, which
* means that they are the lowest priority. This means that if a higher
* priority submission handles the same command under the same conditions,
* that that submission will become the handler.
* </p>
*/
void submitGlobalActions() {
final IHandlerService handlerService = (IHandlerService) getService(IHandlerService.class);
/*
* Mash the action sets and global actions together, with global actions
* taking priority.
*/
Map<String, ActionHandler> handlersByCommandId = new HashMap<String, ActionHandler>();
handlersByCommandId.putAll(globalActionHandlersByCommandId);
List<IHandlerActivation> newHandlers = new ArrayList<IHandlerActivation>(
handlersByCommandId.size());
Iterator<IHandlerActivation> existingIter = handlerActivations.iterator();
while (existingIter.hasNext()) {
IHandlerActivation next = existingIter.next();
String cmdId = next.getCommandId();
Object handler = handlersByCommandId.get(cmdId);
if (handler == next.getHandler()) {
handlersByCommandId.remove(cmdId);
newHandlers.add(next);
} else {
handlerService.deactivateHandler(next);
}
}
final Shell shell = getShell();
if (shell != null) {
final Expression expression = new ActiveShellExpression(shell);
for (Iterator<Entry<String, ActionHandler>> iterator = handlersByCommandId.entrySet()
.iterator(); iterator.hasNext();) {
Entry<String, ActionHandler> entry = iterator.next();
String commandId = entry.getKey();
IHandler handler = entry.getValue();
newHandlers.add(handlerService.activateHandler(commandId, handler, expression));
}
}
handlerActivations = newHandlers;
}
/**
* Add a generic property listener.
*
* @param listener
* the listener to add
* @since 3.3
*/
public void addPropertyChangeListener(IPropertyChangeListener listener) {
genericPropertyListeners.add(listener);
}
/**
* Removes a generic property listener.
*
* @param listener
* the listener to remove
* @since 3.3
*/
public void removePropertyChangeListener(IPropertyChangeListener listener) {
genericPropertyListeners.remove(listener);
}
private void firePropertyChanged(final String property, final Object oldValue,
final Object newValue) {
PropertyChangeEvent event = new PropertyChangeEvent(this, property, oldValue, newValue);
Object[] listeners = genericPropertyListeners.getListeners();
for (int i = 0; i < listeners.length; i++) {
IPropertyChangeListener listener = (IPropertyChangeListener) listeners[i];
listener.propertyChange(event);
}
}
/*
* Adds an listener to the part service.
*/
public void addPageListener(IPageListener l) {
pageListeners.addPageListener(l);
}
/**
* @see org.eclipse.ui.IPageService
*/
public void addPerspectiveListener(org.eclipse.ui.IPerspectiveListener l) {
perspectiveListeners.addPerspectiveListener(l);
}
/**
* Close the window.
*
* Assumes that busy cursor is active.
*/
private boolean busyClose(boolean remove) {
// Whether the window was actually closed or not
boolean windowClosed = false;
// Setup internal flags to indicate window is in
// progress of closing and no update should be done.
closing = true;
updateDisabled = true;
try {
// Only do the check if it is OK to close if we are not closing
// via the workbench as the workbench will check this itself.
Workbench workbench = getWorkbenchImpl();
int count = workbench.getWorkbenchWindowCount();
// also check for starting - if the first window dies on startup
// then we'll need to open a default window.
if (!workbench.isStarting() && !workbench.isClosing() && count <= 1
&& workbench.getWorkbenchConfigurer().getExitOnLastWindowClose()) {
windowClosed = workbench.close();
} else {
if (okToClose()) {
windowClosed = hardClose(remove);
}
}
} finally {
if (!windowClosed) {
// Reset the internal flags if window was not closed.
closing = false;
updateDisabled = false;
}
}
if (windowClosed && tracker != null) {
tracker.close();
}
return windowClosed;
}
public Shell getShell() {
return (Shell) model.getWidget();
}
public boolean close(final boolean remove) {
final boolean[] ret = new boolean[1];
BusyIndicator.showWhile(null, new Runnable() {
public void run() {
ret[0] = busyClose(remove);
}
});
return ret[0];
}
/**
* @see IWorkbenchWindow
*/
public boolean close() {
return close(true);
}
protected boolean isClosing() {
return closing || getWorkbenchImpl().isClosing();
}
/**
* Notifies interested parties (namely the advisor) that the window is about
* to be opened.
*
* @since 3.1
*/
private void fireWindowOpening() {
// let the application do further configuration
getWindowAdvisor().preWindowOpen();
}
void fireWindowOpened() {
// notify the advisor
getWindowAdvisor().postWindowOpen();
}
/**
* Notifies interested parties (namely the advisor) that the window has been
* restored from a previously saved state.
*
* @throws WorkbenchException
* passed through from the advisor
* @since 3.1
*/
void fireWindowRestored() throws WorkbenchException {
StartupThreading.runWithWorkbenchExceptions(new StartupRunnable() {
public void runWithException() throws Throwable {
getWindowAdvisor().postWindowRestore();
}
});
}
/**
* Notifies interested parties (namely the advisor and the window listeners)
* that the window has been closed.
*
* @since 3.1
*/
private void fireWindowClosed() {
// let the application do further deconfiguration
getWindowAdvisor().postWindowClose();
getWorkbenchImpl().fireWindowClosed(this);
}
/**
* Fires perspective activated
*/
void firePerspectiveActivated(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
UIListenerLogging.logPerspectiveEvent(this, page, perspective,
UIListenerLogging.PLE_PERSP_ACTIVATED);
perspectiveListeners.firePerspectiveActivated(page, perspective);
}
/**
* Fires perspective deactivated.
*
* @since 3.2
*/
void firePerspectivePreDeactivate(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
UIListenerLogging.logPerspectiveEvent(this, page, perspective,
UIListenerLogging.PLE_PERSP_PRE_DEACTIVATE);
perspectiveListeners.firePerspectivePreDeactivate(page, perspective);
}
/**
* Fires perspective deactivated.
*
* @since 3.1
*/
void firePerspectiveDeactivated(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
UIListenerLogging.logPerspectiveEvent(this, page, perspective,
UIListenerLogging.PLE_PERSP_DEACTIVATED);
perspectiveListeners.firePerspectiveDeactivated(page, perspective);
}
/**
* Fires perspective changed
*
* @param page
* @param perspective
* @param changeId
*/
public void firePerspectiveChanged(IWorkbenchPage page, IPerspectiveDescriptor perspective,
String changeId) {
// Some callers call this even when there is no active perspective.
// Just ignore this case.
if (perspective != null) {
UIListenerLogging.logPerspectiveChangedEvent(this, page, perspective, null, changeId);
perspectiveListeners.firePerspectiveChanged(page, perspective, changeId);
}
}
/**
* Fires perspective changed for an affected part
*
* @param page
* @param perspective
* @param partRef
* @param changeId
*/
public void firePerspectiveChanged(IWorkbenchPage page, IPerspectiveDescriptor perspective,
IWorkbenchPartReference partRef, String changeId) {
// Some callers call this even when there is no active perspective.
// Just ignore this case.
if (perspective != null) {
UIListenerLogging
.logPerspectiveChangedEvent(this, page, perspective, partRef, changeId);
perspectiveListeners.firePerspectiveChanged(page, perspective, partRef, changeId);
}
}
/**
* Fires perspective closed
*/
void firePerspectiveClosed(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
UIListenerLogging.logPerspectiveEvent(this, page, perspective,
UIListenerLogging.PLE_PERSP_CLOSED);
perspectiveListeners.firePerspectiveClosed(page, perspective);
}
/**
* Fires perspective opened
*/
void firePerspectiveOpened(IWorkbenchPage page, IPerspectiveDescriptor perspective) {
UIListenerLogging.logPerspectiveEvent(this, page, perspective,
UIListenerLogging.PLE_PERSP_OPENED);
perspectiveListeners.firePerspectiveOpened(page, perspective);
}
/**
* Fires perspective saved as.
*
* @since 3.1
*/
void firePerspectiveSavedAs(IWorkbenchPage page, IPerspectiveDescriptor oldPerspective,
IPerspectiveDescriptor newPerspective) {
UIListenerLogging.logPerspectiveSavedAs(this, page, oldPerspective, newPerspective);
perspectiveListeners.firePerspectiveSavedAs(page, oldPerspective, newPerspective);
}
/**
* Returns the action bars for this window.
*
* @return this window's action bars
*/
public WWinActionBars getActionBars() {
if (actionBars == null) {
actionBars = new WWinActionBars(this);
}
return actionBars;
}
/**
* Returns the active page.
*
* @return the active page
*/
public IWorkbenchPage getActivePage() {
return page;
}
/**
* Returns an array of the pages in the workbench window.
*
* @return an array of pages
*/
public IWorkbenchPage[] getPages() {
return page == null ? new IWorkbenchPage[0] : new IWorkbenchPage[] { page };
}
/**
* @see IWorkbenchWindow
*/
public IPartService getPartService() {
return partService;
}
/**
* Returns the layout for the shell.
*
* @return the layout for the shell
*/
protected Layout getLayout() {
return null;
}
/**
* @see IWorkbenchWindow
*/
public ISelectionService getSelectionService() {
return selectionService;
}
/**
* Returns <code>true</code> when the window's shell is activated,
* <code>false</code> when it's shell is deactivated
*
* @return boolean <code>true</code> when shell activated,
* <code>false</code> when shell deactivated
*/
public boolean getShellActivated() {
return shellActivated;
}
/**
* @see IWorkbenchWindow
*/
public IWorkbench getWorkbench() {
return PlatformUI.getWorkbench();
}
private void hideNonRestorablePlaceholder(MPlaceholder placeholder) {
MElementContainer<MUIElement> parent = placeholder.getParent();
// if this placeholder is currently the selected element, its parent
// needs to select something else
if (parent.getSelectedElement() == placeholder) {
// if nothing found just set it to null
MUIElement candidate = null;
// search for a valid candidate from the list of children
for (MUIElement element : parent.getChildren()) {
if (element.isVisible() && element.isToBeRendered() && element != placeholder) {
candidate = element;
break;
}
}
parent.setSelectedElement(candidate);
}
// this tag is only applied to editors technically speaking, but better
// safe than sorry
MUIElement ref = placeholder.getRef();
if (ref != null && ref.getTags().contains(EPartService.REMOVE_ON_HIDE_TAG)) {
parent.getChildren().remove(placeholder);
}
placeholder.setToBeRendered(false);
}
private void hideNonRestorableViews() {
List<MPlaceholder> placeholders = modelService.findElements(model, null,
MPlaceholder.class, null);
IViewRegistry registry = getWorkbench().getViewRegistry();
for (MPlaceholder placeholder : placeholders) {
IViewDescriptor descriptor = registry.find(placeholder.getElementId());
if (descriptor != null && !descriptor.isRestorable()) {
hideNonRestorablePlaceholder(placeholder);
}
}
}
/**
* Unconditionally close this window. Assumes the proper flags have been set
* correctly (e.i. closing and updateDisabled)
*
* @param remove
* <code>true</code> if this window should be removed from the
* application model
*/
private boolean hardClose(boolean remove) {
try {
if (!remove) {
// we're in a shutdown case so we need to hide views that should
// not be restored
hideNonRestorableViews();
}
// clear some lables
// Remove the handler submissions. Bug 64024.
final IWorkbench workbench = getWorkbench();
final IHandlerService handlerService = (IHandlerService) workbench
.getService(IHandlerService.class);
handlerService.deactivateHandlers(handlerActivations);
final Iterator<IHandlerActivation> activationItr = handlerActivations.iterator();
while (activationItr.hasNext()) {
final IHandlerActivation activation = activationItr.next();
activation.getHandler().dispose();
}
handlerActivations.clear();
globalActionHandlersByCommandId.clear();
// Remove the enabled submissions. Bug 64024.
final IContextService contextService = (IContextService) workbench
.getService(IContextService.class);
contextService.unregisterShell(getShell());
firePageClosed();
fireWindowClosed();
// time to wipe our our populate
IMenuService menuService = (IMenuService) workbench.getService(IMenuService.class);
menuService.releaseContributions(((ContributionManager) getActionBars()
.getMenuManager()));
ICoolBarManager coolbar = getActionBars().getCoolBarManager();
if (coolbar != null) {
menuService.releaseContributions(((ContributionManager) coolbar));
}
getActionBarAdvisor().dispose();
getWindowAdvisor().dispose();
// Null out the progress region. Bug 64024.
progressRegion = null;
MWindow window = model;
engine.removeGui(model);
MElementContainer<MUIElement> parent = window.getParent();
if (remove) {
parent.getChildren().remove(window);
if (parent.getSelectedElement() == window) {
if (!parent.getChildren().isEmpty()) {
parent.setSelectedElement(parent.getChildren().get(0));
}
}
}
} finally {
try {
// Bring down all of the services ... after the window goes away
serviceLocator.dispose();
} catch (Exception ex) {
WorkbenchPlugin.log(ex);
}
menuRestrictions.clear();
}
return true;
}
/**
* @see IWorkbenchWindow
*/
public boolean isApplicationMenu(String menuID) {
// delegate this question to the action bar advisor
return getActionBarAdvisor().isApplicationMenu(menuID);
}
/**
* Called when this window is about to be closed.
*/
private boolean okToClose() {
// Save all of the editors.
if (!getWorkbenchImpl().isClosing()) {
IWorkbenchPage page = getActivePage();
if (page != null) {
return ((WorkbenchPage) page).saveAllEditors(true, true);
}
}
return true;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWindow#openPage(java.lang.String,
* org.eclipse.core.runtime.IAdaptable)
*/
public IWorkbenchPage openPage(final String perspectiveId, final IAdaptable input)
throws WorkbenchException {
final Object[] result = new Object[1];
BusyIndicator.showWhile(null, new Runnable() {
public void run() {
try {
result[0] = busyOpenPage(perspectiveId, input);
} catch (WorkbenchException e) {
result[0] = e;
}
}
});
if (result[0] instanceof IWorkbenchPage) {
return (IWorkbenchPage) result[0];
} else if (result[0] instanceof WorkbenchException) {
throw (WorkbenchException) result[0];
} else {
throw new WorkbenchException(WorkbenchMessages.WorkbenchWindow_exceptionMessage);
}
}
private IWorkbenchPage busyOpenPage(String perspectiveId, IAdaptable input)
throws WorkbenchException {
IPerspectiveDescriptor descriptor = workbench.getPerspectiveRegistry()
.findPerspectiveWithId(perspectiveId);
if (descriptor == null) {
throw new WorkbenchException(NLS.bind(
WorkbenchMessages.WorkbenchPage_ErrorCreatingPerspective, perspectiveId));
}
if (page == null) {
page = new WorkbenchPage(this, input);
model.getContext().set(IWorkbenchPage.class.getName(), page);
try {
ContextInjectionFactory.inject(page, model.getContext());
} catch (InjectionException e) {
throw new WorkbenchException(e.getMessage(), e);
}
firePageOpened();
partService.setPage(page);
} else {
IWorkbenchWindow window = getWorkbench().openWorkbenchWindow(perspectiveId, input);
return window.getActivePage();
}
perspective = descriptor;
page.setPerspective(perspective);
firePageActivated();
return page;
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.ui.IWorkbenchWindow#openPage(org.eclipse.core.runtime.IAdaptable
* )
*/
public IWorkbenchPage openPage(IAdaptable input) throws WorkbenchException {
return openPage(workbench.getPerspectiveRegistry().getDefaultPerspective(), input);
}
/*
* Removes an listener from the part service.
*/
public void removePageListener(IPageListener l) {
pageListeners.removePageListener(l);
}
/**
* @see org.eclipse.ui.IPageService
*/
public void removePerspectiveListener(org.eclipse.ui.IPerspectiveListener l) {
perspectiveListeners.removePerspectiveListener(l);
}
/*
* (non-Javadoc) Method declared on IRunnableContext.
*/
public void run(final boolean fork, boolean cancelable, final IRunnableWithProgress runnable)
throws InvocationTargetException, InterruptedException {
final StatusLineManager manager = getStatusLineManager();
// Temporary Hack for bug 330106, remove when bug 334093 is fixed
boolean progressHack = manager.getControl() == null;
if (manager == null || progressHack) {
runnable.run(new NullProgressMonitor());
} else {
boolean wasCancelEnabled = manager.isCancelEnabled();
try {
manager.setCancelEnabled(cancelable);
final InvocationTargetException[] ite = new InvocationTargetException[1];
final InterruptedException[] ie = new InterruptedException[1];
BusyIndicator.showWhile(getShell().getDisplay(), new Runnable() {
public void run() {
try {
ModalContext.run(runnable, fork, manager.getProgressMonitor(),
getShell().getDisplay());
} catch (InvocationTargetException e) {
ite[0] = e;
} catch (InterruptedException e) {
ie[0] = e;
} finally {
manager.getProgressMonitor().done();
}
}
});
if (ite[0] != null) {
throw ite[0];
} else if (ie[0] != null) {
throw ie[0];
}
} finally {
manager.setCancelEnabled(wasCancelEnabled);
}
}
}
/**
* Sets the active page within the window.
*
* @param in
* identifies the new active page, or <code>null</code> for no
* active page
*/
public void setActivePage(final IWorkbenchPage in) {
if (getActivePage() != in) {
if (in == null) {
firePageClosed();
}
page = (WorkbenchPage) in;
model.getContext().set(IWorkbenchPage.class, page);
partService.setPage(page);
}
}
private Set<Object> menuRestrictions = new HashSet<Object>();
private Boolean valueOf(boolean result) {
return result ? Boolean.TRUE : Boolean.FALSE;
}
public Set<Object> getMenuRestrictions() {
return menuRestrictions;
}
void liftRestrictions() {
if (menuRestrictions.isEmpty()) {
return;
}
EvaluationReference[] refs = menuRestrictions
.toArray(new EvaluationReference[menuRestrictions.size()]);
IEvaluationService es = (IEvaluationService) serviceLocator
.getService(IEvaluationService.class);
IEvaluationContext currentState = es.getCurrentState();
boolean changeDetected = false;
for (int i = 0; i < refs.length; i++) {
EvaluationReference reference = refs[i];
reference.setPostingChanges(true);
boolean os = reference.evaluate(currentState);
reference.clearResult();
boolean ns = reference.evaluate(currentState);
if (os != ns) {
changeDetected = true;
reference.getListener().propertyChange(
new PropertyChangeEvent(reference, reference.getProperty(), valueOf(os),
valueOf(ns)));
}
}
if (changeDetected) {
IMenuService ms = (IMenuService) getWorkbench().getService(IMenuService.class);
if (ms instanceof WorkbenchMenuService) {
((WorkbenchMenuService) ms).updateManagers();
}
}
}
void imposeRestrictions() {
Iterator<?> i = menuRestrictions.iterator();
while (i.hasNext()) {
EvaluationReference ref = (EvaluationReference) i.next();
ref.setPostingChanges(false);
}
}
/**
* Hooks a listener to track the activation and deactivation of the window's
* shell.
*/
private void trackShellActivation() {
getShell().addShellListener(new ShellAdapter() {
public void shellActivated(ShellEvent event) {
shellActivated = true;
serviceLocator.activate();
if (getActivePage() != null) {
getWorkbenchImpl().fireWindowActivated(WorkbenchWindow.this);
}
liftRestrictions();
}
public void shellDeactivated(ShellEvent event) {
shellActivated = false;
imposeRestrictions();
serviceLocator.deactivate();
if (getActivePage() != null) {
getWorkbenchImpl().fireWindowDeactivated(WorkbenchWindow.this);
}
}
});
}
/**
* update the action bars.
*/
public void updateActionBars() {
if (updateDisabled || updatesDeferred()) {
return;
}
getCoolBarManager2().update(true);
}
/**
* Returns true iff we are currently deferring UI processing due to a large
* update
*
* @return true iff we are deferring UI updates.
* @since 3.1
*/
private boolean updatesDeferred() {
return largeUpdates > 0;
}
/**
* <p>
* Indicates the start of a large update within this window. This is used to
* disable CPU-intensive, change-sensitive services that were temporarily
* disabled in the midst of large changes. This method should always be
* called in tandem with <code>largeUpdateEnd</code>, and the event loop
* should not be allowed to spin before that method is called.
* </p>
* <p>
* Important: always use with <code>largeUpdateEnd</code>!
* </p>
*
* @since 3.1
*/
public final void largeUpdateStart() {
largeUpdates++;
}
/**
* <p>
* Indicates the end of a large update within this window. This is used to
* re-enable services that were temporarily disabled in the midst of large
* changes. This method should always be called in tandem with
* <code>largeUpdateStart</code>, and the event loop should not be allowed
* to spin before this method is called.
* </p>
* <p>
* Important: always protect this call by using <code>finally</code>!
* </p>
*
* @since 3.1
*/
public final void largeUpdateEnd() {
if (--largeUpdates == 0) {
updateActionBars();
}
}
/**
* Update the visible action sets. This method is typically called from a
* page when the user changes the visible action sets within the
* prespective.
*/
public void updateActionSets() {
if (updateDisabled) {
return;
}
}
private ListenerList actionSetListeners = null;
private ListenerList backgroundSaveListeners = new ListenerList(ListenerList.IDENTITY);
private ISelectionService selectionService;
private ITrimManager trimManager;
final void addActionSetsListener(final IActionSetsListener listener) {
if (actionSetListeners == null) {
actionSetListeners = new ListenerList();
}
actionSetListeners.add(listener);
}
final void removeActionSetsListener(final IActionSetsListener listener) {
if (actionSetListeners != null) {
actionSetListeners.remove(listener);
if (actionSetListeners.isEmpty()) {
actionSetListeners = null;
}
}
}
/**
* Returns whether the heap status indicator should be shown.
*
* @return <code>true</code> to show the heap status indicator,
* <code>false</code> otherwise
*/
private boolean getShowHeapStatus() {
return // Show if the preference is set or debug option is on
PrefUtil.getAPIPreferenceStore().getBoolean(
IWorkbenchPreferenceConstants.SHOW_MEMORY_MONITOR)
|| Boolean
.valueOf(
Platform.getDebugOption(PlatformUI.PLUGIN_ID
+ "/perf/showHeapStatus")).booleanValue(); //$NON-NLS-1$
}
public void showHeapStatus(boolean show) {
MUIElement hsElement = modelService.find(
"org.eclipse.ui.HeapStatus", modelService.getTrim(model, SideValue.BOTTOM)); //$NON-NLS-1$
if (hsElement != null && hsElement.isToBeRendered() != show) {
hsElement.setToBeRendered(show);
getShell().layout(null, SWT.ALL | SWT.CHANGED | SWT.DEFER);
}
}
/**
* Returns the unique object that applications use to configure this window.
* <p>
* IMPORTANT This method is declared package-private to prevent regular
* plug-ins from downcasting IWorkbenchWindow to WorkbenchWindow and getting
* hold of the workbench window configurer that would allow them to tamper
* with the workbench window. The workbench window configurer is available
* only to the application.
* </p>
*/
/* package - DO NOT CHANGE */
WorkbenchWindowConfigurer getWindowConfigurer() {
if (windowConfigurer == null) {
// lazy initialize
windowConfigurer = new WorkbenchWindowConfigurer(this);
}
return windowConfigurer;
}
/**
* Returns the workbench advisor. Assumes the workbench has been created
* already.
* <p>
* IMPORTANT This method is declared private to prevent regular plug-ins
* from downcasting IWorkbenchWindow to WorkbenchWindow and getting hold of
* the workbench advisor that would allow them to tamper with the workbench.
* The workbench advisor is internal to the application.
* </p>
*/
private/* private - DO NOT CHANGE */
WorkbenchAdvisor getAdvisor() {
return getWorkbenchImpl().getAdvisor();
}
/**
* Returns the window advisor, creating a new one for this window if needed.
* <p>
* IMPORTANT This method is declared package private to prevent regular
* plug-ins from downcasting IWorkbenchWindow to WorkbenchWindow and getting
* hold of the window advisor that would allow them to tamper with the
* window. The window advisor is internal to the application.
* </p>
*/
/* package private - DO NOT CHANGE */
WorkbenchWindowAdvisor getWindowAdvisor() {
if (windowAdvisor == null) {
windowAdvisor = getAdvisor().createWorkbenchWindowAdvisor(getWindowConfigurer());
Assert.isNotNull(windowAdvisor);
}
return windowAdvisor;
}
/**
* Returns the action bar advisor, creating a new one for this window if
* needed.
* <p>
* IMPORTANT This method is declared private to prevent regular plug-ins
* from downcasting IWorkbenchWindow to WorkbenchWindow and getting hold of
* the action bar advisor that would allow them to tamper with the window's
* action bars. The action bar advisor is internal to the application.
* </p>
*/
private/* private - DO NOT CHANGE */
ActionBarAdvisor getActionBarAdvisor() {
if (actionBarAdvisor == null) {
actionBarAdvisor = getWindowAdvisor().createActionBarAdvisor(
getWindowConfigurer().getActionBarConfigurer());
Assert.isNotNull(actionBarAdvisor);
}
return actionBarAdvisor;
}
/*
* Returns the IWorkbench implementation.
*/
private Workbench getWorkbenchImpl() {
return Workbench.getInstance();
}
/**
* Fills the window's real action bars.
*
* @param flags
* indicate which bars to fill
*/
public void fillActionBars(int flags) {
Workbench workbench = getWorkbenchImpl();
workbench.largeUpdateStart();
try {
getActionBarAdvisor().fillActionBars(flags);
//
// 3.3 start
final IMenuService menuService = (IMenuService) serviceLocator
.getService(IMenuService.class);
menuService.populateContributionManager((ContributionManager) getActionBars()
.getMenuManager(), MenuUtil.MAIN_MENU);
ICoolBarManager coolbar = getActionBars().getCoolBarManager();
if (coolbar != null) {
menuService.populateContributionManager((ContributionManager) coolbar,
MenuUtil.MAIN_TOOLBAR);
}
// 3.3 end
} finally {
workbench.largeUpdateEnd();
}
}
/**
* Fills the window's proxy action bars.
*
* @param proxyBars
* the proxy configurer
* @param flags
* indicate which bars to fill
*/
public void fillActionBars(IActionBarConfigurer2 proxyBars, int flags) {
Assert.isNotNull(proxyBars);
WorkbenchWindowConfigurer.WindowActionBarConfigurer wab = (WorkbenchWindowConfigurer.WindowActionBarConfigurer) getWindowConfigurer()
.getActionBarConfigurer();
wab.setProxy(proxyBars);
try {
getActionBarAdvisor().fillActionBars(flags | ActionBarAdvisor.FILL_PROXY);
} finally {
wab.setProxy(null);
}
}
/**
* @param visible
* whether the cool bar should be shown. This is only applicable
* if the window configurer also wishes either the cool bar to be
* visible.
* @since 3.0
*/
public void setCoolBarVisible(boolean visible) {
boolean oldValue = coolBarVisible;
coolBarVisible = visible;
if (oldValue != coolBarVisible) {
firePropertyChanged(PROP_COOLBAR_VISIBLE, oldValue ? Boolean.TRUE : Boolean.FALSE,
coolBarVisible ? Boolean.TRUE : Boolean.FALSE);
}
}
/**
* @return whether the cool bar should be shown. This is only applicable if
* the window configurer also wishes either the cool bar to be
* visible.
* @since 3.0
*/
public boolean getCoolBarVisible() {
return getWindowConfigurer().getShowCoolBar() && coolBarVisible;
}
/**
* @param visible
* whether the perspective bar should be shown. This is only
* applicable if the window configurer also wishes either the
* perspective bar to be visible.
* @since 3.0
*/
public void setPerspectiveBarVisible(boolean visible) {
boolean oldValue = perspectiveBarVisible;
perspectiveBarVisible = visible;
if (oldValue != perspectiveBarVisible) {
firePropertyChanged(PROP_PERSPECTIVEBAR_VISIBLE, oldValue ? Boolean.TRUE
: Boolean.FALSE, perspectiveBarVisible ? Boolean.TRUE : Boolean.FALSE);
}
}
/**
* @return whether the perspective bar should be shown. This is only
* applicable if the window configurer also wishes either the
* perspective bar to be visible.
* @since 3.0
*/
public boolean getPerspectiveBarVisible() {
return getWindowConfigurer().getShowPerspectiveBar() && perspectiveBarVisible;
}
/**
* Tell the workbench window a visible state for the fastview bar. This is
* only applicable if the window configurer also wishes the fast view bar to
* be visible.
*
* @param visible
* <code>true</code> or <code>false</code>
* @since 3.2
*/
public void setFastViewBarVisible(boolean visible) {
boolean oldValue = fastViewBarVisible;
fastViewBarVisible = visible;
if (oldValue != fastViewBarVisible) {
}
}
/**
* The workbench window take on the fastview bar. This is only applicable if
* the window configurer also wishes the fast view bar to be visible.
*
* @return <code>true</code> if the workbench window thinks the fastview bar
* should be visible.
* @since 3.2
*/
public boolean getFastViewBarVisible() {
return fastViewBarVisible;
}
/**
* @param visible
* whether the perspective bar should be shown. This is only
* applicable if the window configurer also wishes either the
* perspective bar to be visible.
* @since 3.0
*/
public void setStatusLineVisible(boolean visible) {
boolean oldValue = statusLineVisible;
statusLineVisible = visible;
if (oldValue != statusLineVisible) {
firePropertyChanged(PROP_STATUS_LINE_VISIBLE, oldValue ? Boolean.TRUE : Boolean.FALSE,
statusLineVisible ? Boolean.TRUE : Boolean.FALSE);
}
}
/**
* @return whether the perspective bar should be shown. This is only
* applicable if the window configurer also wishes either the
* perspective bar to be visible.
* @since 3.0
*/
public boolean getStatusLineVisible() {
return statusLineVisible;
}
public boolean getShowFastViewBars() {
return getWindowConfigurer().getShowFastViewBars();
}
/**
* Return the action bar presentation used for creating toolbars. This is
* for internal use only, used for consistency with the window.
*
* @return the presentation used.
*/
public IActionBarPresentationFactory getActionBarPresentationFactory() {
E4Util.unsupported("getActionBarPresentationFactory: doesn't do anything useful, should cause NPE"); //$NON-NLS-1$
// allow replacement of the actionbar presentation
IActionBarPresentationFactory actionBarPresentation = null;
AbstractPresentationFactory presentationFactory = getWindowConfigurer()
.getPresentationFactory();
if (presentationFactory instanceof IActionBarPresentationFactory) {
actionBarPresentation = ((IActionBarPresentationFactory) presentationFactory);
}
return actionBarPresentation;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.window.ApplicationWindow#showTopSeperator()
*/
protected boolean showTopSeperator() {
return false;
}
/**
* @return Returns the progressRegion.
*/
public ProgressRegion getProgressRegion() {
return progressRegion;
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWindow#getExtensionTracker()
*/
public IExtensionTracker getExtensionTracker() {
return (IExtensionTracker) model.getContext().get(IExtensionTracker.class.getName());
}
/**
* Returns the default page input for workbench pages opened in this window.
*
* @return the default page input or <code>null</code> if none
* @since 3.1
*/
IAdaptable getDefaultPageInput() {
return getWorkbenchImpl().getDefaultPageInput();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.IWorkbenchWindow#getTrimManager()
*/
public ITrimManager getTrimManager() {
if (trimManager == null) {
// HACK !! Add a 'null' trim manager...this is specifically in place
// to prevent an NPE when using Intro's 'Go to Workbench' handling
// See Bug 365625 for details...
trimManager = new ITrimManager() {
public void addTrim(int areaId, IWindowTrim trim) {
}
public void addTrim(int areaId, IWindowTrim trim, IWindowTrim beforeMe) {
}
public void removeTrim(IWindowTrim toRemove) {
}
public IWindowTrim getTrim(String id) {
return null;
}
public int[] getAreaIds() {
return null;
}
public List getAreaTrim(int areaId) {
return null;
}
public void updateAreaTrim(int id, List trim, boolean removeExtra) {
}
public List getAllTrim() {
return null;
}
public void setTrimVisible(IWindowTrim trim, boolean visible) {
}
public void forceLayout() {
}
};
}
return trimManager;
}
/**
* Initializes all of the default command-based services for the workbench
* window.
*/
private final void initializeDefaultServices() {
IEclipseContext windowContext = model.getContext();
serviceLocator.registerService(IWorkbenchLocationService.class,
new WorkbenchLocationService(IServiceScopes.WINDOW_SCOPE, getWorkbench(), this,
null, null, null, 1));
// added back for legacy reasons
serviceLocator.registerService(IWorkbenchWindow.class, this);
final ActionCommandMappingService mappingService = new ActionCommandMappingService();
serviceLocator.registerService(IActionCommandMappingService.class, mappingService);
selectionService = ContextInjectionFactory.make(SelectionService.class, model.getContext());
serviceLocator.registerService(ISelectionService.class, selectionService);
LegacyHandlerService hs = new LegacyHandlerService(windowContext);
windowContext.set(IHandlerService.class.getName(), hs);
final LegacyActionPersistence actionPersistence = new LegacyActionPersistence(this);
serviceLocator.registerService(LegacyActionPersistence.class, actionPersistence);
actionPersistence.read();
ICommandService cmdService = (ICommandService) workbench.getService(ICommandService.class);
SlaveCommandService slaveCmdService = new SlaveCommandService(cmdService,
IServiceScopes.WINDOW_SCOPE, this, model.getContext());
serviceLocator.registerService(ICommandService.class, slaveCmdService);
serviceLocator.registerService(IUpdateService.class, slaveCmdService);
IContextService cxs = ContextInjectionFactory
.make(ContextService.class, model.getContext());
serviceLocator.registerService(IContextService.class, cxs);
}
public final Object getService(final Class key) {
return serviceLocator.getService(key);
}
public final boolean hasService(final Class key) {
return serviceLocator.hasService(key);
}
/**
* Toggle the visibility of the coolbar/perspective bar. This method
* respects the window configurer and will only toggle visibility if the
* item in question was originally declared visible by the window advisor.
*
* @since 3.3
*/
public void toggleToolbarVisibility() {
MTrimBar topTrim = getTopTrim();
if (topTrim != null) {
if (topTrim.isToBeRendered()) {
IPresentationEngine presentationEngine = model.getContext().get(
IPresentationEngine.class);
topTrim.setToBeRendered(false);
presentationEngine.removeGui(topTrim);
} else {
IPresentationEngine presentationEngine = model.getContext().get(
IPresentationEngine.class);
topTrim.setToBeRendered(true);
presentationEngine.createGui(topTrim, model.getWidget(), model.getContext());
}
getShell().layout();
}
}
/* package */void addBackgroundSaveListener(IBackgroundSaveListener listener) {
backgroundSaveListeners.add(listener);
}
/* package */void fireBackgroundSaveStarted() {
Object[] listeners = backgroundSaveListeners.getListeners();
for (int i = 0; i < listeners.length; i++) {
IBackgroundSaveListener listener = (IBackgroundSaveListener) listeners[i];
listener.handleBackgroundSaveStarted();
}
}
/* package */void removeBackgroundSaveListener(IBackgroundSaveListener listener) {
backgroundSaveListeners.remove(listener);
}
public MWindow getModel() {
return model;
}
StatusLineManager statusLineManager = null;
public StatusLineManager getStatusLineManager() {
if (statusLineManager == null) {
statusLineManager = new StatusLineManager();
}
return statusLineManager;
}
private CoolBarManager2 oldCBM = new CoolBarManager2();
private CoolBarToTrimManager coolbarToTrim;
public ICoolBarManager getCoolBarManager2() {
if (coolbarToTrim == null) {
coolbarToTrim = new CoolBarToTrimManager(application, model, workbenchTrimElements,
rendererFactory);
}
return coolbarToTrim;
}
public CoolBarManager getCoolBarManager() {
new Exception("Bad call to getCoolBarManager()").printStackTrace(); //$NON-NLS-1$
return oldCBM;
}
private IContributionManagerOverrides toolbarOverride = new IContributionManagerOverrides() {
public Integer getAccelerator(IContributionItem item) {
return null;
}
public String getAcceleratorText(IContributionItem item) {
return null;
}
public Boolean getEnabled(IContributionItem item) {
return null;
}
public String getText(IContributionItem item) {
return null;
}
public Boolean getVisible(IContributionItem item) {
if (page == null)
return null;
MPerspective curPersp = page.getCurrentPerspective();
if (curPersp == null)
return null;
// Find the command ID
String id = CustomizePerspectiveDialog.getIDFromIContributionItem(item);
if (id == null)
return null;
String hiddenToolItems = page.getHiddenItems();
if (hiddenToolItems.contains(ModeledPageLayout.HIDDEN_TOOLBAR_PREFIX + id)) {
return Boolean.FALSE;
}
return null;
}
};
MenuManager menuManager = new MenuManager("MenuBar", "org.eclipse.ui.main.menu"); //$NON-NLS-1$//$NON-NLS-2$
public MenuManager getMenuManager() {
return menuManager;
}
public IMenuManager getMenuBarManager() {
return menuManager;
}
private IContributionManagerOverrides menuOverride = new IContributionManagerOverrides() {
public Integer getAccelerator(IContributionItem item) {
return null;
}
public String getAcceleratorText(IContributionItem item) {
return null;
}
public Boolean getEnabled(IContributionItem item) {
return null;
}
public String getText(IContributionItem item) {
return null;
}
public Boolean getVisible(IContributionItem item) {
if (page == null)
return null;
MPerspective curPersp = page.getCurrentPerspective();
if (curPersp == null)
return null;
// Find the command ID
String id = CustomizePerspectiveDialog.getIDFromIContributionItem(item);
if (id == null)
return null;
String hiddenToolItems = page.getHiddenItems();
if (hiddenToolItems.contains(ModeledPageLayout.HIDDEN_MENU_PREFIX + id)) {
return Boolean.FALSE;
}
return null;
}
};
ToolBarManager2 toolBarManager = new ToolBarManager2();
private Runnable menuUpdater;
public IToolBarManager2 getToolBarManager2() {
return toolBarManager;
}
public IToolBarManager getToolBarManager() {
return getToolBarManager2();
}
public CustomizePerspectiveDialog createCustomizePerspectiveDialog(
IPerspectiveDescriptor persp, IEclipseContext context) {
return new CustomizePerspectiveDialog(getWindowConfigurer(), persp, context);
}
}