diff options
author | Arnaud Ferraris <arnaud.ferraris@collabora.com> | 2021-12-10 12:44:27 +0100 |
---|---|---|
committer | Arnaud Ferraris <arnaud.ferraris@collabora.com> | 2021-12-20 21:08:46 +0100 |
commit | 9495545c38d5e72014cba05f8ea79c98ed3321a1 (patch) | |
tree | 51a4fcd709e772c4ed824ed9757c17d3463ef4f2 /launcher/src/homescreenhandler.h | |
parent | 20cd96660d4bfb44e0be5695f71a92d5fb53a143 (diff) |
launcher: rely on applaunchd for application startupmarlin_12.91.0marlin/12.91.012.91.0
In the new App FW setup, `launcher` should only instruct `applaunchd` to
execute an application. In order to do so, it must first build a list of
available applications by looking for and parsing `.desktop` files in
relevant folders.
Then, when an application must be started, it has to call the
corresponding `applaunchd` method through D-Bus, which will then handle
the application startup using either command line execution or D-Bus
activation.
Bug-AGL: SPEC-4159 SPEC-4160
Signed-off-by: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Change-Id: Ie2f55a5acb64ed90aa6aafb687c927d87f6cc0aa
Diffstat (limited to 'launcher/src/homescreenhandler.h')
-rw-r--r-- | launcher/src/homescreenhandler.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/launcher/src/homescreenhandler.h b/launcher/src/homescreenhandler.h index c5d46b4..616f816 100644 --- a/launcher/src/homescreenhandler.h +++ b/launcher/src/homescreenhandler.h @@ -25,6 +25,8 @@ #include <json.h> +#include "applaunch_interface.h" + using namespace std; class HomescreenHandler : public QObject @@ -34,7 +36,7 @@ public: explicit HomescreenHandler(QObject *parent = 0); ~HomescreenHandler(); - Q_INVOKABLE void tapShortcut(QString application_id, QString output_name); + Q_INVOKABLE void tapShortcut(QString application_id); Q_INVOKABLE void getRunnables(void); void onRep(struct json_object* reply_contents); @@ -42,6 +44,9 @@ public: signals: void initAppList(QString data); void appListUpdate(QStringList info); + +private: + org::automotivelinux::AppLaunch *applaunch_iface; }; #endif // HOMESCREENHANDLER_H |