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
|
package example;
import java.awt.*;
import java.awt.event.*;
import javax.swing.JButton;
import layout.TableLayout;
public class GridVersusTable {
protected static Frame showGridWindow ()
{
// Create frame
Frame frame = new Frame("GridLayout");
frame.setFont (new Font("Helvetica", Font.PLAIN, 14));
frame.setLayout (new GridLayout(2, 0));
// Create and add buttons
frame.add (new JButton("One"));
frame.add (new JButton("Two"));
frame.add (new JButton("Three"));
frame.add (new JButton("Four"));
// Show frame
frame.pack();
frame.setLocation (0, 10);
frame.show();
return frame;
}
protected static Frame showTableWindow ()
{
// Create frame
Frame frame = new Frame("TableLayout");
frame.setFont (new Font("Helvetica", Font.PLAIN, 14));
// Set layout
double f = TableLayout.FILL;
double size[][] = {{f, f}, {f, f}};
frame.setLayout (new TableLayout(size));
// Create and add buttons
frame.add (new JButton("One"), "0, 0");
frame.add (new JButton("Two"), "1, 0");
frame.add (new JButton("Three"), "0, 1");
frame.add (new JButton("Four"), "1, 1");
// Show frame
frame.pack();
frame.setLocation (200, 10);
frame.show();
return frame;
}
protected static Frame showTableWindow2 ()
{
// Create frame
Frame frame = new Frame("TableLayout");
frame.setFont (new Font("Helvetica", Font.PLAIN, 14));
// Set layout
double f = TableLayout.FILL;
double size[][] = {{f, f}, {f, f}};
frame.setLayout (new TableLayout(size));
// Create and add buttons
frame.add (new JButton("One"), "0, 0");
frame.add (new JButton("Two"), "1, 1");
// Show frame
frame.pack();
frame.setLocation (400, 10);
frame.show();
return frame;
}
public static void main (String args[])
{
WindowListener listener =
(new WindowAdapter()
{
public void windowClosing (WindowEvent e)
{
System.exit (0);
}
}
);
Frame frame = showGridWindow();
frame.addWindowListener(listener);
frame = showTableWindow();
frame.addWindowListener(listener);
frame = showTableWindow2();
frame.addWindowListener(listener);
}
}
|