1 /*******************************************************************************
2 * Copyright (c) 2000, 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
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpeclipse.webbrowser.views;
13 import java.io.UnsupportedEncodingException;
14 import java.net.URLDecoder;
15 import java.nio.charset.Charset;
17 import net.sourceforge.phpeclipse.webbrowser.internal.WebBrowser;
18 import net.sourceforge.phpeclipse.webbrowser.internal.WebBrowserUtil;
20 import org.eclipse.swt.browser.Browser;
21 import org.eclipse.swt.browser.CloseWindowListener;
22 import org.eclipse.swt.browser.ProgressListener;
23 import org.eclipse.swt.browser.StatusTextListener;
24 import org.eclipse.swt.browser.TitleListener;
25 import org.eclipse.swt.browser.WindowEvent;
26 import org.eclipse.swt.widgets.Composite;
27 import org.eclipse.ui.part.IShowInTarget;
28 import org.eclipse.ui.part.ShowInContext;
29 import org.eclipse.ui.part.ViewPart;
32 * <code>BrowserView</code> is a simple demonstration of the SWT Browser
33 * widget. It consists of a workbench view and tab folder where each tab in the
34 * folder allows the user to interact with a control.
38 public class BrowserView extends ViewPart implements IShowInTarget {
39 public final static String ID_BROWSER = "net.sourceforge.phpeclipse.webbrowser.views";
41 WebBrowser fInstance = null;
48 * @see ViewPart#createPartControl
50 public void createPartControl(Composite frame) {
52 if (WebBrowserUtil.isInternalBrowserOperational()) {
53 fInstance = new WebBrowser(frame, true, true);
54 // #1365431 (toshihiro) start
55 fInstance.getBrowser().addCloseWindowListener(
56 new CloseWindowListener() {
57 public void close(WindowEvent event) {
58 getViewSite().getPage().hideView(
62 // #1365431 (toshihiro) end
64 } catch (Exception e) {
70 * Called when we must grab focus.
72 * @see org.eclipse.ui.part.ViewPart#setFocus
74 public void setFocus() {
75 if (fInstance != null) {
81 * Called when the View is to be disposed
83 public void dispose() {
84 if (fInstance != null) {
91 public void setUrl(final String url) {
92 if (fInstance != null) {
94 fInstance.setURL(url);
96 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
97 // public void run(IProgressMonitor monitor) throws CoreException {
98 // instance.setURL(url);
101 // } catch (CoreException e) {
102 // // TO DO Auto-generated catch block
103 // e.printStackTrace();
108 public void refresh() {
109 if (fInstance != null) {
112 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
113 // public void run(IProgressMonitor monitor) throws CoreException {
114 // instance.refresh();
117 // } catch (CoreException e) {
118 // // TO DO Auto-generated catch block
119 // e.printStackTrace();
124 public void refresh(String url) {
125 if (fInstance != null && url != null) {
129 Browser browser = fInstance.getBrowser();
130 if (browser != null) {
131 String browserUrl = browser.getUrl();
133 browserUrl = URLDecoder.decode(browserUrl, Charset.defaultCharset().name());
134 } catch (UnsupportedEncodingException e) {
135 // e.printStackTrace();
137 if (!url.equals(browserUrl)) {
145 public void addProgressListener(ProgressListener listener) {
146 if (fInstance != null) {
147 fInstance.addProgressListener(listener);
151 public void addStatusTextListener(StatusTextListener listener) {
152 if (fInstance != null) {
153 fInstance.addStatusTextListener(listener);
157 public void addTitleListener(TitleListener listener) {
158 if (fInstance != null) {
159 fInstance.addTitleListener(listener);
163 public boolean show(ShowInContext context) {
164 if (context instanceof ShowInContextBrowser) {
165 ShowInContextBrowser contextBrowser = (ShowInContextBrowser) context;
166 String localhostURL = contextBrowser.getLocalhostUrl();
167 if (localhostURL != null) {
168 setUrl(localhostURL);
173 // This causes unexpected behaviour such as downloading (save file).
174 // It depends on mime-types setting and native browser, it isn't under control of eclipse.
175 // (IE shows script as plain text since .php is unknown type by default.
176 // Mozilla downloads script file since .php is defined in mimeTypes.rdf as such.)
178 //if (context.getInput() instanceof IFile) {
179 // IFile file = (IFile) context.getInput();
180 // String localhostURL;
181 // localhostURL = "file:///" + file.getLocation().toString();
182 // setUrl(localhostURL);