/* * Created on 06-Jun-2006 * * Copyright (c) 2006 P.J.Leonard * * http://www.frinika.com * * This file is part of Frinika. * * Frinika is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * Frinika is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with Frinika; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package com.frinika.sequencer.gui; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Vector; import javax.sound.midi.MidiDevice; import javax.sound.midi.MidiSystem; import javax.sound.midi.MidiUnavailableException; import javax.sound.midi.MidiDevice.Info; import javax.swing.BoxLayout; import javax.swing.JCheckBox; import javax.swing.JFrame; import javax.swing.JPanel; import com.frinika.global.FrinikaConfig; import com.frinika.project.gui.ProjectFrame; // //import uk.co.simphoney.javasound.MidiDeviceHandle; //import uk.co.simphoney.javasound.MidiHub; public class MidiInDevicePanel extends JPanel { private static final long serialVersionUID = 1L; Vector<JCheckBox> boxes = new Vector<JCheckBox>(); public MidiInDevicePanel() { setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); // MidiDeviceHandle [] list= MidiHub.getMidiInHandles(); Info infos[] = MidiSystem.getMidiDeviceInfo(); Vector<String> names = new Vector<String>(); for (String name : FrinikaConfig.getMidiInDeviceList()) { names.add(name); } ActionListener act = new ActionListener() { public void actionPerformed(ActionEvent e) { Vector<String> list = new Vector<String>(); for (JCheckBox box : boxes) { if (box.isSelected()) { list.add(box.getText()); // System.out.println(box.getText()); } } FrinikaConfig.setMidiInDeviceList(list); FrinikaConfig.store(); ProjectFrame.midiInDeviceChange(); } }; for (Info info : infos) { MidiDevice dev; try { dev = MidiSystem.getMidiDevice(info); if (dev.getMaxTransmitters() != 0) { String str = dev.getDeviceInfo().toString(); JCheckBox box = new JCheckBox(str, names.contains(str)); boxes.add(box); box.addActionListener(act); add(box); } } catch (MidiUnavailableException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } // // // for(final MidiDeviceHandle d:list){ // if (d.getMidiDevice() == null) continue; // JCheckBox box=new // JCheckBox(d.toString(),names.contains(d.toString())); // boxes.add(box); // box.addActionListener(act); // add(box); // } } public static void main(String args[]) { JFrame f = new JFrame(); f.setContentPane(new MidiInDevicePanel()); f.pack(); f.setVisible(true); } }