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 net.sourceforge.phpeclipse.webbrowser.internal.WebBrowser;
14 import net.sourceforge.phpeclipse.webbrowser.internal.WebBrowserUtil;
16 import org.eclipse.core.resources.IFile;
17 import org.eclipse.jface.viewers.IStructuredSelection;
18 import org.eclipse.swt.browser.ProgressListener;
19 import org.eclipse.swt.browser.StatusTextListener;
20 import org.eclipse.swt.browser.TitleListener;
21 import org.eclipse.swt.widgets.Composite;
22 import org.eclipse.ui.part.IShowInTarget;
23 import org.eclipse.ui.part.ShowInContext;
24 import org.eclipse.ui.part.ViewPart;
27 * <code>BrowserView</code> is a simple demonstration of the SWT Browser
28 * widget. It consists of a workbench view and tab folder where each tab in the
29 * folder allows the user to interact with a control.
33 public class BrowserView extends ViewPart implements IShowInTarget {
34 public final static String ID_BROWSER = "net.sourceforge.phpeclipse.webbrowser.views";
36 WebBrowser fInstance = null;
43 * @see ViewPart#createPartControl
45 public void createPartControl(Composite frame) {
47 if (WebBrowserUtil.isInternalBrowserOperational()) {
48 fInstance = new WebBrowser(frame, true, true);
50 } catch (Exception e) {
56 * Called when we must grab focus.
58 * @see org.eclipse.ui.part.ViewPart#setFocus
60 public void setFocus() {
61 if (fInstance != null) {
67 * Called when the View is to be disposed
69 public void dispose() {
70 if (fInstance != null) {
77 public void setUrl(final String url) {
78 if (fInstance != null) {
80 fInstance.setURL(url);
82 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
83 // public void run(IProgressMonitor monitor) throws CoreException {
84 // instance.setURL(url);
87 // } catch (CoreException e) {
88 // // TODO Auto-generated catch block
89 // e.printStackTrace();
94 public void refresh() {
95 if (fInstance != null) {
98 // ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
99 // public void run(IProgressMonitor monitor) throws CoreException {
100 // instance.refresh();
103 // } catch (CoreException e) {
104 // // TODO Auto-generated catch block
105 // e.printStackTrace();
110 public void refresh(String url) {
111 if (fInstance != null) {
112 if (fUrl == null || !fUrl.equals(url)) {
120 public void addProgressListener(ProgressListener listener) {
121 if (fInstance != null) {
122 fInstance.addProgressListener(listener);
126 public void addStatusTextListener(StatusTextListener listener) {
127 if (fInstance != null) {
128 fInstance.addStatusTextListener(listener);
132 public void addTitleListener(TitleListener listener) {
133 if (fInstance != null) {
134 fInstance.addTitleListener(listener);
138 public boolean show(ShowInContext context) {
139 if (context.getSelection() instanceof IStructuredSelection) {
140 IStructuredSelection ss = (IStructuredSelection) context.getSelection();
141 if (ss.getFirstElement() instanceof IFile) {
142 IFile file = (IFile) ss.getFirstElement();
144 localhostURL = file.getLocation().toString();
145 setUrl(localhostURL);