1 36 37 40 41 42 import javax.swing.*; 43 import javax.swing.event.*; 44 import javax.swing.text.*; 45 import javax.swing.text.html.*; 46 import javax.swing.border.*; 47 import javax.swing.colorchooser.*; 48 import javax.swing.filechooser.*; 49 import javax.accessibility.*; 50 51 import java.awt.*; 52 import java.awt.event.*; 53 import java.beans.*; 54 import java.util.*; 55 import java.io.*; 56 import java.applet.*; 57 import java.net.*; 58 59 65 public class HtmlDemo extends DemoModule { 66 67 JEditorPane html; 68 69 72 public static void main(String [] args) { 73 HtmlDemo demo = new HtmlDemo(null); 74 demo.mainImpl(); 75 } 76 77 80 public HtmlDemo(SwingSet2 swingset) { 81 super(swingset, "HtmlDemo", "toolbar/JEditorPane.gif"); 84 85 try { 86 URL url = null; 87 String path = null; 90 try { 91 path = "/resources/index.html"; 92 url = getClass().getResource(path); 93 } catch (Exception e) { 94 System.err.println("Failed to open " + path); 95 url = null; 96 } 97 98 if(url != null) { 99 html = new JEditorPane(url); 100 html.setEditable(false); 101 html.addHyperlinkListener(createHyperLinkListener()); 102 103 JScrollPane scroller = new JScrollPane(); 104 JViewport vp = scroller.getViewport(); 105 vp.add(html); 106 getDemoPanel().add(scroller, BorderLayout.CENTER); 107 } 108 } catch (MalformedURLException e) { 109 System.out.println("Malformed URL: " + e); 110 } catch (IOException e) { 111 System.out.println("IOException: " + e); 112 } 113 } 114 115 public HyperlinkListener createHyperLinkListener() { 116 return new HyperlinkListener() { 117 public void hyperlinkUpdate(HyperlinkEvent e) { 118 if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) { 119 if (e instanceof HTMLFrameHyperlinkEvent) { 120 ((HTMLDocument)html.getDocument()).processHTMLFrameHyperlinkEvent( 121 (HTMLFrameHyperlinkEvent)e); 122 } else { 123 try { 124 html.setPage(e.getURL()); 125 } catch (IOException ioe) { 126 System.out.println("IOE: " + ioe); 127 } 128 } 129 } 130 } 131 }; 132 } 133 134 void updateDragEnabled(boolean dragEnabled) { 135 html.setDragEnabled(dragEnabled); 136 } 137 138 } 139
| Popular Tags
|