altosui: Make Windows java test "smarter"
[fw/altos] / altosui / AltosConfigureUI.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.awt.*;
21 import java.awt.event.*;
22 import java.beans.*;
23 import javax.swing.*;
24 import javax.swing.event.*;
25 import org.altusmetrum.altosuilib_3.*;
26
27 public class AltosConfigureUI
28         extends AltosUIConfigure
29         implements DocumentListener
30 {
31         AltosVoice      voice;
32
33         public JTextField       callsign_value;
34         public JComboBox<String>        position_value;
35
36         /* DocumentListener interface methods */
37         public void insertUpdate(DocumentEvent e) {
38                 changedUpdate(e);
39         }
40
41         public void removeUpdate(DocumentEvent e) {
42                 changedUpdate(e);
43         }
44
45         public void changedUpdate(DocumentEvent e) {
46                 if (callsign_value != null)
47                         AltosUIPreferences.set_callsign(callsign_value.getText());
48         }
49
50         public void add_voice() {
51
52                 /* Voice settings */
53                 pane.add(new JLabel("Voice"), constraints(0, 1));
54
55                 JRadioButton enable_voice = new JRadioButton("Enable", AltosUIPreferences.voice());
56                 enable_voice.addActionListener(new ActionListener() {
57                                 public void actionPerformed(ActionEvent e) {
58                                         JRadioButton item = (JRadioButton) e.getSource();
59                                         boolean enabled = item.isSelected();
60                                         AltosUIPreferences.set_voice(enabled);
61                                         if (enabled)
62                                                 voice.speak_always("Enable voice.");
63                                         else
64                                                 voice.speak_always("Disable voice.");
65                                 }
66                         });
67                 pane.add(enable_voice, constraints(1, 1));
68                 enable_voice.setToolTipText("Enable/Disable all audio in-flight announcements");
69
70                 JButton test_voice = new JButton("Test Voice");
71                 test_voice.addActionListener(new ActionListener() {
72                                 public void actionPerformed(ActionEvent e) {
73                                         voice.speak("That's one small step for man; one giant leap for mankind.");
74                                 }
75                         });
76                 pane.add(test_voice, constraints(2, 1));
77                 test_voice.setToolTipText("Play a stock audio clip to check volume");
78                 row++;
79         }
80
81         public void add_callsign() {
82                 /* Callsign setting */
83                 pane.add(new JLabel("Callsign"), constraints(0, 1));
84
85                 callsign_value = new JTextField(AltosUIPreferences.callsign());
86                 callsign_value.getDocument().addDocumentListener(this);
87                 callsign_value.setToolTipText("Callsign sent in packet mode");
88                 pane.add(callsign_value, constraints(1, 2, GridBagConstraints.BOTH));
89                 row++;
90         }
91
92         boolean has_bluetooth;
93
94         public void add_bluetooth() {
95                 JButton manage_bluetooth = new JButton("Manage Bluetooth");
96                 manage_bluetooth.addActionListener(new ActionListener() {
97                                 public void actionPerformed(ActionEvent e) {
98                                         AltosBTManage.show(owner, AltosBTKnown.bt_known());
99                                 }
100                         });
101                 pane.add(manage_bluetooth, constraints(0, 2));
102                 /* in the same row as add_frequencies, so don't bump row */
103                 has_bluetooth = true;
104         }
105
106         public void add_frequencies() {
107                 JButton manage_frequencies = new JButton("Manage Frequencies");
108                 manage_frequencies.addActionListener(new ActionListener() {
109                                 public void actionPerformed(ActionEvent e) {
110                                         AltosConfigFreqUI.show(owner);
111                                 }
112                         });
113                 manage_frequencies.setToolTipText("Configure which values are shown in frequency menus");
114                 if (has_bluetooth)
115                         pane.add(manage_frequencies, constraints(2, 1));
116                 else
117                         pane.add(manage_frequencies, constraints(0, 3));
118                 row++;
119         }
120
121         final static String[] position_names = {
122                 "Top left",
123                 "Top",
124                 "Top right",
125                 "Left",
126                 "Center",
127                 "Right",
128                 "Bottom left",
129                 "Bottom",
130                 "Bottom right",
131         };
132
133         public void add_position() {
134                 pane.add(new JLabel ("Menu position"), constraints(0, 1));
135
136                 position_value = new JComboBox<String>(position_names);
137                 position_value.setMaximumRowCount(position_names.length);
138                 int position = AltosUIPreferences.position();
139                 position_value.setSelectedIndex(position);
140                 position_value.addActionListener(new ActionListener() {
141                                 public void actionPerformed(ActionEvent e) {
142                                         int     position = position_value.getSelectedIndex();
143                                         AltosUIPreferences.set_position(position);
144                                 }
145                         });
146                 pane.add(position_value, constraints(1, 2, GridBagConstraints.BOTH));
147                 position_value.setToolTipText("Position of main AltosUI window");
148                 row++;
149         }
150
151         public AltosConfigureUI(JFrame owner, AltosVoice voice) {
152                 super(owner);
153
154                 this.voice = voice;
155         }
156 }