mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-02 15:15:50 +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:
17
samples/blackgui/flightplanwidget.cpp
Normal file
17
samples/blackgui/flightplanwidget.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "flightplanwidget.h"
|
||||
#include "ui_flightplanwidget.h"
|
||||
|
||||
namespace BlackGui
|
||||
{
|
||||
CFlightplanWidget::CFlightplanWidget(QWidget *parent) :
|
||||
QFrame(parent),
|
||||
ui(new Ui::CFlightplanWidget)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
}
|
||||
|
||||
CFlightplanWidget::~CFlightplanWidget()
|
||||
{
|
||||
delete ui;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user