mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-01 13:36:48 +08:00
77 lines
2.1 KiB
C++
77 lines
2.1 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_MODELMAPPINGFORM_H
|
|
#define BLACKGUI_EDITORS_MODELMAPPINGFORM_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackgui/editors/form.h"
|
|
#include "blackmisc/simulation/aircraftmodel.h"
|
|
#include "blackmisc/statusmessagelist.h"
|
|
|
|
#include <QObject>
|
|
#include <QScopedPointer>
|
|
|
|
class QWidget;
|
|
|
|
namespace Ui { class CModelMappingForm; }
|
|
|
|
namespace BlackGui
|
|
{
|
|
namespace Editors
|
|
{
|
|
/*!
|
|
* Model mapping form
|
|
*/
|
|
class BLACKGUI_EXPORT CModelMappingForm : public CForm
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CModelMappingForm(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
~CModelMappingForm();
|
|
|
|
//! Value
|
|
BlackMisc::Simulation::CAircraftModel getValue() const;
|
|
|
|
//! Validate
|
|
|
|
//! \name Form class implementations
|
|
//! @{
|
|
virtual void setReadOnly(bool readonly) override;
|
|
virtual void setSelectOnly() override;
|
|
virtual BlackMisc::CStatusMessageList validate(bool withNestedObjects) const override;
|
|
//! @}
|
|
|
|
public slots:
|
|
//! Set model
|
|
void setValue(BlackMisc::Simulation::CAircraftModel &model);
|
|
|
|
signals:
|
|
//! Request stashing for model
|
|
void requestStash();
|
|
|
|
protected slots:
|
|
//! \copydoc CForm::ps_userChanged
|
|
virtual void ps_userChanged() override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CModelMappingForm> ui;
|
|
BlackMisc::Simulation::CAircraftModel m_originalModel;
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
#endif // guard
|