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.IWorkspaceRunnable;
17 import org.eclipse.core.resources.ResourcesPlugin;
18 import org.eclipse.core.runtime.CoreException;
19 import org.eclipse.core.runtime.IProgressMonitor;
20 import org.eclipse.core.runtime.IStatus;
21 import org.eclipse.core.runtime.Status;
22 import org.eclipse.core.runtime.jobs.Job;
23 import org.eclipse.swt.widgets.Composite;
24 import org.eclipse.ui.part.ViewPart;
27 * <code>BrowserView</code> is a simple demonstration of the SWT Browser widget. It consists of a workbench view and tab folder
28 * where each tab in the folder allows the user to interact with a control.
32 public class BrowserView extends ViewPart {
33 public final static String ID_BROWSER = "net.sourceforge.phpeclipse.webbrowser.views";
35 WebBrowser instance = null;
40 * @see ViewPart#createPartControl
42 public void createPartControl(Composite frame) {
44 if (WebBrowserUtil.canUseInternalWebBrowser()) {
45 instance = new WebBrowser(frame, true, true);
47 } catch (Exception e) {
53 * Called when we must grab focus.
55 * @see org.eclipse.ui.part.ViewPart#setFocus
57 public void setFocus() {
58 if (instance != null) {
64 * Called when the View is to be disposed
66 public void dispose() {
67 if (instance != null) {
74 public void setUrl(final String url) {
75 if (instance != null) {
77 ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
78 public void run(IProgressMonitor monitor) throws CoreException {
82 } catch (CoreException e) {
83 // TODO Auto-generated catch block
89 public void refresh() {
90 if (instance != null) {
92 ResourcesPlugin.getWorkspace().run(new IWorkspaceRunnable() {
93 public void run(IProgressMonitor monitor) throws CoreException {
97 } catch (CoreException e) {
98 // TODO Auto-generated catch block