change hs to qhs
[apps/mediaplayer.git] / app / main.cpp
index 24a78aa..083b316 100644 (file)
@@ -26,9 +26,8 @@
 #include <QtQml/qqml.h>
 #include <QtQuickControls2/QQuickStyle>
 #include <QQuickWindow>
-#include <libhomescreen.hpp>
+#include <qlibhomescreen.h>
 #include <qlibwindowmanager.h>
-#include <bluetooth.h>
 #include <mediaplayer.h>
 
 #include <unistd.h>
@@ -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<QQuickWindow *>(root);
-        QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateWindow()
-        ));
+        // QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateWindow()));
+        qhs->setQuickWindow(window);
     }
     return app.exec();
 }