All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nuiton.jaxx.widgets.temperature.TemperatureEditorHandler Maven / Gradle / Ivy

package org.nuiton.jaxx.widgets.temperature;

/*-
 * #%L
 * JAXX :: Widgets Temperature
 * %%
 * Copyright (C) 2008 - 2020 Code Lutin, Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser 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 Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import io.ultreia.java4all.bean.JavaBean;
import io.ultreia.java4all.jaxx.widgets.BeanUIHandlerSupport;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.nuiton.jaxx.runtime.spi.UIHandler;
import org.nuiton.jaxx.widgets.number.NumberEditorModel;

import javax.swing.JLabel;
import java.util.Objects;

/**
 * Created by tchemit on 25/08/17.
 *
 * @author Tony Chemit - [email protected]
 */
public class TemperatureEditorHandler extends BeanUIHandlerSupport implements UIHandler {
    private static final Logger log = LogManager.getLogger(TemperatureEditorHandler.class);

    @Override
    public void beforeInit(TemperatureEditor ui) {
        super.beforeInit(ui);
        TemperatureEditorModel model = new TemperatureEditorModel();
        model.setFormat(TemperatureFormat.C);
        ui.setContextValue(model);
    }

    @Override
    protected String getProperty(TemperatureEditor ui) {
        TemperatureEditorModel model = ui.getModel();
        if (model == null) {
            return null;
        }
        TemperatureEditorConfig config = model.getConfig();
        if (config == null) {
            return null;
        }
        return config.getProperty();
    }

    public void init(TemperatureEditor ui, JLabel label) {
        Objects.requireNonNull(label, "No label, can't init.");
        init(ui);

        TemperatureEditorModel model = ui.getModel();
        model.addPropertyChangeListener(TemperatureEditorModel.PROPERTY_FORMAT, evt -> label.setText(model.getLabel()));
        label.setText(model.getLabel());
    }

    @Override
    protected void prepareInit(String property) {
        log.debug(String.format("%s - init TemperatureEditor", ui.getName()));
        TemperatureEditorModel model = ui.getModel();
        TemperatureEditorConfig config = model.getConfig();
        Objects.requireNonNull(config, "No config in editor, can't init.");

        if (property == null || property.isEmpty()) {
            config.setProperty(ui.getName());
        }
        ui.getEditor().init();
        ui.getEditor().getModel().addPropertyChangeListener(NumberEditorModel.PROPERTY_NUMBER_VALUE, evt -> model.setTemperature((Float) evt.getNewValue()));
    }

    @Override
    protected void prepareBindFromBean(String property, JavaBean bean) {
        TemperatureEditorModel model = ui.getModel();
        bean.addPropertyChangeListener(property, e -> {
            Float oldValue = model.getTemperature();
            Float newValue = (Float) e.getNewValue();
            if (!Objects.equals(oldValue, newValue)) {
                log.debug(String.format("%s - [%s] get new value from bean: %s", ui.getName(), property, newValue));
                ui.setStorageTemperature(newValue);
            }
        });

    }

    @Override
    protected void prepareBindToBean(String property, JavaBean bean) {
        TemperatureEditorModel model = ui.getModel();
        model.addPropertyChangeListener(TemperatureEditorModel.PROPERTY_STORAGE_TEMPERATURE, evt -> {
            Object newValue = evt.getNewValue();
            if (!Objects.equals(newValue, bean.get(property))) {
                log.debug(String.format("%s - [%s] set new value to bean: %s", ui.getName(), property, newValue));
                bean.set(property, newValue);
            }
        });
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy