mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 17:55:34 +08:00
84 lines
2.5 KiB
C++
84 lines
2.5 KiB
C++
/* Copyright (C) 2018
|
|
* 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_COMPONENTS_AIRPORTSMALLCOMPLETER_H
|
|
#define BLACKGUI_COMPONENTS_AIRPORTSMALLCOMPLETER_H
|
|
|
|
#include "blackmisc/aviation/airport.h"
|
|
#include <QFrame>
|
|
#include <QScopedPointer>
|
|
|
|
namespace Ui { class CAirportSmallCompleter; }
|
|
namespace BlackGui
|
|
{
|
|
namespace Components
|
|
{
|
|
class CAirportDialog;
|
|
|
|
//! Smaller version of CAirportCompleter, using a CAirportDialog
|
|
class CAirportSmallCompleter : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
//! Constructor
|
|
explicit CAirportSmallCompleter(QWidget *parent = nullptr);
|
|
|
|
//! Destructor
|
|
virtual ~CAirportSmallCompleter();
|
|
|
|
//! Set airport
|
|
void setAirport(const BlackMisc::Aviation::CAirport &airport);
|
|
|
|
//! Set airport
|
|
void setAirportIcaoCode(const BlackMisc::Aviation::CAirportIcaoCode &airportCode);
|
|
|
|
//! Get airport
|
|
const BlackMisc::Aviation::CAirport &getAirport() const { return m_current; }
|
|
|
|
//! Get airport ICAO code
|
|
BlackMisc::Aviation::CAirportIcaoCode getAirportIcaoCode() const;
|
|
|
|
//! The raw ICAO code text
|
|
QString getIcaoText() const;
|
|
|
|
//! Read only
|
|
void setReadOnly(bool readOnly);
|
|
|
|
//! Clear
|
|
void clear();
|
|
|
|
signals:
|
|
//! Airport has been changed
|
|
void changedAirport(const BlackMisc::Aviation::CAirport &airport);
|
|
|
|
//! \copydoc QLineEdit::editingFinished
|
|
void editingFinished();
|
|
|
|
private:
|
|
//! ICAO code has been changed in UI
|
|
void onIcaoChanged();
|
|
|
|
//! Airports backend data changed
|
|
void onAirportsChanged();
|
|
|
|
//! Display dialog
|
|
void showAirportsDialog();
|
|
|
|
QScopedPointer<Ui::CAirportSmallCompleter> ui;
|
|
QScopedPointer <CAirportDialog> m_airportsDialog; //!< UI completer
|
|
BlackMisc::Aviation::CAirport m_current; //!< this airport
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
#endif // guard
|