-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEndMenuGUI.java
70 lines (46 loc) · 1.41 KB
/
EndMenuGUI.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
package boardgame.gui;
import javax.swing.*;
import java.awt.FlowLayout;
import java.awt.event.*;
public class EndMenuGUI {
private JFrame endFrame;
private JButton mainMenuButton;
private JButton quitButton;
private JTextArea gameOverMessage;
public EndMenuGUI() {
// TODO Auto-generated constructor stub
super();
this.endFrame = new JFrame("Game Over!");
this.mainMenuButton = new JButton("Main Menu");
this.quitButton = new JButton("Quit");
this.gameOverMessage = new JTextArea("Game Over!");
endFrame.setSize(150, 150);
endFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
endFrame.setLayout(new FlowLayout());
buildEndGUI();
//startFrame.setVisible(true);
}
public void buildEndGUI() {
mainMenuButton.addActionListener(new ButtonListener());
quitButton.addActionListener(new ButtonListener());
endFrame.add(gameOverMessage);
endFrame.add(mainMenuButton);
endFrame.add(quitButton);
endFrame.setVisible(true);
}
private class ButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e) //this is the method MenuListener must implement, as it comes from the ActionListener interface.
{
JButton source = (JButton)(e.getSource());
if(source.equals(mainMenuButton))
{
GameRunner.main(null);
endFrame.dispose();
}
if(source.equals(quitButton)) {
endFrame.dispose();
}
}
}
}