forked from Sepanta/console-emulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
917 B
24 lines
917 B
#include <QtGui/QGuiApplication>
|
|
#include <QtQml/QQmlApplicationEngine>
|
|
#include <QuickPresenter>
|
|
#include <mvvmCore/ConsoleEmulatorApp.h>
|
|
#include <viewModel/MainViewModel.h>
|
|
|
|
QTMVVM_REGISTER_CORE_APP(ConsoleEmulatorApp)
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
// If you want to support file dialogs on platforms other then android, use a QApplication instead (and add QT += widgets to the pro file)
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QtMvvm::QuickPresenter::getInputViewFactory(); //Workaround for QTBUG-69963
|
|
qmlRegisterUncreatableType<MainViewModel>("com.example.consoleemulator", 1, 0, "MainViewModel", "ViewModels cannot be created!");
|
|
|
|
QQmlApplicationEngine engine;
|
|
engine.load(QUrl(QStringLiteral("qrc:/App.qml")));
|
|
if (engine.rootObjects().isEmpty())
|
|
return -1;
|
|
|
|
return app.exec();
|
|
}
|
|
|