#pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VViewAutoGen.h" #include "MTDTreatmentParamRanges.h" // namespace namespace View { /*! * \brief The VTDTreatmentParamRanges class * \details The The ID_TDTreatmentParamRanges view * * \sa Model::MTDTreatmentParamRanges * */ class VTDTreatmentParamRanges : public QObject { Q_OBJECT // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI TRIGGER( bool , adjustment , 0 ) PROPERTY( quint32, minTreatmentTime, 0 ) PROPERTY( quint32, maxTreatmentTime, 0 ) PROPERTY( float , minUFVolume , 0 ) PROPERTY( float , maxUFVolume , 0 ) PROPERTY( quint32, minDialRate , 0 ) PROPERTY( quint32, maxDialRate , 0 ) VIEW_DEC(VTDTreatmentParamRanges, TDTreatmentParamRangesData) }; }