mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-03 07:35:48 +08:00
82 lines
2.2 KiB
C++
82 lines
2.2 KiB
C++
/* 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 <QObject>
|
|
#include <QScopedPointer>
|
|
|
|
class QWidget;
|
|
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
|
|
~CDistributorForm();
|
|
|
|
//! 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();
|
|
|
|
public slots:
|
|
//! Set value
|
|
bool setValue(const BlackMisc::Simulation::CDistributor &distributor = BlackMisc::Simulation::CDistributor());
|
|
|
|
private slots:
|
|
//! Variant has been dropped
|
|
void ps_droppedCode(const BlackMisc::CVariant &variantDropped);
|
|
|
|
private:
|
|
QScopedPointer<Ui::CDistributorForm> ui;
|
|
bool m_readOnly = false;
|
|
};
|
|
|
|
} // ns
|
|
} //ns
|
|
|
|
#endif // guard
|