X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=app%2Fmain.cpp;h=083b31633e87ffd7a7b17084581bd50e230a7668;hb=185895a39731abd100ffe25823c8889eff077bf3;hp=24a78aa967d7a98c71972052951e0867d4c72dc3;hpb=91458dc8aac1edfc8caed6e6970afa934fb3082e;p=apps%2Fmediaplayer.git diff --git a/app/main.cpp b/app/main.cpp index 24a78aa..083b316 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -26,9 +26,8 @@ #include #include #include -#include +#include #include -#include #include #include @@ -65,7 +64,7 @@ int main(int argc, char *argv[]) bindingAddress.setQuery(query); context->setContextProperty(QStringLiteral("bindingAddress"), bindingAddress); std::string token = secret.toStdString(); - LibHomeScreen* hs = new LibHomeScreen(); + QLibHomeScreen* qhs = new QLibHomeScreen(); QLibWindowmanager* qwm = new QLibWindowmanager(); // WindowManager @@ -84,24 +83,21 @@ int main(int argc, char *argv[]) }); // HomeScreen - hs->init(port, token.c_str()); - // Set the event handler for Event_TapShortcut which will activate the surface for windowmanager - hs->set_event_handler(LibHomeScreen::Event_TapShortcut, [qwm, &graphic_role](json_object *object){ - qDebug("Surface %s got tapShortcut\n", graphic_role.toStdString().c_str()); + qhs->init(port, token.c_str()); + // Set the event handler for Event_ShowWindow which will activate the surface for windowmanager + qhs->set_event_handler(QLibHomeScreen::Event_ShowWindow, [qwm, &graphic_role](json_object *object){ + qDebug("Surface %s got showWindow\n", graphic_role.toStdString().c_str()); qwm->activateWindow(graphic_role); }); context->setContextProperty("mediaplayer", new Mediaplayer(bindingAddress, context)); - context->setContextProperty("bluetooth_connection", new Bluetooth(bindingAddress)); context->setContextProperty(QStringLiteral("screenInfo"), &screenInfo); - usleep(300000); - engine.load(QUrl(QStringLiteral("qrc:/MediaPlayer.qml"))); QObject *root = engine.rootObjects().first(); QQuickWindow *window = qobject_cast(root); - QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateWindow() - )); + // QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateWindow())); + qhs->setQuickWindow(window); } return app.exec(); }