Statistics
| Revision:

gvsig-tools / org.gvsig.tools / library / trunk / org.gvsig.tools / org.gvsig.tools.swing / org.gvsig.tools.swing.impl / src / main / java / org / gvsig / tools / swing / impl / webbrowsersimple / JWebBrowserSimpleMain.java @ 2080

History | View | Annotate | Download (2.06 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2020 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.tools.swing.impl.webbrowsersimple;
25

    
26
import javax.swing.JFrame;
27
import javax.swing.event.ChangeEvent;
28
import javax.swing.event.ChangeListener;
29
import org.gvsig.tools.library.impl.DefaultLibrariesInitializer;
30
import org.gvsig.tools.swing.api.JWebBrowser;
31
import org.gvsig.tools.swing.api.JWebBrowserFactory;
32
import org.gvsig.tools.swing.api.ToolsSwingLocator;
33
import org.gvsig.tools.swing.api.ToolsSwingManager;
34

    
35
/**
36
 *
37
 * @author jjdelcerro
38
 */
39
public class JWebBrowserSimpleMain {
40

    
41
  public static void main(String[] args) {
42
    new DefaultLibrariesInitializer().fullInitialize();
43
    
44
    ToolsSwingManager toolsSwingManager = ToolsSwingLocator.getToolsSwingManager();
45
    
46
    final JFrame frame = new JFrame();
47
        
48
                frame.setTitle("Untitled");
49
                frame.setSize(600, 400);
50
                frame.setLocation(100, 100);
51
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);   
52
    
53
    final JWebBrowser browser = toolsSwingManager.createJWebBrowser();
54
    browser.addChangeListener((ChangeEvent event) -> {
55
      frame.setTitle(browser.title());
56
    });
57
    frame.setContentPane(browser.asJComponent());
58

    
59
    frame.setVisible(true);
60
  }
61
}