Files
pilotclient/samples/blackgui/flightplanwidget.h
Klaus Basan f967ed40ba refs #212, flightplan GUI
* 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
2014-04-28 20:35:59 +02:00

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