summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-06-11 19:51:05 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2019-06-11 19:51:05 +0900
commit655ff6ee28103ec2373953dc60b75b2db0de0014 (patch)
tree46f73cbeaaa6219b63b6442b2647963aa3f21824
parent5868a412fa7ff013361231ee017db7bc2afb2742 (diff)
-rw-r--r--app/app.pri8
-rw-r--r--app/config.tests/libhomescreen/libhomescreen.cpp8
-rw-r--r--app/config.tests/libhomescreen/libhomescreen.pro5
-rw-r--r--app/config.tests/qlibhomescreen/qlibhomescreen.cpp8
-rw-r--r--app/config.tests/qlibhomescreen/qlibhomescreen.pro6
-rw-r--r--app/main.cpp15
6 files changed, 26 insertions, 24 deletions
diff --git a/app/app.pri b/app/app.pri
index 590c154..88eca22 100644
--- a/app/app.pri
+++ b/app/app.pri
@@ -2,13 +2,13 @@ TEMPLATE = app
load(configure)
-qtCompileTest(libhomescreen)
+qtCompileTest(qlibhomescreen)
qtCompileTest(qlibwindowmanager)
-config_libhomescreen {
+config_qlibhomescreen {
CONFIG += link_pkgconfig
- PKGCONFIG += libhomescreen
- DEFINES += HAVE_LIBHOMESCREEN
+ PKGCONFIG += qlibhomescreen
+ DEFINES += HAVE_QLIBHOMESCREEN
}
config_qlibwindowmanager {
diff --git a/app/config.tests/libhomescreen/libhomescreen.cpp b/app/config.tests/libhomescreen/libhomescreen.cpp
deleted file mode 100644
index d698b05..0000000
--- a/app/config.tests/libhomescreen/libhomescreen.cpp
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <libhomescreen.hpp>
-
-int main(int argc,char **argv)
-{
- LibHomeScreen libHomeScreen;
- return 0;
-}
-
diff --git a/app/config.tests/libhomescreen/libhomescreen.pro b/app/config.tests/libhomescreen/libhomescreen.pro
deleted file mode 100644
index 7d43112..0000000
--- a/app/config.tests/libhomescreen/libhomescreen.pro
+++ /dev/null
@@ -1,5 +0,0 @@
-SOURCES = libhomescreen.cpp
-
-CONFIG -= qt
-CONFIG += link_pkgconfig
-PKGCONFIG += libhomescreen
diff --git a/app/config.tests/qlibhomescreen/qlibhomescreen.cpp b/app/config.tests/qlibhomescreen/qlibhomescreen.cpp
new file mode 100644
index 0000000..8e49ff7
--- /dev/null
+++ b/app/config.tests/qlibhomescreen/qlibhomescreen.cpp
@@ -0,0 +1,8 @@
+#include <qlibhomescreen.h>
+
+int main(int argc,char **argv)
+{
+ QLibHomeScreen qlibHomeScreen;
+ return 0;
+}
+
diff --git a/app/config.tests/qlibhomescreen/qlibhomescreen.pro b/app/config.tests/qlibhomescreen/qlibhomescreen.pro
new file mode 100644
index 0000000..a5e6fde
--- /dev/null
+++ b/app/config.tests/qlibhomescreen/qlibhomescreen.pro
@@ -0,0 +1,6 @@
+SOURCES = qlibhomescreen.cpp
+
+CONFIG += qt
+QT += quick
+CONFIG += link_pkgconfig
+PKGCONFIG += qlibhomescreen
diff --git a/app/main.cpp b/app/main.cpp
index 162af79..f44dd72 100644
--- a/app/main.cpp
+++ b/app/main.cpp
@@ -24,8 +24,8 @@
#include "translator.h"
-#ifdef HAVE_LIBHOMESCREEN
-#include <libhomescreen.hpp>
+#ifdef HAVE_QLIBHOMESCREEN
+#include <qlibhomescreen.h>
#endif
#ifdef HAVE_QLIBWINDOWMANAGER
#include <qlibwindowmanager.h>
@@ -88,14 +88,14 @@ int main(int argc, char *argv[])
});
#endif
-#ifdef HAVE_LIBHOMESCREEN
- LibHomeScreen* hs = new LibHomeScreen();
+#ifdef HAVE_QLIBHOMESCREEN
+ QLibHomeScreen* qhs = new QLibHomeScreen();
// HomeScreen
std::string token = secret.toStdString();
- hs->init(port, token.c_str());
+ qhs->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, myname](json_object *object){
+ qhs->set_event_handler(QLibHomeScreen::Event_ShowWindow, [qwm, myname](json_object *object){
qwm->activateSurface(myname);
});
#endif
@@ -104,7 +104,8 @@ int main(int argc, char *argv[])
QObject *root = engine.rootObjects().first();
QQuickWindow *window = qobject_cast<QQuickWindow *>(root);
#ifdef HAVE_QLIBWINDOWMANAGER
- QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateSurface()));
+ // QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateSurface()));
+ qhs->setQuickWindow(window);
#else
window->resize(1920, 720);
window->setVisible(true);