X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=43c553a5d0f11336cb3a1a25f56e5733124ce8b3;hb=623c453a916803c781d32f667fca8698d0814c8c;hp=146ca6daa8483350c78cbc2fcea6557d67a05121;hpb=ba84468acd609e00f4c2df575712b4ffd1399e58;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index 146ca6d..43c553a 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -2,6 +2,7 @@ import javax.sound.midi.*; import javax.swing.*; import java.awt.*; import java.awt.event.*; +import java.util.*; /** * Moosique's graphical user interface. @@ -16,16 +17,21 @@ public class MooGUI extends JFrame { private MooToolbar toolbar; private MooView view; private JLabel statusBar; + private java.util.Timer timer; + public static final int statusResetDelay = 3000; public static final Font FONT = new Font("Helvetica", Font.PLAIN, 10); public static final Color bgColor = new Color(192, 224, 255); + public static final Image logo = Toolkit.getDefaultToolkit().getImage("images/moose.gif"); /** * Creates the GUI. + * @param seq The sequence that the program is operating on. */ public MooGUI(Sequence seq) { super("Moosique"); this.seq = seq; + advanceStatus(); Container pane = getContentPane(); pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS)); @@ -33,13 +39,15 @@ public class MooGUI extends JFrame { // Adds menu bar. menu = new MooMenu(); setJMenuBar(menu); + advanceStatus(); // Adds toolbar. toolbar = new MooToolbar(); pane.add(toolbar, BorderLayout.NORTH); + advanceStatus(); // Adds main view. - view = new MooView(seq); + view = new MooView(seq.getTracks()); pane.add(view, BorderLayout.CENTER); // Adds status bar. @@ -52,34 +60,51 @@ public class MooGUI extends JFrame { setBackground(menu); setBackground(toolbar); setBackground(view); - statusBar.setBackground(bgColor); - view.setBackground(bgColor); + // Creates timer. + timer = new java.util.Timer(); + + // Sets up global key listener. ActionMap am = getRootPane().getActionMap(); Action playAction = new AbstractAction() { public void actionPerformed(ActionEvent ae) { - Moosique.resumepause(); + if (!Moosique.getSequencer().isRunning()) { + Moosique.play(); + } else { + Moosique.stop(); + } }}; - am.put("play", playAction); + am.put("Play", playAction); + am.put("Change octave up", createOctaveAction(1)); + am.put("Change octave down", createOctaveAction(-1)); InputMap im = getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT); KeyStroke playKey = KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0); - im.put(playKey, "play"); - + KeyStroke octaveUpKey = KeyStroke.getKeyStroke(KeyEvent.VK_F9, 0); + KeyStroke octaveDownKey = KeyStroke.getKeyStroke(KeyEvent.VK_F10, 0); + im.put(playKey, "Play"); + im.put(octaveUpKey, "Change octave up"); + im.put(octaveDownKey, "Change octave down"); + advanceStatus(); // Configures window. addWindowListener(new MooGUICloser()); pack(); + setIconImage(logo); Dimension bounds = Toolkit.getDefaultToolkit().getScreenSize(); - setSize(bounds.width,bounds.height - 40); + setSize(bounds.width,bounds.height - 28); setLocation(0, 0); - // setResizable(false); setBackground(Color.white); + advanceStatus(); setVisible(true); show(); } + /** + * Sets the background on Containers + * @param c the Container that will have it's background change + */ private void setBackground(Container c) { c.setBackground(bgColor); Component[] comps = c.getComponents(); @@ -94,7 +119,8 @@ public class MooGUI extends JFrame { */ public void setSequence(Sequence sequence) { seq = sequence; - view.setSequence(seq); + view.setTracks(seq.getTracks(), true); + toolbar.resetProgInd(); } /** @@ -103,20 +129,49 @@ public class MooGUI extends JFrame { */ public void setStatus(String text) { statusBar.setText(text); + timer.schedule(new StatusResetTask(), statusResetDelay); + } + + /** + * Calls on the main view to update the track views, + * and on the toolbar to update the progress indicator. + */ + public void update(long tickPosition){ + view.update(tickPosition); + toolbar.updateProgInd(tickPosition); } /** - * Update the view. + * Creates an action for a specific octave. + * @param octave The octave we want an action for. */ - public void update(){ - view.update(); - // Calls on the toolbar to update the progress indicator. - //toolbar.updateProgInd(); + private Action createOctaveAction(final int octave) { + Action octaveAction = new AbstractAction() { + public void actionPerformed(ActionEvent ae) { + MooKeyboard.setOctave(octave); + }}; + return octaveAction; } + private void advanceStatus() { + System.out.print("."); + } + + /** + * Listener for closing the program + */ class MooGUICloser extends WindowAdapter { public void windowClosing(WindowEvent e) { Moosique.quit(); } } + + /** + * TimerTask that resets the statusbar + */ + class StatusResetTask extends TimerTask { + public void run() { + setStatus(" "); + } + } }