Add workaround for top panel button highlighting
[apps/homescreen.git] / homescreen / src / homescreenhandler.h
index 3d939ce..790c4fd 100644 (file)
@@ -20,6 +20,7 @@
 #include <QObject>
 
 #include <libhomescreen.hpp>
+#include "applicationlauncher.h"
 
 #include "shell.h"
 #include <string>
@@ -30,7 +31,7 @@ class HomescreenHandler : public QObject
 {
     Q_OBJECT
 public:
-    explicit HomescreenHandler(Shell *aglShell, QObject *parent = 0);
+    explicit HomescreenHandler(Shell *aglShell, ApplicationLauncher *launcher = 0, QObject *parent = 0);
     ~HomescreenHandler();
 
     void init(int port, const char* token);
@@ -49,6 +50,7 @@ signals:
     void showInformation(QString info);
 private:
     LibHomeScreen *mp_hs;
+    ApplicationLauncher *mp_launcher;
     Shell *aglShell;
 };