-
Notifications
You must be signed in to change notification settings - Fork 1
/
MainMenu.java
108 lines (92 loc) · 2.77 KB
/
MainMenu.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
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
import java.awt.EventQueue;
import javax.sound.sampled.LineUnavailableException;
import javax.swing.JFrame;
import javax.swing.JTextPane;
import java.awt.Font;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
public class MainMenu {
JFrame frame;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
MainMenu window = new MainMenu();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public MainMenu() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frame = new JFrame();
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JTextPane txtpnGuitarTabs = new JTextPane();
txtpnGuitarTabs.setFont(new Font("Tahoma", Font.PLAIN, 16));
txtpnGuitarTabs.setText(" Guitar Tabs");
txtpnGuitarTabs.setBounds(130, 13, 167, 30);
frame.getContentPane().add(txtpnGuitarTabs);
JButton btnExit = new JButton("Exit");
btnExit.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
System.exit(0);
}
});
btnExit.setBounds(323, 215, 97, 25);
frame.getContentPane().add(btnExit);
JButton btnRecordTabs = new JButton("Record tabs");
btnRecordTabs.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
frame.dispose();
RecordTabs window = new RecordTabs();
window.frame.setVisible(true);
frame.dispose();
}
});
btnRecordTabs.setBounds(12, 52, 112, 46);
frame.getContentPane().add(btnRecordTabs);
JButton btnNewButton = new JButton("View Tabs");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
frame.dispose();
OpenTabs window = new OpenTabs();
window.frame.setVisible(true);
frame.dispose();
}
});
btnNewButton.setBounds(12, 111, 112, 46);
frame.getContentPane().add(btnNewButton);
JButton btnNewButton_1 = new JButton("Guitar Tuner");
btnNewButton_1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
frame.dispose();
try {
Guituner window = new Guituner();
window.frame.setVisible(true);
} catch (LineUnavailableException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
frame.dispose();
}
});
btnNewButton_1.setBounds(12, 170, 112, 46);
frame.getContentPane().add(btnNewButton_1);
}
}