X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=9f171a3a8c6a11965eb118a2b3e044af17d483eb;hb=31f81450a303d52bf37ec8bcbb12e0f3b3b8b833;hp=ce67d69e7cb65db5daccde7fbb97fc6bce7bb101;hpb=a377991ed2bf7c9e050e68d32304159db0862cd6;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index ce67d69..9f171a3 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -55,9 +55,27 @@ public class MooGUI extends JFrame { statusBar.setBackground(bgColor); view.setBackground(bgColor); + // Sets up global key listener + ActionMap am = getRootPane().getActionMap(); + + Action playAction = new AbstractAction() { + public void actionPerformed(ActionEvent ae) { + if (!Moosique.getSequencer().isRunning()) { + Moosique.play(); + } else { + Moosique.stop(); + } + }}; + am.put("Play", playAction); + + InputMap im = getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT); + KeyStroke playKey = KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0); + im.put(playKey, "Play"); + // Configures window. addWindowListener(new MooGUICloser()); pack(); + setIconImage(Toolkit.getDefaultToolkit().getImage("images/moose.gif")); Dimension bounds = Toolkit.getDefaultToolkit().getScreenSize(); setSize(bounds.width,bounds.height - 40); setLocation(0, 0); @@ -74,14 +92,15 @@ public class MooGUI extends JFrame { comps[i].setBackground(bgColor); } } - + /** * Changes the sequence of the GUI. * @param sequence the MIDI sequence to visualize */ public void setSequence(Sequence sequence) { seq = sequence; - view.update(seq.getTracks()); + view.setTracks(seq.getTracks()); + toolbar.resetProgInd(); } /** @@ -91,10 +110,19 @@ public class MooGUI extends JFrame { public void setStatus(String text) { statusBar.setText(text); } - + + /** + * 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); + } + class MooGUICloser extends WindowAdapter { public void windowClosing(WindowEvent e) { Moosique.quit(); } } -} \ No newline at end of file +}