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