]> ruin.nu Git - moosique.git/blobdiff - MooGUI.java
added some toolbar pics
[moosique.git] / MooGUI.java
index cc145ab4a57f4e3f2603094aa8300c7152a6f51e..944ed986fcf26993440ca78a1c576874b6671542 100644 (file)
@@ -18,16 +18,19 @@ public class MooGUI extends JFrame implements WindowListener {
         */
        public MooGUI(Sequence seq) {
                super("Moosique");
+               setJMenuBar(new MooMenu());
+               getContentPane().add(new MooToolbar(), BorderLayout.NORTH);
                addWindowListener(this);
                MooInstrumentList m = new MooInstrumentList();
-               getContentPane().add(m);
+               getContentPane().add(m, BorderLayout.CENTER);
                m.addKeyListener(new MooKeyboard());
                pack();
-               Dimension bounds = new Dimension(300,70);
+               //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));
+               //setLocation((Toolkit.getDefaultToolkit().getScreenSize().width / 2) - (bounds.width / 2), (Toolkit.getDefaultToolkit().getScreenSize().height / 2) - (bounds.height / 2));
 //             setResizable(false);
-               setBackground(Color.white);
+               //setBackground(Color.white);
                setVisible(true);
        }
        
@@ -46,4 +49,4 @@ public class MooGUI extends JFrame implements WindowListener {
        public void windowDeiconified(WindowEvent e) {}
        public void windowActivated(WindowEvent e) {}
        public void windowDeactivated(WindowEvent e) {}
-}
\ No newline at end of file
+}