altosui: Add dialogs to configure 'common' frequencies
[fw/altos] / altosui / AltosConfigureUI.java
index 0f5e4a3bd3a7335fdcc1fc8da9e54b8c7beb2de0..a8a70ffdfb62ed7a7dd938ae8308e9dc3a2e74a5 100644 (file)
@@ -50,6 +50,7 @@ public class AltosConfigureUI
        JRadioButton    serial_debug;
 
        JButton         manage_bluetooth;
+       JButton         manage_frequencies;
 
        /* DocumentListener interface methods */
        public void changedUpdate(DocumentEvent e) {
@@ -207,13 +208,26 @@ public class AltosConfigureUI
                                        AltosBTManage.show(owner, Altos.bt_known);
                                }
                        });
-               c.gridx = 1;
+               c.gridx = 0;
                c.gridy = 6;
-               c.gridwidth = 3;
+               c.gridwidth = 2;
                c.fill = GridBagConstraints.NONE;
                c.anchor = GridBagConstraints.WEST;
                pane.add(manage_bluetooth, c);
 
+               manage_frequencies = new JButton("Manage Frequencies");
+               manage_frequencies.addActionListener(new ActionListener() {
+                               public void actionPerformed(ActionEvent e) {
+                                       AltosConfigFreqUI.show(owner);
+                               }
+                       });
+               c.gridx = 2;
+               c.gridy = 6;
+               c.gridwidth = 2;
+               c.fill = GridBagConstraints.NONE;
+               c.anchor = GridBagConstraints.WEST;
+               pane.add(manage_frequencies, c);
+
                /* And a close button at the bottom */
                close = new JButton("Close");
                close.addActionListener(new ActionListener() {