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