]> ruin.nu Git - moosique.git/blobdiff - MooInstrumentList.java
*** empty log message ***
[moosique.git] / MooInstrumentList.java
index 6f0211fa4931784707135b2bf4c92c048d014244..8f1afcb4728b25a92ec6103a41eb84405c0999d4 100644 (file)
@@ -11,16 +11,24 @@ import java.awt.event.*;
  
 public class MooInstrumentList extends JComboBox implements ActionListener {
 
-       public MooInstrumentList() {
+       protected int channel;
+
+       public MooInstrumentList(int instrument) {
                super(instruments);
-               setFont(new Font("Times New Roman", Font.PLAIN, 10));
+               setSelectedIndex(instrument);
+               setFont(new Font("Helvetica", Font.PLAIN, 10));
                addActionListener(this);
        }
 
+       public void setChannel(int chan){
+               channel = chan;
+               setSelectedIndex(Moosique.getChannel(chan).getProgram());
+       }
+
        public void actionPerformed(ActionEvent e) {
                JComboBox box = (JComboBox)e.getSource();
                int instrument = box.getSelectedIndex();
-               Moosique.getActiveChannel().programChange(instrument);
+               Moosique.getChannel(channel).programChange(instrument);
        }
     
        public static final String[] instruments = {
@@ -153,4 +161,4 @@ public class MooInstrumentList extends JComboBox implements ActionListener {
                " 126 Applause",
                " 127 Gunshot"
        };
-}
\ No newline at end of file
+}