Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[fw/altos] / altosuilib / AltosUIFreqList.java
1 /*
2  * Copyright © 2011 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 org.altusmetrum.altosuilib_7;
19
20 import javax.swing.*;
21 import org.altusmetrum.altoslib_7.*;
22
23 public class AltosUIFreqList extends JComboBox<AltosFrequency> {
24
25         String  product;
26         int     serial;
27         int     calibrate;
28
29         public void set_frequency(double new_frequency) {
30                 int i;
31
32                 if (new_frequency < 0) {
33                         setVisible(false);
34                         return;
35                 }
36
37                 for (i = 0; i < getItemCount(); i++) {
38                         AltosFrequency  f = (AltosFrequency) getItemAt(i);
39
40                         if (f.close(new_frequency)) {
41                                 setSelectedIndex(i);
42                                 return;
43                         }
44                 }
45                 for (i = 0; i < getItemCount(); i++) {
46                         AltosFrequency  f = (AltosFrequency) getItemAt(i);
47
48                         if (new_frequency < f.frequency)
49                                 break;
50                 }
51                 String  description = String.format("%s serial %d", product, serial);
52                 AltosFrequency  frequency = new AltosFrequency(new_frequency, description);
53                 AltosUIPreferences.add_common_frequency(frequency);
54                 insertItemAt(frequency, i);
55                 setMaximumRowCount(getItemCount());
56                 setVisible(true);
57         }
58
59         public void set_product(String new_product) {
60                 product = new_product;
61         }
62
63         public void set_serial(int new_serial) {
64                 serial = new_serial;
65         }
66
67         public double frequency() {
68                 AltosFrequency  f = (AltosFrequency) getSelectedItem();
69                 if (f != null)
70                         return f.frequency;
71                 return 434.550;
72         }
73
74         public AltosUIFreqList () {
75                 super(AltosUIPreferences.common_frequencies());
76                 setMaximumRowCount(getItemCount());
77                 setEditable(false);
78                 product = "Unknown";
79                 serial = 0;
80         }
81
82         public AltosUIFreqList(double in_frequency) {
83                 this();
84                 set_frequency(in_frequency);
85         }
86 }