f97ae34acde48c143b8934ec724d19ebce7718d8
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / views / browser / BrowserView.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpeclipse.views.browser;
12 import org.eclipse.swt.SWT;
13 import org.eclipse.swt.browser.Browser;
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.ui.part.ViewPart;
16 import org.eclipse.webbrowser.internal.WebBrowser;
17 import org.eclipse.webbrowser.internal.WebBrowserUIPlugin;
18 import org.eclipse.webbrowser.internal.WebBrowserUtil;
19 /**
20  * <code>BrowserView</code> is a simple demonstration of the SWT Browser
21  * widget. It consists of a workbench view and tab folder where each tab in the
22  * folder allows the user to interact with a control.
23  * 
24  * @see ViewPart
25  */
26 public class BrowserView extends ViewPart {
27   public final static String ID_BROWSER = "net.sourceforge.phpeclipse.views.browser";
28   WebBrowser instance = null;
29   /**
30    * Create the example
31    * 
32    * @see ViewPart#createPartControl
33    */
34   public void createPartControl(Composite frame) {
35     try {
36       if (WebBrowserUtil.canUseInternalWebBrowser() ) {
37         instance = new WebBrowser(frame, true, true);
38       }
39     } catch(Exception e) {
40       instance = null;
41     }
42   }
43   /**
44    * Called when we must grab focus.
45    * 
46    * @see org.eclipse.ui.part.ViewPart#setFocus
47    */
48   public void setFocus() {
49     if (instance!=null) {
50       instance.setFocus();
51     }
52   }
53   /**
54    * Called when the View is to be disposed
55    */
56   public void dispose() {
57     if (instance!=null) {
58       instance.dispose();
59       instance = null;
60     }
61     super.dispose();
62   }
63   public void setUrl(String url) {
64     if (instance!=null) {
65       instance.setURL(url);
66     }
67   }
68   public void refresh() {
69     if (instance!=null) {
70       instance.refresh();
71     }
72   }
73 }