don't build all the "fat" jar deliverables by default
[fw/altos] / ao-tools / altosui / AltosDeviceDialog.java
1 /*
2  * Copyright © 2010 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; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package altosui;
19
20 import java.lang.*;
21 import java.util.*;
22 import javax.swing.*;
23 import java.awt.*;
24 import java.awt.event.*;
25 import libaltosJNI.libaltos;
26 import libaltosJNI.altos_device;
27 import libaltosJNI.SWIGTYPE_p_altos_file;
28 import libaltosJNI.SWIGTYPE_p_altos_list;
29 import altosui.AltosDevice;
30
31 public class AltosDeviceDialog extends JDialog implements ActionListener {
32
33         private static AltosDeviceDialog        dialog;
34         private static AltosDevice              value = null;
35         private JList                           list;
36
37         public static AltosDevice show (Component frameComp, int product) {
38
39                 Frame frame = JOptionPane.getFrameForComponent(frameComp);
40                 AltosDevice[]   devices;
41                 devices = AltosDevice.list(product);
42
43                 if (devices != null && devices.length > 0) {
44                         value = null;
45                         dialog = new AltosDeviceDialog(frame, frameComp,
46                                                        devices,
47                                                        devices[0]);
48
49                         dialog.setVisible(true);
50                         return value;
51                 } else {
52                         JOptionPane.showMessageDialog(frame,
53                                                       "No AltOS devices available",
54                                                       "No AltOS devices",
55                                                       JOptionPane.ERROR_MESSAGE);
56                         return null;
57                 }
58         }
59
60         private AltosDeviceDialog (Frame frame, Component location,
61                                    AltosDevice[] devices,
62                                    AltosDevice initial) {
63                 super(frame, "Device Selection", true);
64
65                 value = null;
66
67                 JButton cancelButton = new JButton("Cancel");
68                 cancelButton.addActionListener(this);
69
70                 final JButton selectButton = new JButton("Select");
71                 selectButton.setActionCommand("select");
72                 selectButton.addActionListener(this);
73                 getRootPane().setDefaultButton(selectButton);
74
75                 list = new JList(devices) {
76                                 //Subclass JList to workaround bug 4832765, which can cause the
77                                 //scroll pane to not let the user easily scroll up to the beginning
78                                 //of the list.  An alternative would be to set the unitIncrement
79                                 //of the JScrollBar to a fixed value. You wouldn't get the nice
80                                 //aligned scrolling, but it should work.
81                                 public int getScrollableUnitIncrement(Rectangle visibleRect,
82                                                                       int orientation,
83                                                                       int direction) {
84                                         int row;
85                                         if (orientation == SwingConstants.VERTICAL &&
86                                             direction < 0 && (row = getFirstVisibleIndex()) != -1) {
87                                                 Rectangle r = getCellBounds(row, row);
88                                                 if ((r.y == visibleRect.y) && (row != 0))  {
89                                                         Point loc = r.getLocation();
90                                                         loc.y--;
91                                                         int prevIndex = locationToIndex(loc);
92                                                         Rectangle prevR = getCellBounds(prevIndex, prevIndex);
93
94                                                         if (prevR == null || prevR.y >= r.y) {
95                                                                 return 0;
96                                                         }
97                                                         return prevR.height;
98                                                 }
99                                         }
100                                         return super.getScrollableUnitIncrement(
101                                                 visibleRect, orientation, direction);
102                                 }
103                         };
104
105                 list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
106                 list.setLayoutOrientation(JList.HORIZONTAL_WRAP);
107                 list.setVisibleRowCount(-1);
108                 list.addMouseListener(new MouseAdapter() {
109                                  public void mouseClicked(MouseEvent e) {
110                                          if (e.getClickCount() == 2) {
111                                                  selectButton.doClick(); //emulate button click
112                                          }
113                                  }
114                         });
115                 JScrollPane listScroller = new JScrollPane(list);
116                 listScroller.setPreferredSize(new Dimension(400, 80));
117                 listScroller.setAlignmentX(LEFT_ALIGNMENT);
118
119                 //Create a container so that we can add a title around
120                 //the scroll pane.  Can't add a title directly to the
121                 //scroll pane because its background would be white.
122                 //Lay out the label and scroll pane from top to bottom.
123                 JPanel listPane = new JPanel();
124                 listPane.setLayout(new BoxLayout(listPane, BoxLayout.PAGE_AXIS));
125
126                 JLabel label = new JLabel("Select Device");
127                 label.setLabelFor(list);
128                 listPane.add(label);
129                 listPane.add(Box.createRigidArea(new Dimension(0,5)));
130                 listPane.add(listScroller);
131                 listPane.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
132
133                 //Lay out the buttons from left to right.
134                 JPanel buttonPane = new JPanel();
135                 buttonPane.setLayout(new BoxLayout(buttonPane, BoxLayout.LINE_AXIS));
136                 buttonPane.setBorder(BorderFactory.createEmptyBorder(0, 10, 10, 10));
137                 buttonPane.add(Box.createHorizontalGlue());
138                 buttonPane.add(cancelButton);
139                 buttonPane.add(Box.createRigidArea(new Dimension(10, 0)));
140                 buttonPane.add(selectButton);
141
142                 //Put everything together, using the content pane's BorderLayout.
143                 Container contentPane = getContentPane();
144                 contentPane.add(listPane, BorderLayout.CENTER);
145                 contentPane.add(buttonPane, BorderLayout.PAGE_END);
146
147                 //Initialize values.
148                 list.setSelectedValue(initial, true);
149                 pack();
150                 setLocationRelativeTo(location);
151         }
152
153         //Handle clicks on the Set and Cancel buttons.
154         public void actionPerformed(ActionEvent e) {
155                 if ("select".equals(e.getActionCommand()))
156                         AltosDeviceDialog.value = (AltosDevice)(list.getSelectedValue());
157                 AltosDeviceDialog.dialog.setVisible(false);
158         }
159
160 }