mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 23:05:36 +08:00
* similar to http://www.vatsim.net/fp/ * own form, own widget class as a trial to further modularize GUI components * removed all view models (now encapsulated) * tweaked style sheet
27 lines
408 B
C++
27 lines
408 B
C++
#ifndef BLACKGUI_FLIGHTPLANWIDGET_H
|
|
#define BLACKGUI_FLIGHTPLANWIDGET_H
|
|
|
|
#include <QFrame>
|
|
|
|
namespace Ui
|
|
{
|
|
class CFlightplanWidget;
|
|
}
|
|
|
|
namespace BlackGui
|
|
{
|
|
class CFlightplanWidget : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CFlightplanWidget(QWidget *parent = nullptr);
|
|
~CFlightplanWidget();
|
|
|
|
private:
|
|
Ui::CFlightplanWidget *ui;
|
|
};
|
|
|
|
}
|
|
#endif // guard
|