-
Notifications
You must be signed in to change notification settings - Fork 0
/
WinAbout.java
92 lines (74 loc) · 2.17 KB
/
WinAbout.java
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
package map;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
/** About クラス
* - 情報
*/
public class WinAbout extends JDialog implements ActionListener{
JButton BTok = new JButton();
/**
* コンストラクタ
*/
public WinAbout(Frame parent){
super(parent);
try{
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
init();
}
catch(Exception exception){
exception.printStackTrace();
}
}
/**
* 初期化
*/
private void init() throws Exception{
JPanel content = new JPanel();
// contentdow - タイトル
setTitle("バージョン情報");
// contentdow - サイズ
setResizable(true);
// contentdow - 内部
content.setLayout(new BorderLayout());
// contentdow - 内部 - イメージアイコン
JPanel PLimage = new JPanel();
JLabel LBimage = new JLabel();
ImageIcon icon = new ImageIcon(map.Menu.class.getResource("icon_about.png"));
LBimage.setIcon(icon);
PLimage.setLayout(new FlowLayout());
PLimage.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
PLimage.add(LBimage, null);
content.add(PLimage, BorderLayout.WEST);
// contentdow - 内部 - 情報
JPanel PLinfo = new JPanel();
JLabel LBapp = new JLabel();
JLabel LBver = new JLabel();
JLabel LBcright = new JLabel();
LBapp.setText("数値地図");
LBver.setText("0.0.0.1");
LBcright.setText("Takashi Inada");
PLinfo.setLayout(new GridLayout(4, 1));
PLinfo.setBorder(BorderFactory.createEmptyBorder(10, 60, 10, 10));
PLinfo.add(LBapp , null);
PLinfo.add(LBver , null);
PLinfo.add(LBcright, null);
content.add(PLinfo, BorderLayout.CENTER);
// contentdow - 内部 - ボタン
JPanel PLbt = new JPanel();
BTok.setText("OK");
BTok.addActionListener(this);
PLbt.setLayout(new FlowLayout());
PLbt.add(BTok, null);
content.add(PLbt, BorderLayout.SOUTH);
getContentPane().add(content, null);
}
/**
* イベント - ダイアログを閉じる
*/
public void actionPerformed(ActionEvent actionEvent){
if(actionEvent.getSource() == BTok){
dispose();
}
}
}