/* Copyright (C) 2015 * swift project Community / Contributors * * This file is part of swift Project. It is subject to the license terms in the LICENSE file found in the top-level * directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project, * including this file, may be copied, modified, propagated, or distributed except according to the terms * contained in the LICENSE file. */ //! \file #ifndef BLACKGUI_EDITORS_DISTRIBUTORFORM_H #define BLACKGUI_EDITORS_DISTRIBUTORFORM_H #include "blackgui/blackguiexport.h" #include "blackgui/editors/form.h" #include "blackmisc/simulation/distributor.h" #include "blackmisc/statusmessagelist.h" #include "blackmisc/variant.h" #include #include namespace Ui { class CDistributorForm; } namespace BlackGui { namespace Editors { /*! * Distributor form */ class BLACKGUI_EXPORT CDistributorForm : public CForm { Q_OBJECT public: //! Constructor explicit CDistributorForm(QWidget *parent = nullptr); //! Destructor virtual ~CDistributorForm() override; //! Get value BlackMisc::Simulation::CDistributor getValue() const; //! Allow to drop void allowDrop(bool allowDrop); //! Is drop allowed? bool isDropAllowed() const; //! \name Form class implementations //! @{ virtual void setReadOnly(bool readonly) override; virtual void setSelectOnly() override; virtual BlackMisc::CStatusMessageList validate(bool nested = false) const override; //! @} //! Clear void clear(); //! Set value bool setValue(const BlackMisc::Simulation::CDistributor &distributor = BlackMisc::Simulation::CDistributor()); protected: //! \copydoc CForm::jsonPasted virtual void jsonPasted(const QString &json) override; private: //! Variant has been dropped void onDroppedCode(const BlackMisc::CVariant &variantDropped); //! Any UI values in the details fields bool hasAnyUiDetailsValues() const; QScopedPointer ui; BlackMisc::Simulation::CDistributor m_currentDistributor; }; } // ns } //ns #endif // guard