blob: 1947f2816b575babf2939245abd9ebb90f4165ab [file] [log] [blame]
//------------------------------------------------------------------------------
// Copyright (c) 2005, 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 implementation
//------------------------------------------------------------------------------
package org.eclipse.epf.library.ui.actions;
import org.eclipse.epf.library.ui.wizards.OpenLibraryWizard;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
/**
* Implements the Open Library action.
*
* @author Kelvin Low
* @since 1.0
*/
public class OpenLibraryAction implements IWorkbenchWindowActionDelegate {
private IWorkbenchWindow window;
/**
* @see IWorkbenchWindowActionDelegate#init
*/
public void init(IWorkbenchWindow window) {
this.window = window;
}
/**
* @see IWorkbenchWindowActionDelegate#selectionChanged
*/
public void selectionChanged(IAction action, ISelection selection) {
}
/**
* @see IWorkbenchWindowActionDelegate#run
*/
public void run(IAction action) {
OpenLibraryWizard wizard = new OpenLibraryWizard();
wizard.init(window.getWorkbench(), null);
Shell shell = Display.getCurrent().getActiveShell();
WizardDialog dialog = new WizardDialog(shell, wizard);
dialog.create();
dialog.open();
}
/**
* @see IWorkbenchWindowActionDelegate#dispose
*/
public void dispose() {
}
}