#pragma once #include // Project #include "main.h" // Doxygen : do not remove #include "VAdjustmentResponseBase.h" #include "MTreatmentAdjustHDFStateResponse.h" namespace View { /*! * \brief The VTreatmentAdjustmentHDFState class * \details View for Model's Data representation. * * \sa Model::MAdjustHDFStateResponse * */ class VTreatmentAdjustmentHDFState : public VAdjustmentResponseBase { Q_OBJECT // friends friend class ::tst_views; // 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) VIEW_DEC_CLASS_ADJUSTMENT(VTreatmentAdjustmentHDFState, AdjustHDFStateResponseData) public slots: void doPause (); void doResume (); signals: void didAdjustment(const AdjustHDFStateRequestData &vData); }; }