]> ruin.nu Git - moosique.git/blobdiff - MooGUI.java
fixed filefilter
[moosique.git] / MooGUI.java
index c06dc3a078dca659aacd7c224c4e61a14cf0b64d..3fff59d4e5bc1c766faab2a6f7bc6c239c22558c 100644 (file)
@@ -1,29 +1,77 @@
 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  Mikael Andreen
  */
  
-public class MooGUI {
+public class MooGUI extends JFrame implements WindowListener {
 
-       Sequence seq;
+       private Sequence seq;
+       private JLabel statusBar;
+       // private MooView view;
        
-       /* 
+       /** 
         * Creates the GUI.
         */
-       public MooGUI (Sequence seq) {
+       public MooGUI(Sequence seq) {
+               super("Moosique");
+               
+               // Adds menu bar.
+               setJMenuBar(new MooMenu());
 
+               // Adds toolbar.
+               getContentPane().add(new MooToolbar(), BorderLayout.NORTH);
+               addWindowListener(this);
+               
+               // Adds one track.
+               getContentPane().add(new MooTrackView(), BorderLayout.CENTER);
+               addWindowListener(this);
+               
+               // Adds main view.
+               // view = new MooView();
+
+               // Adds status bar.
+               //statusBar = new JLabel("Welcome to Moosique!", Label.CENTER);
+
+               //MooInstrumentList m = new MooInstrumentList();
+               //getContentPane().add(m, BorderLayout.CENTER);
+               //m.addKeyListener(new MooKeyboard());
+               //pack();
+
+               // Dimension bounds = new Dimension(300,70);
+               // setSize(bounds.width,bounds.height);
+               // setLocation((Toolkit.getDefaultToolkit().getScreenSize().width / 2) - (bounds.width / 2), (Toolkit.getDefaultToolkit().getScreenSize().height / 2) - (bounds.height / 2));
+               // setResizable(false);
+               // setBackground(Color.white);
+               setVisible(true);
        }
        
-       /* 
+       /** 
         * Changes the sequence of the GUI.
         * @param sequence      the MIDI sequence to visualize
         */
        public void setSequence(Sequence sequence) {
                seq = sequence;
        }
-}
\ No newline at end of file
+
+       /** 
+        * Shows the given message in the status bar.
+        * @param text  the message to show
+        */
+       public void setStatus(String text) {
+               statusBar.setText(text);
+       }
+
+       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) {}
+}