altosui: Rename AltosConfig -> AltosConfigFC
[fw/altos] / altosui / AltosConfigPyroUI.java
index 694226be70b41b701d66d6c2b755f4b7452ce32a..cd887c00c8cadd43ee74d414cad65ed4f8c1c44d 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -22,14 +23,14 @@ import java.awt.*;
 import java.awt.event.*;
 import javax.swing.*;
 import javax.swing.event.*;
-import org.altusmetrum.altoslib_7.*;
-import org.altusmetrum.altosuilib_7.*;
+import org.altusmetrum.altoslib_12.*;
+import org.altusmetrum.altosuilib_12.*;
 
 public class AltosConfigPyroUI
        extends AltosUIDialog
        implements ItemListener, DocumentListener, AltosUnitsListener, ActionListener
 {
-       AltosConfigUI   owner;
+       AltosConfigFCUI owner;
        Container       pane;
 
        static Insets il = new Insets(4,4,4,4);
@@ -105,7 +106,7 @@ public class AltosConfigPyroUI
                                double  unit_value = new_value;
                                AltosUnits units = AltosPyro.pyro_to_units(flag);
                                if (units != null)
-                                       unit_value = units.value(new_value);
+                                       unit_value = units.parse_value(new_value);
                                String  format;
                                if (scale >= 100)
                                        format = "%6.2f";
@@ -346,9 +347,9 @@ public class AltosConfigPyroUI
        /* A window listener to catch closing events and tell the config code */
        class ConfigListener extends WindowAdapter {
                AltosConfigPyroUI       ui;
-               AltosConfigUI           owner;
+               AltosConfigFCUI         owner;
 
-               public ConfigListener(AltosConfigPyroUI this_ui, AltosConfigUI this_owner) {
+               public ConfigListener(AltosConfigPyroUI this_ui, AltosConfigFCUI this_owner) {
                        ui = this_ui;
                        owner = this_owner;
                }
@@ -366,7 +367,7 @@ public class AltosConfigPyroUI
                        setVisible(false);
        }
 
-       public AltosConfigPyroUI(AltosConfigUI in_owner, AltosPyro[] pyros, double pyro_firing_time) {
+       public AltosConfigPyroUI(AltosConfigFCUI in_owner, AltosPyro[] pyros, double pyro_firing_time) {
 
                super(in_owner, "Configure Pyro Channels", false);