X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooGUI.java;h=9f171a3a8c6a11965eb118a2b3e044af17d483eb;hb=357944d9255bb7cb1ad5ed4f5c960b22a8c64b8f;hp=0095f42fc6906e60be3d06332bef79695718e833;hpb=dc7477835f6d61c4235b7fbe36f97fec553e2f81;p=moosique.git diff --git a/MooGUI.java b/MooGUI.java index 0095f42..9f171a3 100644 --- a/MooGUI.java +++ b/MooGUI.java @@ -1,29 +1,128 @@ import javax.sound.midi.*; import javax.swing.*; +import java.awt.*; +import java.awt.event.*; -/* +/** * Moosique's graphical user interface. * - * @author Andersson, Andreen, Lanneskog, Pehrson - * @version 1 + * @author Einar Pehrson */ -public class MooGUI { +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 () { + public MooGUI(Sequence seq) { + super("Moosique"); + 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(); + 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(); + } + + /** + * 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(); + } } }