-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGDialog.java
More file actions
299 lines (250 loc) · 7.48 KB
/
GDialog.java
File metadata and controls
299 lines (250 loc) · 7.48 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
import java.awt.*;
import java.awt.event.*;
import java.io.File;
import javax.swing.*;
public class GDialog extends JDialog implements ActionListener {
/**
*
*/
private static final long serialVersionUID = 1L;
static String clicked="";
static String inputText="";
static JTextField inputArea;
static JButton defaultButton;
GDialog(Frame owner, String text, String input, String b1, String b2, String b3) {
super(owner,true);
getContentPane().setLayout(new BorderLayout());
//パネルを追加する
JPanel btmPanel = new JPanel();
getContentPane().add("South",btmPanel);
JPanel topPanel = new JPanel();
topPanel.setLayout(new BoxLayout(topPanel, BoxLayout.Y_AXIS));
getContentPane().add("North",topPanel);
String[] texts2 = text.split("\r");
String text2 = "";
for(int i=0; i<texts2.length; i++){
text2 += texts2[i]+"\n";
}
JTextArea area = new JTextArea(text2);
String[] texts = text2.split("\n");
area.setSize(380, 18+18*texts.length);
//area.setPreferredSize(new Dimension(380, 18+18*texts.length));
area.setMargin(new Insets(16,16,2,16));
area.setLineWrap(true);
area.setOpaque(false);
area.setEditable(false);
area.setFocusable(false);
topPanel.add(area);
if(b1!=null){
JButton btn1 = new JButton(b1);
btn1.addActionListener(this);
btmPanel.add(btn1);
}
if(b2!=null){
JButton btn2 = new JButton(b2);
btn2.addActionListener(this);
btmPanel.add(btn2);
}
if(b3!=null){
JButton btn3 = new JButton(b3);
btn3.addActionListener(this);
btmPanel.add(btn3);
getRootPane().setDefaultButton(btn3);
defaultButton = btn3;
}
if(input != null){
JTextField area2 = new JTextField(input);
area2.setSize(350, 24);
area2.setMargin(new Insets(16,16,16,16));
topPanel.add(area2);
inputArea = area2;
}
int h = area.getPreferredSize().height;
if(h>500)h=500;
if(inputArea!=null) h+= inputArea.getPreferredSize().height;
if(owner!=null){
setBounds(owner.getX()+owner.getWidth()/2-200,owner.getY()+owner.getHeight()/2-h/2,400,h+48);
}
else{
setBounds(0,0,400,h+48);
setLocationRelativeTo(null);
}
setUndecorated(true);//タイトルバー非表示
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
if(defaultButton!=null) defaultButton.requestFocus();
}
});
setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
clicked = e.getActionCommand();
if(inputArea != null) inputText = inputArea.getText();
inputArea = null;
this.dispose();
}
}
class GScrollDialog extends JDialog implements ActionListener {
/**
*
*/
private static final long serialVersionUID = 1L;
static String clicked="";
static String inputText="";
static JTextField inputArea;
static JButton defaultButton;
GScrollDialog(Frame owner, String text, String input, String b1, String b2, String b3) {
super(owner,true);
getContentPane().setLayout(new BorderLayout());
//パネルを追加する
JPanel btmPanel = new JPanel();
getContentPane().add("South",btmPanel);
//JPanel topPanel = new JPanel();
//topPanel.setLayout(new BoxLayout(topPanel, BoxLayout.Y_AXIS));
String[] texts2 = text.split("\r");
String text2 = "";
for(int i=0; i<texts2.length; i++){
text2 += texts2[i]+"\n";
}
JTextArea area = new JTextArea(text2);
String[] texts = text2.split("\n");
area.setSize(380, 18+18*texts.length);
//area.setPreferredSize(new Dimension(380, 18+18*texts.length));
area.setMargin(new Insets(16,16,2,16));
area.setLineWrap(true);
area.setOpaque(false);
area.setEditable(false);
area.setFocusable(false);
//topPanel.add(area);
JScrollPane scrollpane = new JScrollPane(area);
getContentPane().add("North",scrollpane);
scrollpane.setSize(new Dimension(380,400));
if(b1!=null){
JButton btn1 = new JButton(b1);
btn1.addActionListener(this);
btmPanel.add(btn1);
}
if(b2!=null){
JButton btn2 = new JButton(b2);
btn2.addActionListener(this);
btmPanel.add(btn2);
}
if(b3!=null){
JButton btn3 = new JButton(b3);
btn3.addActionListener(this);
btmPanel.add(btn3);
getRootPane().setDefaultButton(btn3);
defaultButton = btn3;
}
int h = area.getPreferredSize().height;
if(h>500)h=500;
if(inputArea!=null) h+= inputArea.getPreferredSize().height;
if(owner!=null){
setBounds(owner.getX()+owner.getWidth()/2-200,owner.getY()+owner.getHeight()/2-h/2,400,h+48);
}
else{
setBounds(0,0,400,h+48);
setLocationRelativeTo(null);
}
setUndecorated(true);//タイトルバー非表示
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
if(defaultButton!=null) defaultButton.requestFocus();
}
});
setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
clicked = e.getActionCommand();
if(inputArea != null) inputText = inputArea.getText();
inputArea = null;
this.dispose();
}
}
class GUxAnswer extends JDialog implements ActionListener {
private static final long serialVersionUID = 1L;
static String clicked="";
static String inputText="";
static JTextField inputArea;
static JButton defaultButton;
GUxAnswer(Frame owner, String text, String input, int[] icons, int iconwait, int time, String[] buttons) {
super(owner,true);
getContentPane().setLayout(new BorderLayout());
//パネルを追加する
JPanel btmPanel = new JPanel();
getContentPane().add("South",btmPanel);
JPanel topPanel = new JPanel();
//topPanel.setLayout(new BoxLayout(topPanel, BoxLayout.Y_AXIS));
getContentPane().add("North",topPanel);
JPanel topPanel2 = new JPanel();
topPanel.add(topPanel2);
//アイコン読み込み
String fileName = PCARD.pc.stack.rsrc.getFilePathAll(icons[0], "icon");
if(fileName!=null){
String path = (PCARD.pc.stack.file.getParent()+File.separatorChar+fileName);
JLabel label = new JLabel(new ImageIcon(path));
topPanel2.add(label);
}
//テキスト
String[] texts2 = text.split("\r");
String text2 = "";
for(int i=0; i<texts2.length; i++){
text2 += texts2[i]+"\n";
}
JTextArea area = new JTextArea(text2);
String[] texts = text2.split("\n");
area.setSize(360, 18+18*texts.length);
//area.setPreferredSize(new Dimension(380, 18+18*texts.length));
area.setMargin(new Insets(16,16,2,16));
area.setLineWrap(true);
area.setOpaque(false);
area.setEditable(false);
area.setFocusable(false);
topPanel2.add(area);
for(int i=0; i<buttons.length; i++){
if(buttons[i]!=null){
JButton btn = new JButton(buttons[i]);
btn.addActionListener(this);
btmPanel.add(btn);
getRootPane().setDefaultButton(btn);
defaultButton = btn;
}
}
if(input != null){
JTextField area2 = new JTextField(input);
area2.setSize(350, 24);
area2.setMargin(new Insets(16,16,16,16));
topPanel.add(area2);
inputArea = area2;
}
int h = area.getPreferredSize().height;
if(h>500)h=500;
if(inputArea!=null) h+= inputArea.getPreferredSize().height;
if(owner!=null){
setBounds(owner.getX()+owner.getWidth()/2-200,owner.getY()+owner.getHeight()/2-h/2,400,h+48);
}
else{
setBounds(0,0,400,h+48);
setLocationRelativeTo(null);
}
setUndecorated(true);//タイトルバー非表示
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
if(defaultButton!=null) defaultButton.requestFocus();
}
});
setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
clicked = e.getActionCommand();
if(inputArea != null) inputText = inputArea.getText();
inputArea = null;
this.dispose();
}
}