Implemented Add dialogs. Fixed some Add Event bugs.

This commit is contained in:
2015-02-26 18:23:23 +01:00
parent 5363546c45
commit e001163a74
5 changed files with 515 additions and 4 deletions
+3 -3
View File
@@ -27,21 +27,21 @@ public class MenuBar extends JMenuBar {
newEvent.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N, ActionEvent.CTRL_MASK));
newEvent.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//TODO
new AddEventPanel(w.getAgenda());
}
});
JMenuItem newArtist = new JMenuItem("New Artist");
newArtist.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//TODO
new AddArtistPanel(w.getAgenda());
}
});
JMenuItem newStage = new JMenuItem("New Stage");
newStage.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
//TODO
new AddStagePanel(w.getAgenda());
}
});