/*! * * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file VDGOperationModeData.h * \author (last) Behrouz NematiPour * \date (last) 10-Aug-2021 * \author (original) Behrouz NemaiPour * \date (original) 02-Jul-2020 * */ #pragma once // Qt #include // Project #include "main.h" // Doxygen : do not remove #include "VView.h" #include "MDGOperationModeData.h" #include "GuiGlobals.h" // namespace using namespace Gui; namespace View { /*! * \brief The VDGOperationMode class * \details View for Model's Data representation. * * \sa Model::MDGOperationMode * */ class VDGOperationMode : public QObject { Q_OBJECT PROPERTY( quint32 , opMode , 0 ) PROPERTY( quint32 , subMode , 0 ) Q_PROPERTY(QString text READ text NOTIFY opModeChanged) VIEW_DEC(VDGOperationMode, DGOperationModeData) public slots: QString text(); }; }