mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
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
This commit is contained in:
26
samples/blackgui/flightplanwidget.h
Normal file
26
samples/blackgui/flightplanwidget.h
Normal file
@@ -0,0 +1,26 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user