2 * Copyright © 2011 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.
18 package org.altusmetrum.altosuilib_2;
21 import org.altusmetrum.altoslib_4.*;
23 public class AltosFreqList extends JComboBox<AltosFrequency> {
29 public void set_frequency(double new_frequency) {
32 if (new_frequency < 0) {
37 for (i = 0; i < getItemCount(); i++) {
38 AltosFrequency f = (AltosFrequency) getItemAt(i);
40 if (f.close(new_frequency)) {
45 for (i = 0; i < getItemCount(); i++) {
46 AltosFrequency f = (AltosFrequency) getItemAt(i);
48 if (new_frequency < f.frequency)
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());
58 public void set_product(String new_product) {
59 product = new_product;
62 public void set_serial(int new_serial) {
66 public double frequency() {
67 AltosFrequency f = (AltosFrequency) getSelectedItem();
73 public AltosFreqList () {
74 super(AltosUIPreferences.common_frequencies());
75 setMaximumRowCount(getItemCount());
81 public AltosFreqList(double in_frequency) {
83 set_frequency(in_frequency);