2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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.
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.
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.
21 import java.awt.event.*;
24 import javax.swing.event.*;
25 import org.altusmetrum.altosuilib_11.*;
27 public class AltosConfigureUI
28 extends AltosUIConfigure
29 implements DocumentListener
33 public JTextField callsign_value;
34 public JComboBox<String> position_value;
36 /* DocumentListener interface methods */
37 public void insertUpdate(DocumentEvent e) {
41 public void removeUpdate(DocumentEvent e) {
45 public void changedUpdate(DocumentEvent e) {
46 if (callsign_value != null)
47 AltosUIPreferences.set_callsign(callsign_value.getText());
50 public void add_voice() {
53 pane.add(new JLabel("Voice"), constraints(0, 1));
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);
62 voice.speak_always("Enable voice.");
64 voice.speak_always("Disable voice.");
67 pane.add(enable_voice, constraints(1, 1));
68 enable_voice.setToolTipText("Enable/Disable all audio in-flight announcements");
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.");
76 pane.add(test_voice, constraints(2, 1));
77 test_voice.setToolTipText("Play a stock audio clip to check volume");
81 public void add_callsign() {
82 /* Callsign setting */
83 pane.add(new JLabel("Callsign"), constraints(0, 1));
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));
92 boolean has_bluetooth;
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());
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;
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);
113 manage_frequencies.setToolTipText("Configure which values are shown in frequency menus");
115 pane.add(manage_frequencies, constraints(2, 1));
117 pane.add(manage_frequencies, constraints(0, 3));
121 final static String[] position_names = {
133 public void add_position() {
134 pane.add(new JLabel ("Menu position"), constraints(0, 1));
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);
146 pane.add(position_value, constraints(1, 2, GridBagConstraints.BOTH));
147 position_value.setToolTipText("Position of main AltosUI window");
151 public AltosConfigureUI(JFrame owner, AltosVoice voice) {