-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartButton.java
52 lines (41 loc) · 1.15 KB
/
StartButton.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
package GUI;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
public class StartButton extends JPanel{
WindowMain myWM = null;
public StartButton(WindowMain wm) {
this.myWM = wm;
setPreferredSize(new Dimension(414, 400));
JButton btnNewButton = new JButton("START");
btnNewButton.setForeground(new Color(0, 0, 0));
btnNewButton.setBackground(new Color(255, 255, 255));
btnNewButton.setBounds(38, 145, 336, 135);
btnNewButton.setFont(new Font("Courier New", Font.BOLD, 99));
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
myWM.showTimeBar();
myWM.showQuizPanel();
myWM.showSelectPanel();
myWM.setVisible(true);
}
});
setLayout(null);
add(btnNewButton);
}
class ButtonPress implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
myWM.showTimeBar();
myWM.showQuizPanel();
}
}
}