]> ruin.nu Git - moosique.git/blobdiff - MooTrackTitle.java
no message
[moosique.git] / MooTrackTitle.java
index d107b2c858342831c2dbcaa8f45ec5f91118b596..b24931f0cc5cc7907f42461bab4f4dec1dbd94a5 100644 (file)
@@ -19,39 +19,44 @@ public class MooTrackTitle extends JPanel{
         * Creates the title bar.
         */
        public MooTrackTitle () {
-               setLayout(new GridLayout(1,3));
+               setLayout(new GridLayout(3,1));
                instruments = new MooInstrumentList();
                add(instruments);
 
+               JPanel checkboxes = new JPanel();
+               checkboxes.setLayout(new GridLayout(1,3));
+
                channel = new JComboBox();
-               for (int i = 0; i < 16; i++)
+               channel.setFont(new Font("Helvetica", Font.PLAIN, 10));
+               for (int i = 1; i <= 16; i++)
                        channel.addItem(new Integer(i));
                channel.addItemListener(new ItemListener(){
                                public void itemStateChanged(ItemEvent e){
-                                       if (e.getStateChange() != e.SELECTED)
-                                               return; //return if this even isn't the selection event.
-
-                                       Object ob = e.getItem();
+                                       Object ob = channel.getSelectedItem();
                                        if (ob instanceof Integer){
                                                //set channel
                                        }
                                }});
                add(channel);
                
+
                mute = new JCheckBox("Mute");
+               mute.setFont(new Font("Helvetica", Font.PLAIN, 10));
                mute.addActionListener(new ActionListener(){
                                public void actionPerformed(ActionEvent event){
                                        //setMute
                                        solo.setSelected(false);
                                }});
-               add(mute);
+               checkboxes.add(mute);
 
                solo = new JCheckBox("Solo");
+               solo.setFont(new Font("Helvetica", Font.PLAIN, 10));
                solo.addActionListener(new ActionListener(){
                                public void actionPerformed(ActionEvent event){
                                        //setSolo
                                        mute.setSelected(false);
                                }});
-               add(solo);
+               checkboxes.add(solo);
+               add(checkboxes);
        }
 }