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:
Klaus Basan
2014-04-21 17:40:01 +02:00
parent c7ae163002
commit f967ed40ba
15 changed files with 408 additions and 126 deletions

View 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;
}
}