Skip to main content
summaryrefslogtreecommitdiffstats
blob: f068a36f6ca045690d6fd0779078e4dca7e2a217 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/

package org.eclipse.osee.framework.ui.skynet.panels;

import org.eclipse.osee.framework.ui.swt.ALayout;
import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTException;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.browser.ProgressListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.ToolBar;

/**
 * @author Ryan D. Brooks
 */
public class BrowserComposite extends Composite {
   private final Browser previewBrowser;
   private final ToolBar toolBar;

   public BrowserComposite(Composite parent, int style) {
      this(parent, style, null);
   }

   public BrowserComposite(Composite parent, int style, ToolBar toolBar) {
      super(parent, style);
      setLayout(ALayout.getZeroMarginLayout());
      GridData gridData = new GridData(GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL | GridData.FILL_BOTH);
      setLayoutData(gridData);

      previewBrowser = new Browser(this, SWT.NONE);
      gridData = new GridData(GridData.GRAB_HORIZONTAL | GridData.GRAB_VERTICAL | GridData.FILL_BOTH);
      previewBrowser.setLayoutData(gridData);

      this.toolBar = toolBar;
   }

   public void setHtml(String html) throws SWTException, IllegalArgumentException {
      previewBrowser.setText(html);
   }

   public void setUrl(String url) throws SWTException, IllegalArgumentException {
      previewBrowser.setUrl(url);
   }

   public void refresh() {
      previewBrowser.refresh();
   }

   public boolean back() {
      if (previewBrowser == null) {
         return false;
      }
      return previewBrowser.back();
   }

   public boolean forward() {
      if (previewBrowser == null) {
         return false;
      }
      return previewBrowser.forward();
   }

   public boolean isBackEnabled() {
      if (previewBrowser == null) {
         return false;
      }
      return previewBrowser.isBackEnabled();
   }

   public boolean isForwardEnabled() {
      if (previewBrowser == null) {
         return false;
      }
      return previewBrowser.isForwardEnabled();
   }

   public void addProgressListener(ProgressListener listener) {
      previewBrowser.addProgressListener(listener);
   }

   /**
    * @return the toolBar
    */
   protected ToolBar getToolBar() {
      return toolBar;
   }

   protected String getUrl() {
      return previewBrowser.getUrl();
   }
}

Back to the top