mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 00:16:51 +08:00
83 lines
2.6 KiB
C++
83 lines
2.6 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_REMOTEAIRCRAFTSELECTOR_H
|
|
#define BLACKGUI_REMOTEAIRCRAFTSELECTOR_H
|
|
|
|
#include "blackgui/blackguiexport.h"
|
|
#include "blackmisc/simulation/simulatedaircraftlist.h"
|
|
#include "blackmisc/aviation/callsign.h"
|
|
#include "blackmisc/digestsignal.h"
|
|
|
|
#include <QFrame>
|
|
#include <QObject>
|
|
#include <QScopedPointer>
|
|
|
|
class QShowEvent;
|
|
class QWidget;
|
|
|
|
namespace BlackMisc { namespace Simulation { class CSimulatedAircraft; } }
|
|
namespace Ui { class CRemoteAircraftSelector; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
//! Select a remote aircraft
|
|
//! \deprecated list gets too long with many aircraft
|
|
//! \remark CCallsignCompleter as a better alternative
|
|
class BLACKGUI_EXPORT CRemoteAircraftSelector : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CRemoteAircraftSelector(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CRemoteAircraftSelector() override;
|
|
|
|
//! Selected callsign
|
|
BlackMisc::Aviation::CCallsign getSelectedCallsign() const;
|
|
|
|
//! Indicate if aircraft parts enabled aircraft
|
|
void indicatePartsEnabled(bool indicate);
|
|
|
|
signals:
|
|
//! Callsign changed
|
|
void changedCallsign();
|
|
|
|
protected:
|
|
//! \copydoc QWidget::showEvent
|
|
virtual void showEvent(QShowEvent *event) override;
|
|
|
|
private:
|
|
//! Added aircraft, change content of combobox
|
|
void onAddedAircraft(const BlackMisc::Simulation::CSimulatedAircraft &aircraft);
|
|
|
|
//! Removed aircraft, change content of combobox
|
|
void onRemovedAircraft(const BlackMisc::Aviation::CCallsign &callsign);
|
|
|
|
//! Combo box has been changed
|
|
void comboBoxChanged(const QString &text);
|
|
|
|
//! Set combobox items
|
|
void fillComboBox();
|
|
|
|
QScopedPointer<Ui::CRemoteAircraftSelector> ui;
|
|
QString m_currentText;
|
|
bool m_showPartsEnabled = false;
|
|
BlackMisc::Simulation::CSimulatedAircraftList m_aircraft;
|
|
BlackMisc::CDigestSignal m_dsFillComboBox { this, &CRemoteAircraftSelector::fillComboBox, 3000, 5 };
|
|
};
|
|
} // namespace
|
|
} // namespace
|
|
|
|
#endif // guard
|