15.1.484. tablet_qt/questionnairelib/qumass.h

/*
    Copyright (C) 2012, University of Cambridge, Department of Psychiatry.
    Created by Rudolf Cardinal (rnc1001@cam.ac.uk).

    This file is part of CamCOPS.

    CamCOPS 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.

    CamCOPS 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 CamCOPS. If not, see <https://www.gnu.org/licenses/>.
*/

#pragma once
#include "common/aliases_camcops.h"
#include "questionnairelib/qumeasurement.h"
#include "questionnairelib/quunitselector.h"

class QuMass : public QuMeasurement
{
    // Mass in kilograms question type with imperial conversion
    Q_OBJECT
public:
    QuMass(FieldRefPtr fieldref, QPointer<QuUnitSelector> unit_selector,
           bool mandatory = true);
    void setUpFields();

    QVariant getKg() const;
    QVariant getSt() const;
    QVariant getLb() const;
    QVariant getOz() const;

public slots:
    bool setKg(const QVariant& value);
    bool setSt(const QVariant& value);
    bool setLb(const QVariant& value);
    bool setOz(const QVariant& value);

protected:
    virtual FieldRefPtrList getMetricFieldrefs() const ;
    virtual FieldRefPtrList getImperialFieldrefs() const;

    QVariant m_st;
    QVariant m_lb;
    QVariant m_oz;

    FieldRefPtr m_fr_kg;
    FieldRefPtr m_fr_st;
    FieldRefPtr m_fr_lb;
    FieldRefPtr m_fr_oz;

    QPointer<QuElement> buildMetricGrid();
    QPointer<QuElement> buildImperialGrid();

    void updateMetric();
    void updateImperial();
};