package org.activityinfo.ui.client.widget.coord; /* * #%L * ActivityInfo Server * %% * Copyright (C) 2009 - 2013 UNICEF * %% * 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, either version 3 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 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program. If not, see * <http://www.gnu.org/licenses/gpl-3.0.html>. * #L% */ import com.extjs.gxt.ui.client.widget.form.Field; import com.extjs.gxt.ui.client.widget.form.PropertyEditor; import com.extjs.gxt.ui.client.widget.form.Validator; import org.activityinfo.core.client.type.converter.JsCoordinateNumberFormatter; import org.activityinfo.core.shared.type.converter.CoordinateAxis; import org.activityinfo.core.shared.type.converter.CoordinateFormatException; import org.activityinfo.core.shared.type.converter.CoordinateParser; import org.activityinfo.legacy.shared.Log; public class CoordinateEditor implements PropertyEditor<Double>, Validator { private final CoordinateParser parser; private String outOfBoundsMessage; private double minValue; private double maxValue; public CoordinateEditor(CoordinateAxis axis) { switch (axis) { case LATITUDE: minValue = -CoordinateParser.MAX_LATITUDE; maxValue = +CoordinateParser.MAX_LATITUDE; break; case LONGITUDE: minValue = -CoordinateParser.MAX_LONGITUDE; maxValue = +CoordinateParser.MAX_LONGITUDE; break; default: throw new IllegalArgumentException("Axis: " + axis); } parser = new CoordinateParser(axis, JsCoordinateNumberFormatter.INSTANCE); // the parser does not enforce the bounds, but it can use them to infer the // hemisphere. parser.setMinValue(minValue); parser.setMaxValue(maxValue); } @Override public String getStringValue(Double value) { String s = parser.format(parser.getNotation(), value); Log.debug("CoordinateEditor: " + value + " -> " + s); return s; } @Override public Double convertStringValue(String value) { if (value == null) { return null; } try { double d = parser.parse(value); Log.debug("CoordinateEditor: '" + value + "' -> " + d); return d; } catch (CoordinateFormatException e) { return null; } } @Override public String validate(Field<?> field, String value) { if (value == null) { return null; } try { double coord = parser.parse(value); if (coord < minValue || coord > maxValue) { return outOfBoundsMessage; } return null; } catch (CoordinateFormatException ex) { return ex.getMessage(); } catch (NumberFormatException ex) { return ex.getMessage(); } } public double getMinValue() { return minValue; } public void setMinValue(double minValue) { this.minValue = minValue; this.parser.setMinValue(minValue); } public double getMaxValue() { return maxValue; } public void setMaxValue(double maxValue) { this.maxValue = maxValue; this.parser.setMaxValue(maxValue); } public String getOutOfBoundsMessage() { return outOfBoundsMessage; } public void setOutOfBoundsMessage(String outOfBoundsMessage) { this.outOfBoundsMessage = outOfBoundsMessage; } }