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