X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=9f171a3a8c6a11965eb118a2b3e044af17d483eb;hb=31f81450a303d52bf37ec8bcbb12e0f3b3b8b833;hp=b7031d8b1f78fdd1660fb5430ae1943f42dba897;hpb=ca26110e76a5660f7ce500305018c27954277ecc;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index b7031d8..9f171a3 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -6,45 +6,123 @@ import java.awt.event.*; /** * Moosique's graphical user interface. * - * @author Mikael Andreen + * @author Einar Pehrson */ -public class MooGUI extends JFrame implements WindowListener { +public class MooGUI extends JFrame { - Sequence seq; + private Sequence seq; + private MooMenu menu; + private MooToolbar toolbar; + private MooView view; + private JLabel statusBar; + public static final Font FONT = new Font("Helvetica", Font.PLAIN, 10); + public static final Color bgColor = new Color(192, 224, 255); /** * Creates the GUI. */ public MooGUI(Sequence seq) { super("Moosique"); - addWindowListener(this); - MooInstrumentList m = new MooInstrumentList(); - getContentPane().add(m); - m.addKeyListener(new MooKeyboard()); + + this.seq = seq; + + Container pane = getContentPane(); + pane.setLayout(new BoxLayout(pane, BoxLayout.Y_AXIS)); + + // Adds menu bar. + menu = new MooMenu(); + setJMenuBar(menu); + + // Adds toolbar. + toolbar = new MooToolbar(); + pane.add(toolbar, BorderLayout.NORTH); + + // Adds main view. + view = new MooView(seq.getTracks()); + pane.add(view, BorderLayout.CENTER); + + // Adds status bar. + statusBar = new JLabel("Welcome to Moosique!", JLabel.CENTER); + statusBar.setFont(FONT); + pane.add(statusBar, BorderLayout.SOUTH); + + // Brings on the colors! + setBackground(pane); + setBackground(menu); + setBackground(toolbar); + setBackground(view); + 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(); - Dimension bounds = new Dimension(300,70); - setJMenuBar(new MooMenu()); -// setSize(bounds.width,bounds.height); - setLocation((Toolkit.getDefaultToolkit().getScreenSize().width / 2) - (bounds.width / 2), (Toolkit.getDefaultToolkit().getScreenSize().height / 2) - (bounds.height / 2)); -// setResizable(false); + setIconImage(Toolkit.getDefaultToolkit().getImage("images/moose.gif")); + Dimension bounds = Toolkit.getDefaultToolkit().getScreenSize(); + setSize(bounds.width,bounds.height - 40); + setLocation(0, 0); + // setResizable(false); setBackground(Color.white); setVisible(true); + show(); } - + + private void setBackground(Container c) { + c.setBackground(bgColor); + Component[] comps = c.getComponents(); + for (int i = 0; i < comps.length; i++) { + 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.setTracks(seq.getTracks()); + toolbar.resetProgInd(); } - public void windowOpened(WindowEvent e) {} - public void windowClosing(WindowEvent e) {Moosique.quit();} - public void windowClosed(WindowEvent e) {} - public void windowIconified(WindowEvent e) {} - public void windowDeiconified(WindowEvent e) {} - public void windowActivated(WindowEvent e) {} - public void windowDeactivated(WindowEvent e) {} + /** + * Shows the given message in the status bar. + * @param text the message to show + */ + 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(); + } + } }