08443e857c606963e0aac76b5acf8198d73c8eed
[phpeclipse.git] / net.sourceforge.phpeclipse.webbrowser / src / org / eclipse / webbrowser / OpenBrowserWorkbenchAction.java
1 /**
2  * Copyright (c) 2003 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  *    IBM - Initial API and implementation
10  */
11 package org.eclipse.webbrowser;
12
13 import org.eclipse.jface.viewers.ISelection;
14 import org.eclipse.jface.action.IAction;
15 import org.eclipse.ui.*;
16 import org.eclipse.webbrowser.WebBrowser;
17 import org.eclipse.webbrowser.WebBrowserEditorInput;
18 /**
19  * Action to open the Web broswer.
20  */
21 public class OpenBrowserWorkbenchAction implements IWorkbenchWindowActionDelegate {
22         /**
23          * OpenBrowserWorkbenchAction constructor comment.
24          */
25         public OpenBrowserWorkbenchAction() {
26                 super();
27         }
28
29         /**
30          * Disposes this action delegate.  The implementor should unhook any references
31          * to itself so that garbage collection can occur.
32          */
33         public void dispose() { }
34
35         /**
36          * Initializes this action delegate with the workbench window it will work in.
37          *
38          * @param window the window that provides the context for this delegate
39          */
40         public void init(IWorkbenchWindow window) { }
41
42         /**
43          * Performs this action.
44          * <p>
45          * This method is called when the delegating action has been triggered.
46          * Implement this method to do the actual work.
47          * </p>
48          *
49          * @param action the action proxy that handles the presentation portion of the
50          *   action
51          */
52         public void run(IAction action) {
53                 WebBrowser.openURL(new WebBrowserEditorInput(null, WebBrowserEditorInput.SHOW_ALL | WebBrowserEditorInput.FORCE_NEW_PAGE));
54         }
55
56         /**
57          * Notifies this action delegate that the selection in the workbench has changed.
58          * <p>
59          * Implementers can use this opportunity to change the availability of the
60          * action or to modify other presentation properties.
61          * </p>
62          *
63          * @param action the action proxy that handles presentation portion of the action
64          * @param selection the current selection in the workbench
65          */
66         public void selectionChanged(IAction action, ISelection selection) { }
67 }