Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java100
1 files changed, 87 insertions, 13 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java
index e219d18d2..809e79d21 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/CompareHandlerService.java
@@ -18,8 +18,7 @@ import org.eclipse.core.expressions.Expression;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.commands.ActionHandler;
import org.eclipse.swt.widgets.Shell;
-import org.eclipse.ui.ActiveShellExpression;
-import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.*;
import org.eclipse.ui.handlers.IHandlerActivation;
import org.eclipse.ui.handlers.IHandlerService;
import org.eclipse.ui.services.IServiceLocator;
@@ -27,53 +26,128 @@ import org.eclipse.ui.services.IServiceLocator;
public class CompareHandlerService {
private final List fActivations = new ArrayList();
- private IHandlerService fHandlerService;
private final Expression fExpression;
+ private ICompareContainer fContainer;
+ private boolean fDisposed;
+ private List fPaneActivations = new ArrayList();
+ private IHandlerService fHandlerService;
public static CompareHandlerService createFor(ICompareContainer container, Shell shell) {
IServiceLocator serviceLocator = container.getServiceLocator();
if (serviceLocator != null) {
IHandlerService service = (IHandlerService)serviceLocator.getService(IHandlerService.class);
if (service != null)
- return new CompareHandlerService(service, null);
+ return new CompareHandlerService(container, null);
}
if (container.getWorkbenchPart() == null && shell != null) {
// We're in a dialog so we can use an active shell expression
IHandlerService service = (IHandlerService)PlatformUI.getWorkbench().getService(IHandlerService.class);
if (service != null) {
Expression e = new ActiveShellExpression(shell);
- return new CompareHandlerService(service, e);
+ return new CompareHandlerService(container, e);
}
}
return new CompareHandlerService(null, null);
}
- private CompareHandlerService(IHandlerService handlerService,
+ private CompareHandlerService(ICompareContainer container,
Expression expression) {
- fHandlerService = handlerService;
+ fContainer = container;
fExpression = expression;
+ initialize();
}
public void registerAction(IAction action, String commandId) {
- if (fHandlerService == null)
+ IHandlerService handlerService = getHandlerService();
+ if (handlerService == null)
return;
action.setActionDefinitionId(commandId);
IHandlerActivation activation;
if (fExpression == null) {
- activation = fHandlerService.activateHandler(commandId, new ActionHandler(action));
+ activation = handlerService.activateHandler(commandId, new ActionHandler(action));
} else {
- activation = fHandlerService.activateHandler(commandId, new ActionHandler(action), fExpression);
+ activation = handlerService.activateHandler(commandId, new ActionHandler(action), fExpression);
}
if (activation != null) {
fActivations .add(activation);
}
}
+ private IHandlerService getHandlerService() {
+ if (fDisposed)
+ return null;
+ return fHandlerService;
+ }
+
+ private void initialize() {
+ if (fHandlerService == null) {
+ IServiceLocator serviceLocator = fContainer.getServiceLocator();
+ if (serviceLocator != null) {
+ IHandlerService service = (IHandlerService)serviceLocator.getService(IHandlerService.class);
+ if (service != null)
+ fHandlerService = service;
+ }
+ if (fHandlerService == null && fContainer.getWorkbenchPart() == null && fExpression != null) {
+ // We're in a dialog so we can use an active shell expression
+ IHandlerService service = (IHandlerService)PlatformUI.getWorkbench().getService(IHandlerService.class);
+ if (service != null) {
+ fHandlerService = service;
+ }
+ }
+ }
+ }
+
+ public void setGlobalActionHandler(String actionId, IAction actionHandler) {
+ IActionBars bars = getActionBars();
+ if (bars != null) {
+ bars.setGlobalActionHandler(actionId, actionHandler);
+ return;
+ } else if (fExpression != null && actionHandler != null && actionHandler.getActionDefinitionId() != null) {
+ IHandlerService service = getHandlerService();
+ if (service != null) {
+ IHandlerActivation activation = service.activateHandler(actionHandler.getActionDefinitionId(), new ActionHandler(actionHandler), fExpression);
+ fPaneActivations.add(activation);
+ return;
+ }
+ }
+ // Remove the action definition id since we won't get key bindings
+ if (actionHandler != null)
+ actionHandler.setActionDefinitionId(null);
+ }
+
+ private void updateActionBars() {
+ IActionBars bars = getActionBars();
+ if (bars != null)
+ bars.updateActionBars();
+ }
+
+ private void clearPaneActionHandlers() {
+ if (!fPaneActivations.isEmpty()) {
+ IHandlerService service = getHandlerService();
+ if (service != null) {
+ service.deactivateHandlers(fPaneActivations);
+ fPaneActivations.clear();
+ }
+ }
+ }
+
+ private IActionBars getActionBars() {
+ return fContainer.getActionBars();
+ }
+
public void dispose() {
- if (fHandlerService == null)
+ clearPaneActionHandlers();
+ IHandlerService service = getHandlerService();
+ if (service == null)
return;
- fHandlerService.deactivateHandlers(fActivations);
+ service.deactivateHandlers(fActivations);
fActivations.clear();
- fHandlerService = null;
+ fDisposed = true;
+ }
+
+ public void updatePaneActionHandlers(Runnable runnable) {
+ clearPaneActionHandlers();
+ runnable.run();
+ updateActionBars();
}
}

Back to the top