2017-01-09 16:55:03 +00:00
|
|
|
//
|
|
|
|
// Copyright (C) 2017 James Turner zakalawe@mac.com
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
2016-12-03 14:14:06 +00:00
|
|
|
#include <QApplication>
|
2017-01-09 16:55:03 +00:00
|
|
|
#include <QQmlEngine>
|
2017-11-02 17:20:42 +00:00
|
|
|
#include <QQuickView>
|
|
|
|
#include <QQmlContext>
|
2018-12-27 16:11:45 +00:00
|
|
|
#include <QCommandLineParser>
|
2019-07-25 15:03:38 +00:00
|
|
|
#include <QScreen>
|
2016-12-20 10:31:38 +00:00
|
|
|
|
2017-01-09 16:55:03 +00:00
|
|
|
#include "canvasitem.h"
|
2017-11-02 17:20:42 +00:00
|
|
|
#include "applicationcontroller.h"
|
|
|
|
#include "canvasdisplay.h"
|
|
|
|
#include "canvasconnection.h"
|
2018-06-24 10:34:28 +00:00
|
|
|
#include "canvaspainteddisplay.h"
|
2019-08-31 22:40:21 +00:00
|
|
|
#include "WindowData.h"
|
2016-12-03 14:14:06 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
|
|
|
a.setApplicationName("FGCanvas");
|
|
|
|
a.setOrganizationDomain("flightgear.org");
|
|
|
|
a.setOrganizationName("FlightGear");
|
|
|
|
|
2018-12-27 16:11:45 +00:00
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.addPositionalArgument("config", QCoreApplication::translate("main", "JSON configuration to load"));
|
|
|
|
parser.process(a);
|
|
|
|
|
2017-11-02 17:20:42 +00:00
|
|
|
ApplicationController appController;
|
2016-12-21 10:25:58 +00:00
|
|
|
|
2017-01-09 16:55:03 +00:00
|
|
|
qmlRegisterType<CanvasItem>("FlightGear", 1, 0, "CanvasItem");
|
2017-11-02 17:20:42 +00:00
|
|
|
qmlRegisterType<CanvasDisplay>("FlightGear", 1, 0, "CanvasDisplay");
|
2018-06-24 10:34:28 +00:00
|
|
|
qmlRegisterType<CanvasPaintedDisplay>("FlightGear", 1, 0, "PaintedCanvasDisplay");
|
|
|
|
|
2019-08-31 22:40:21 +00:00
|
|
|
qmlRegisterUncreatableType<WindowData>("FlightGear", 1, 0, "WindowData", "Don't create me");
|
2017-11-02 17:20:42 +00:00
|
|
|
qmlRegisterUncreatableType<CanvasConnection>("FlightGear", 1, 0, "CanvasConnection", "Don't create me");
|
|
|
|
qmlRegisterUncreatableType<ApplicationController>("FlightGear", 1, 0, "Application", "Can't create");
|
|
|
|
|
2018-12-27 16:11:45 +00:00
|
|
|
const QStringList args = parser.positionalArguments();
|
|
|
|
|
|
|
|
if (!args.empty()) {
|
2018-06-26 22:23:49 +00:00
|
|
|
appController.setDaemonMode();
|
2018-12-27 16:11:45 +00:00
|
|
|
appController.loadFromFile(args.front());
|
2018-06-24 13:11:38 +00:00
|
|
|
}
|
|
|
|
|
2019-08-31 22:40:21 +00:00
|
|
|
appController.createWindows();
|
2018-06-26 22:23:49 +00:00
|
|
|
|
2016-12-21 10:25:58 +00:00
|
|
|
int result = a.exec();
|
|
|
|
return result;
|
2016-12-03 14:14:06 +00:00
|
|
|
}
|