blob: 4f88f9ff0f80a5052215f29074cd4374930cbd74 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.ide.update;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.PlatformUI;
import org.eclipse.update.ui.UpdateManagerUI;
/**
* Action to invoke the Update install wizard.
*
* @since 3.0
*/
public class InstallWizardAction extends Action implements
IWorkbenchWindowActionDelegate {
private IWorkbenchWindow window;
public InstallWizardAction() {
// do nothing
}
public void run() {
openInstaller(PlatformUI.getWorkbench().getActiveWorkbenchWindow());
}
public void run(IAction action) {
openInstaller(window);
}
private void openInstaller(final IWorkbenchWindow window) {
BusyIndicator.showWhile(window.getShell().getDisplay(), new Runnable() {
public void run() {
UpdateManagerUI.openInstaller(window.getShell());
}
});
}
public void selectionChanged(IAction action, ISelection selection) {
// do nothing
}
public void dispose() {
// do nothing
}
public void init(IWorkbenchWindow window) {
this.window = window;
}
}