-
Notifications
You must be signed in to change notification settings - Fork 163
Expand file tree
/
Copy pathMainPanel.java
More file actions
71 lines (64 loc) · 2.28 KB
/
MainPanel.java
File metadata and controls
71 lines (64 loc) · 2.28 KB
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
// -*- mode:java; encoding:utf-8 -*-
// vim:set fileencoding=utf-8:
// @homepage@
package example;
import java.awt.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.logging.Logger;
import javax.swing.*;
import javax.swing.event.HyperlinkEvent;
public final class MainPanel extends JPanel {
private static final String SITE = "https://ateraimemo.com/";
private MainPanel() {
super(new BorderLayout());
JTextArea textArea = new JTextArea();
String html = String.format("<html><a href='%s'>%s</a>", SITE, SITE);
JEditorPane editor = makeEditorPane(html, textArea);
JPanel p = new JPanel();
p.add(editor);
p.setBorder(BorderFactory.createTitledBorder("Desktop.getDesktop().browse(URI)"));
add(p, BorderLayout.NORTH);
add(new JScrollPane(textArea));
setPreferredSize(new Dimension(320, 240));
}
private static JEditorPane makeEditorPane(String html, JTextArea log) {
JEditorPane editor = new JEditorPane("text/html", html);
editor.putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, true);
editor.setEditable(false);
editor.setOpaque(false);
if (Desktop.isDesktopSupported()) {
editor.addHyperlinkListener(e -> {
if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
try {
Desktop.getDesktop().browse(new URI(SITE));
log.setText(e.toString());
} catch (IOException | URISyntaxException ex) {
log.setText(ex.getMessage());
}
}
});
}
return editor;
}
public static void main(String[] args) {
EventQueue.invokeLater(MainPanel::createAndShowGui);
}
private static void createAndShowGui() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (UnsupportedLookAndFeelException ignored) {
Toolkit.getDefaultToolkit().beep();
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException ex) {
Logger.getGlobal().severe(ex::getMessage);
return;
}
JFrame frame = new JFrame("@title@");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.getContentPane().add(new MainPanel());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}