X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=homescreen%2Fsrc%2Fhomescreenhandler.h;h=d617737f12907993822197f7e384ca13d842ccec;hb=33c89065c315edd838873116bec8723326f43488;hp=5dfe041993318d6b2e33ae6046857315ba2a6ed7;hpb=29287cb4b61917983eac27fe5c8bc9ccac31eaa5;p=apps%2Fhomescreen.git diff --git a/homescreen/src/homescreenhandler.h b/homescreen/src/homescreenhandler.h index 5dfe041..d617737 100644 --- a/homescreen/src/homescreenhandler.h +++ b/homescreen/src/homescreenhandler.h @@ -18,7 +18,9 @@ #define HOMESCREENHANDLER_H #include -#include +#include +#include +#include #include using namespace std; @@ -30,7 +32,7 @@ public: explicit HomescreenHandler(QObject *parent = 0); ~HomescreenHandler(); - void init(int port, const char* token); + void init(int port, const char* token, QLibWindowmanager *qwm, QString myname); Q_INVOKABLE void tapShortcut(QString application_id); @@ -40,12 +42,15 @@ public: static void* myThis; static void onRep_static(struct json_object* reply_contents); static void onEv_static(const string& event, struct json_object* event_contents); + void setQuickWindow(QQuickWindow *qw); signals: void showNotification(QString application_id, QString icon_path, QString text); void showInformation(QString info); private: - LibHomeScreen *mp_hs; + QLibHomeScreen *mp_qhs; + QLibWindowmanager *mp_qwm; + QString m_myname; }; #endif // HOMESCREENHANDLER_H