blob: 3330948a44689053a80c263beaddfe1db586fc77 (
plain) (
blame)
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
|
package cuchaz.enigma.gui.elements;
import java.awt.BorderLayout;
import java.awt.Container;
import javax.swing.JFrame;
import javax.swing.JMenuBar;
import javax.swing.JPanel;
public class MainWindow {
private final JFrame frame;
private final JPanel workArea = new JPanel();
private final JMenuBar menuBar = new JMenuBar();
private final StatusBar statusBar = new StatusBar();
public MainWindow(String title) {
this.frame = new JFrame(title);
this.frame.setJMenuBar(this.menuBar);
Container contentPane = this.frame.getContentPane();
contentPane.setLayout(new BorderLayout());
contentPane.add(this.workArea, BorderLayout.CENTER);
contentPane.add(this.statusBar.getUi(), BorderLayout.SOUTH);
}
public void setVisible(boolean visible) {
this.frame.setVisible(visible);
}
public JMenuBar menuBar() {
return this.menuBar;
}
public StatusBar statusBar() {
return this.statusBar;
}
public Container workArea() {
return this.workArea;
}
public JFrame frame() {
return this.frame;
}
public void setTitle(String title) {
this.frame.setTitle(title);
}
}
|