mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 01:05:35 +08:00
91 lines
2.5 KiB
C++
91 lines
2.5 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. 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_AIRCRAFTICAOFORM_H
|
|
#define BLACKGUI_EDITORS_AIRCRAFTICAOFORM_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackgui/editors/form.h"
|
|
#include "blackmisc/aviation/aircrafticaocode.h"
|
|
#include "blackmisc/statusmessagelist.h"
|
|
#include "blackmisc/variant.h"
|
|
|
|
#include <QObject>
|
|
#include <QScopedPointer>
|
|
|
|
class QWidget;
|
|
|
|
namespace Ui { class CAircraftIcaoForm; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Editors
|
|
{
|
|
/*!
|
|
* Aircraft ICAO form
|
|
*/
|
|
class BLACKGUI_EXPORT CAircraftIcaoForm : public CForm
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CAircraftIcaoForm(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CAircraftIcaoForm() override;
|
|
|
|
//! Get value
|
|
BlackMisc::Aviation::CAircraftIcaoCode 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();
|
|
|
|
//! Reset value to current value
|
|
void resetValue();
|
|
|
|
public slots:
|
|
//! Set value
|
|
bool setValue(const BlackMisc::Aviation::CAircraftIcaoCode &icao);
|
|
|
|
protected:
|
|
//! \copydoc CForm::jsonPasted
|
|
virtual void jsonPasted(const QString &json) override;
|
|
|
|
private:
|
|
QScopedPointer<Ui::CAircraftIcaoForm> ui;
|
|
BlackMisc::Aviation::CAircraftIcaoCode m_originalCode;
|
|
|
|
//! Variant has been dropped
|
|
void droppedCode(const BlackMisc::CVariant &variantDropped);
|
|
|
|
//! Id has been entered
|
|
void idEntered();
|
|
|
|
//! Key from GUI
|
|
int getDbKeyFromGui() const;
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
#endif // guard
|