aboutsummaryrefslogtreecommitdiffstats
path: root/launcher/src/homescreenhandler.h
diff options
context:
space:
mode:
authorMarius Vlad <marius.vlad@collabora.com>2020-04-29 01:21:44 +0300
committerMarius Vlad <marius.vlad@collabora.com>2020-05-15 19:55:29 +0300
commit83496d2f6968f7d12a183581d320065bdba52132 (patch)
tree7bdff11d0498216ffb5567fbb54b34200acc7196 /launcher/src/homescreenhandler.h
parent64827f59682374ffc9174b38677f94e1535579d4 (diff)
agl-compositor: New adaptation to using the agl-shell-desktop proto
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Diffstat (limited to 'launcher/src/homescreenhandler.h')
-rw-r--r--launcher/src/homescreenhandler.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/launcher/src/homescreenhandler.h b/launcher/src/homescreenhandler.h
index 09b6848..ac490ce 100644
--- a/launcher/src/homescreenhandler.h
+++ b/launcher/src/homescreenhandler.h
@@ -21,7 +21,8 @@
#include <QObject>
#include <libhomescreen.hpp>
#include <string>
-#include <qlibwindowmanager.h>
+
+#include "shell-desktop.h"
using namespace std;
@@ -32,7 +33,7 @@ public:
explicit HomescreenHandler(QObject *parent = 0);
~HomescreenHandler();
- void init(int port, const char* token, QLibWindowmanager *qwm, QString myname);
+ void init(int port, const char* token, QString myname);
Q_INVOKABLE void tapShortcut(QString application_id);
Q_INVOKABLE void getRunnables(void);
@@ -48,7 +49,7 @@ signals:
private:
LibHomeScreen *mp_hs;
- QLibWindowmanager *mp_qwm;
+ Shell *aglShell;
QString m_myname;
};