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 String getUrl() {
92 if (fInstance != null) {
93 return fInstance.getURL();
99 public void setUrl(final String url) {
100 if (fInstance != null) {
102 fInstance.setURL(url);
104 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
105 // public void run(IProgressMonitor monitor) throws CoreException {
106 // instance.setURL(url);
109 // } catch (CoreException e) {
110 // // TO DO Auto-generated catch block
111 // e.printStackTrace();
116 public void refresh() {
117 if (fInstance != null) {
120 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
121 // public void run(IProgressMonitor monitor) throws CoreException {
122 // instance.refresh();
125 // } catch (CoreException e) {
126 // // TO DO Auto-generated catch block
127 // e.printStackTrace();
134 public void refresh(String url) {
135 if (fInstance != null && url != null) {
139 Browser browser = fInstance.getBrowser();
140 if (browser != null) {
141 String browserUrl = browser.getUrl();
143 browserUrl = URLDecoder.decode(browserUrl, J5CharsetEmulator.defaultCharset().name());
144 } catch (UnsupportedEncodingException e) {
145 // e.printStackTrace();
147 if (!url.equals(browserUrl)) {
155 public void addProgressListener(ProgressListener listener) {
156 if (fInstance != null) {
157 fInstance.addProgressListener(listener);
161 public void addStatusTextListener(StatusTextListener listener) {
162 if (fInstance != null) {
163 fInstance.addStatusTextListener(listener);
167 public void addTitleListener(TitleListener listener) {
168 if (fInstance != null) {
169 fInstance.addTitleListener(listener);
173 public boolean show(ShowInContext context) {
174 if (context instanceof ShowInContextBrowser) {
175 ShowInContextBrowser contextBrowser = (ShowInContextBrowser) context;
176 String localhostURL = contextBrowser.getLocalhostUrl();
177 if (localhostURL != null) {
178 setUrl(localhostURL);
183 // This causes unexpected behaviour such as downloading (save file).
184 // It depends on mime-types setting and native browser, it isn't under control of eclipse.
185 // (IE shows script as plain text since .php is unknown type by default.
186 // Mozilla downloads script file since .php is defined in mimeTypes.rdf as such.)
188 //if (context.getInput() instanceof IFile) {
189 // IFile file = (IFile) context.getInput();
190 // String localhostURL;
191 // localhostURL = "file:///" + file.getLocation().toString();
192 // setUrl(localhostURL);