Switch from GPLv2 to GPLv2+
[fw/altos] / micropeak / MicroDeviceDialog.java
1 /*
2  * Copyright © 2012 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package org.altusmetrum.micropeak;
20
21 import javax.swing.*;
22 import java.awt.*;
23 import java.awt.event.*;
24 import java.util.*;
25 import org.altusmetrum.altosuilib_11.*;
26
27 public class MicroDeviceDialog extends AltosDeviceDialog {
28
29         public AltosDevice[] devices() {
30                 java.util.List<MicroUSB>        list = MicroUSB.list();
31
32                 if (list == null) {
33                         JOptionPane.showMessageDialog(frame,
34                                                       "libaltos failed to load",
35                                                       "Helper Library Failed",
36                                                       JOptionPane.ERROR_MESSAGE);
37                         return new AltosDevice[0];
38                 }
39
40                 int             num_devices = list.size();
41                 AltosDevice[]   devices = new AltosDevice[num_devices];
42
43                 for (int i = 0; i < num_devices; i++)
44                         devices[i] = list.get(i);
45                 return devices;
46         }
47
48         public MicroDeviceDialog (Frame in_frame, Component location) {
49                 super(in_frame, location, 0);
50         }
51
52         public static AltosDevice show (Component frameComp) {
53                 Frame                   frame = JOptionPane.getFrameForComponent(frameComp);
54                 MicroDeviceDialog       dialog;
55
56                 dialog = new MicroDeviceDialog (frame, frameComp);
57                 dialog.setVisible(true);
58                 return dialog.getValue();
59         }
60 }