-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEasyApp.java
More file actions
479 lines (421 loc) · 12.9 KB
/
Copy pathEasyApp.java
File metadata and controls
479 lines (421 loc) · 12.9 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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
package minesweeper;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
import javax.swing.JFrame;
//=========================================================================
//==== EasyApp - standard GUI app with standard IBIO routines ============
//=========================================================================
public class EasyApp extends Frame implements ActionListener, ItemListener, MouseListener, KeyListener {
//--- Constructor -------
MenuBar menubar = addMenuBar();
public EasyApp()
{
setLayout(null);
setSize(600,400);
addWindowListener // enable [x] for closing app
( new WindowAdapter()
{ public void windowClosing(WindowEvent evt)
{ evt.getWindow().dispose(); }
}
);
setVisible(true);
toFront();
requestFocus();
}
public MenuBar makeMenus(String[] menus)
{
for (int x=0;x<menus.length;x++)
{ if (menus[x].length()>0)
{ int d = menus[x].indexOf("|");
if (d<0) {d=menus[x].length(); }
Menu newmenu = addMenu(menus[x].substring(0,d),menubar);
while (d>=0 && d<menus[x].length())
{
int e = menus[x].indexOf("|",d+1);
if (e<0) {e=menus[x].length(); }
MenuItem newmi = addMenuItem(menus[x].substring(d+1,e),newmenu,this);
newmi.setActionCommand(newmenu.getActionCommand()+"|"+newmi.getActionCommand());
d = e;
}
}
}
return menubar;
}
//============================
//--- Control Creators -------
//============================
public Button addButton(String text, int left, int top, int width, int height,
ActionListener listener)
{
Button newComp = new Button(text);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addActionListener(listener);
return newComp;
}
public JButton addButton1(ImageIcon img, int left, int top, int width, int height,
ActionListener listener)
{
JButton newComp = new JButton(img);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addActionListener(listener);
return newComp;
}
public Checkbox addCheckbox(String text, int left, int top, int width, int height,
ItemListener listener)
{
Checkbox newComp = new Checkbox(text);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addItemListener(listener);
return newComp;
}
public TextField addTextField(String text, int left, int top, int width, int height,
ActionListener listener)
{
TextField newComp = new TextField(text);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addActionListener(listener);
return newComp;
}
public TextArea addTextArea(String text, int left, int top, int width, int height,
KeyListener listener)
{
TextArea newComp = new TextArea(text);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addKeyListener(listener);
return newComp;
}
public Label addLabel(String text, int left, int top, int width, int height,
MouseListener listener)
{
Label newComp = new Label(text);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addMouseListener(listener);
return newComp;
}
public JLabel addJLabel(ImageIcon img, int left, int top, int width, int height,
MouseListener listener)
{
JLabel newComp = new JLabel(img);
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addMouseListener(listener);
return newComp;
}
public List addList(String words,int left, int top, int width, int height,
ItemListener listener)
{
List newComp = new List();
while (words.length()>0)
{ int s = words.indexOf("|");
if (s<0)
{ newComp.add(words);
words = "";
}
else
{ newComp.add(words.substring(0,s));
words = words.substring(s+1);
}
}
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addItemListener(listener);
return newComp;
}
public Choice addChoice(String words,int left, int top, int width, int height,
ItemListener listener)
{
Choice newComp = new Choice();
while (words.length()>0)
{ int s = words.indexOf("|");
if (s<0)
{ newComp.add(words);
words = "";
}
else
{ newComp.add(words.substring(0,s));
words = words.substring(s+1);
}
}
add(newComp);
newComp.setBounds(left,top,width,height);
if (listener!=null)newComp.addItemListener(listener);
return newComp;
}
public JTable addJTable(String[][] data, int left, int top, int width, int height,
ActionListener listener)
{
String[] heads = new String[data[0].length];
for(int s=0; s<heads.length; s++){ heads[s] = ""; }
JTable newComp = new JTable(data , heads);
JScrollPane newComps = new JScrollPane(newComp);
add(newComps);
newComps.setBounds(left,top,width,height);
// if (listener!=null)newComp.addActionListener(listener);
return newComp;
}
public MenuItem addMenuItem(String mText,Menu mu,ActionListener listener)
{ MenuItem c = new MenuItem(mText);
mu.add(c);
if (listener!=null)c.addActionListener(listener);
return c;
}
public Menu addMenu(String mText,Menu mu)
{
Menu c = new Menu(mText);
mu.add(c);
return c;
}
public Menu addMenu(String mText,MenuBar mb)
{
Menu c = new Menu(mText);
mb.add(c);
return c;
}
public Menu addMenu(String mText)
{
int d = mText.indexOf("|");
if (d<0){d=mText.length();}
String id = mText.substring(0,d);
Menu c = new Menu(id);
menubar.add(c);
while (d<mText.length())
{ int e = mText.indexOf("|",d+1);
if (e<0){e = mText.length();}
String cmd = mText.substring(d+1,e);
MenuItem mi = addMenuItem(cmd,c,this);
mi.setActionCommand(id+"|"+cmd);
c.add(mi);
d = e;
}
return c;
}
public MenuBar addMenuBar()
{ MenuBar c = new MenuBar();
setMenuBar(c);
return c;
}
//==================================
//=== Simplified Command Library ===
//==================================
public Process runProgram(String programName)
{
Process handle = null;
try
{ handle = Runtime.getRuntime().exec(programName);
}
catch(IOException ex)
{ };
return handle;
}
public String chooseFile()
{ FileDialog fd = new FileDialog(this);
fd.setVisible(true);
return fd.getDirectory() + fd.getFile();
}
public Image loadImage(String filename)
{ ImageIcon im = new ImageIcon(filename);
int c = 0;
do
{ c++;
} while (c<100000 && im.getImageLoadStatus()!=MediaTracker.COMPLETE);
return im.getImage();
}
public boolean loadList(List list,String filename)
{
try
{ list.removeAll();
BufferedReader infile = new BufferedReader(new FileReader(filename));
while(infile.ready())
{ list.add(infile.readLine());
}
infile.close();
return true;
}
catch(IOException e)
{ output(e.toString());
return false;
}
}
public boolean saveList(String filename,List list)
{
try
{ PrintWriter outfo = new PrintWriter(new FileWriter(filename));
for (int c=0;c<list.getItemCount();c++)
{ outfo.println(list.getItem(c));
}
outfo.close();
return true;
}
catch(IOException e)
{ output(e.toString());
return false;
}
}
public boolean loadArray(String[] array,String filename)
{
try
{
BufferedReader countFile = new BufferedReader(new FileReader(filename));
int s = 0;
while(countFile.ready())
{ array[s] = countFile.readLine();
s++;
}
array[s] = null;
countFile.close();
return true;
}
catch(Exception e)
{ output(e.toString());
return false;
}
}
public boolean saveArray(String filename,String[] array)
{
try
{ PrintWriter outfo = new PrintWriter(new FileWriter(filename));
int c = 0;
while (array[c]!=null)
{ outfo.println(array[c]);
c++;
}
outfo.close();
return true;
}
catch(IOException e)
{ output(e.toString());
return false;
}
}
public void sortArray(String[] arr)
{
int swaps = 0 ;
do
{ swaps = 0;
int c = 0;
while (arr[c+1]!=null)
{ if (arr[c].compareTo(arr[c+1])>0)
{ String temp = arr[c];
arr[c] = arr[c+1];
arr[c+1] = temp;
swaps++;
}
c++;
}
} while (swaps != 0);
}
public String getType(Object ob)
{
String c = ob.getClass().toString();
int p = c.lastIndexOf(".");
if (p<0) {p=-1;}
return c.substring(p+1);
}
//=== Stub versions of Listeners to satisfy interfaces ===
public void actionPerformed(ActionEvent evt)
{ actions(evt.getSource(),evt.getActionCommand());
}
public void itemStateChanged(ItemEvent evt)
{ Object source = evt.getSource();
String t = getType(source);
String command = "";
if (t.equals("List")) { command = ((List)source).getSelectedItem(); }
else if (t.equals("Choice")){ command = ((Choice)source).getSelectedItem(); }
else {command = evt.getItem().toString();}
actions(source,command);
}
public void actions(Object source,String command)
{
output(source.toString()+":"+command);
}
public void mouseClicked(MouseEvent e)
{ Object source = e.getSource();
actions(source,"");
}
public void mouseEntered(MouseEvent e){}
public void mouseExited(MouseEvent e){}
public void mousePressed(MouseEvent e){}
public void mouseReleased(MouseEvent e){}
public void keyTyped(KeyEvent e)
{ Object source = e.getSource();
actions(source,e.getKeyChar()+"");
}
public void keyPressed(KeyEvent e){}
public void keyReleased(KeyEvent e){}
//===========================================================
//=== IBIO simplified input/output commands - GUI version ===
//===========================================================
public void output(String message)
{ JOptionPane.showMessageDialog(this,message); }
public void outputString(String message)
{ output(message); }
public void output(char info)
{ output(info + ""); }
public void output(byte info)
{ output(info + ""); }
public void output(int info)
{ output(info + ""); }
public void output(long info)
{ output(info + ""); }
public void output(double info)
{ output(info + ""); }
public void output(boolean info)
{ output(info + ""); }
//----- Numerical input methods return 0 on error ------------
public String input(String prompt)
{ return JOptionPane.showInputDialog(this,prompt); }
public String inputString(String prompt)
{ return input(prompt); }
public String input()
{ return input(""); }
public char inputChar(String prompt)
{ char result=(char)0;
try{result=input(prompt).charAt(0);}
catch (Exception e){result = (char)0;}
return result;
}
public byte inputByte(String prompt)
{ byte result=0;
try{result=Byte.valueOf(input(prompt).trim()).byteValue();}
catch (Exception e){result = 0;}
return result;
}
public int inputInt(String prompt)
{ int result=0;
try{result=Integer.valueOf(
input(prompt).trim()).intValue();}
catch (Exception e){result = 0;}
return result;
}
public long inputLong(String prompt)
{ long result=0;
try{result=Long.valueOf(input(prompt).trim()).longValue();}
catch (Exception e){result = 0;}
return result;
}
public double inputDouble(String prompt)
{ double result=0;
try{result=Double.valueOf(
input(prompt).trim()).doubleValue();}
catch (Exception e){result = 0;}
return result;
}
public boolean inputBoolean(String prompt)
{ boolean result=false;
try{result=Boolean.valueOf(
input(prompt).trim()).booleanValue();}
catch (Exception e){result = false;}
return result;
}
//============================================================
//=========== end IBIO =======================================
//============================================================
}