1 /***********************************************************************************************************************************
2 * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made
3 * available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at
4 * http://www.eclipse.org/legal/cpl-v10.html
6 * Contributors: IBM Corporation - Initial implementation
8 **********************************************************************************************************************************/
9 package net.sourceforge.phpeclipse.actions;
11 import java.net.MalformedURLException;
13 import java.util.Iterator;
15 import net.sourceforge.phpeclipse.PHPeclipsePlugin;
16 import net.sourceforge.phpeclipse.ui.IPreferenceConstants;
17 import net.sourceforge.phpeclipse.ui.editor.ShowExternalPreviewAction;
18 import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
19 import net.sourceforge.phpeclipse.webbrowser.IWebBrowser;
20 import net.sourceforge.phpeclipse.webbrowser.internal.BrowserManager;
22 import org.eclipse.core.resources.IFile;
23 import org.eclipse.core.resources.IResource;
24 import org.eclipse.jface.action.IAction;
25 import org.eclipse.jface.dialogs.MessageDialog;
26 import org.eclipse.jface.preference.IPreferenceStore;
27 import org.eclipse.jface.viewers.ISelection;
28 import org.eclipse.jface.viewers.ISelectionProvider;
29 import org.eclipse.jface.viewers.StructuredSelection;
30 import org.eclipse.swt.widgets.Shell;
31 import org.eclipse.ui.IActionDelegate;
32 import org.eclipse.ui.IObjectActionDelegate;
33 import org.eclipse.ui.IWorkbenchPart;
36 public class PHPEclipseShowAction implements IObjectActionDelegate {
37 private IWorkbenchPart workbenchPart;
40 * Constructor for Action1.
42 public PHPEclipseShowAction() {
47 * @see IObjectActionDelegate#setActivePart(IAction, IWorkbenchPart)
49 public void setActivePart(IAction action, IWorkbenchPart targetPart) {
50 workbenchPart = targetPart;
53 public void run(IAction action) {
54 ISelectionProvider selectionProvider = null;
55 selectionProvider = workbenchPart.getSite().getSelectionProvider();
56 StructuredSelection selection = null;
57 selection = (StructuredSelection) selectionProvider.getSelection();
58 IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
60 Iterator iterator = null;
61 iterator = selection.iterator();
62 while (iterator.hasNext()) {
63 // obj => selected object in the view
64 Object obj = iterator.next();
66 if (obj instanceof IResource) {
67 IResource resource = (IResource) obj;
68 // check if it's a file resource
69 switch (resource.getType()) {
72 IFile previewFile = (IFile) resource;
73 String extension = previewFile.getFileExtension().toLowerCase();
74 boolean bringToTopPreview = ProjectPrefUtil.getPreviewBooleanValue(previewFile, IPreferenceConstants.PHP_BRING_TO_TOP_PREVIEW_DEFAULT);
75 // boolean showHTMLFilesLocal = ProjectPrefUtil.getPreviewBooleanValue(previewFile, IPreferenceConstants.PHP_SHOW_HTML_FILES_LOCAL);
76 // boolean showXMLFilesLocal = ProjectPrefUtil.getPreviewBooleanValue(previewFile, IPreferenceConstants.PHP_SHOW_XML_FILES_LOCAL);
77 boolean isHTMLFileName = "html".equals(extension) || "htm".equals(extension) || "xhtml".equals(extension);
78 boolean isXMLFileName = "xml".equals(extension) || "xsd".equals(extension) || "dtd".equals(extension);
81 // if (showHTMLFilesLocal && isHTMLFileName) {
82 // localhostURL = "file://"+previewFile.getLocation().toString();
83 // } else if (showXMLFilesLocal && isXMLFileName) {
84 // localhostURL = "file://"+previewFile.getLocation().toString();
86 if ((localhostURL = ShowExternalPreviewAction.getLocalhostURL(store, previewFile)) == null) {
87 MessageDialog.openInformation(shell, "Couldn't create localhost URL",
88 "Please configure your localhost and documentRoot");
93 // if (store.getBoolean(PHPeclipsePlugin.USE_EXTERNAL_BROWSER_PREF)) {
94 // String[] arguments = { localhostURL };
95 // MessageFormat form = new MessageFormat(store.getString(PHPeclipsePlugin.EXTERNAL_BROWSER_PREF));
96 // Runtime runtime = Runtime.getRuntime();
97 // String command = form.format(arguments);
98 // // console.write("External Browser command: " + command + "\n");
99 // runtime.exec(command);
101 open(new URL(localhostURL), shell, localhostURL);
103 } catch (MalformedURLException e) {
104 MessageDialog.openInformation(shell, "MalformedURLException: ", e.toString());
112 * @see IActionDelegate#selectionChanged(IAction, ISelection)
114 public void selectionChanged(IAction action, ISelection selection) {
117 public static void open(final URL url, final Shell shell, final String dialogTitle) {
118 // if (WebBrowserUtil.canUseInternalWebBrowser()) {
119 // IWorkbenchPage page = PHPeclipsePlugin.getActivePage();
121 // IViewPart part = page.findView(BrowserView.ID_BROWSER);
122 // if (part == null) {
123 // part = page.showView(BrowserView.ID_BROWSER);
125 // page.bringToTop(part);
127 // ((BrowserView) part).setUrl(url.toExternalForm());
128 // } catch (Exception e) {
131 BrowserManager manager = BrowserManager.getInstance();
132 IWebBrowser browser = manager.getCurrentWebBrowser();
133 browser.openURL(url);