From: wang_zhiqiang Date: Tue, 6 Nov 2018 02:20:51 +0000 (+0800) Subject: use appid instead of appname in "tap_shortcut" X-Git-Tag: 6.99.1~1 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Flibqthomescreen.git;a=commitdiff_plain;h=6de11471bf8cc70c5a11f947dea5a2afc9bef716 use appid instead of appname in "tap_shortcut" Now In homescreen-service used application_id to identify different application, so use appid instead of appname in "tap_shortcut" parameter. Bug-AGL: SPEC-1764 Change-Id: Iccb40a38c7e0fa39c8727582c50e6003b90dc89d Signed-off-by: wang_zhiqiang --- diff --git a/src/qlibhomescreen.cpp b/src/qlibhomescreen.cpp index 13093c3..aded770 100644 --- a/src/qlibhomescreen.cpp +++ b/src/qlibhomescreen.cpp @@ -24,7 +24,7 @@ using namespace std; #define _REQ_POPUP_MESSAGE "on_screen_message" #define _TAPSHORTCUT "tap_shortcut" #define _KEY_DATA "data" -#define _KEY_APPLICATION_DATA "application_name" +#define _KEY_APPLICATION_DATA "application_id" #define _KEY_REPLY_MESSAGE "reply_message" #define _KEY_REQUEST_MESSAGE "display_message" @@ -169,14 +169,14 @@ void QLibHomeScreen::set_event_handler(enum QEventType et, handler_fun f) * tapShortcut function * * #### Parameters - * - application_name : tapped application name + * - application_id : tapped application id * * #### Return * - None. * */ -void QLibHomeScreen::tapShortcut(QString application_name) +void QLibHomeScreen::tapShortcut(QString application_id) { - HMI_DEBUG("qlibhomescreen","tapShortcut %s", application_name.toStdString().c_str()); - this->mp_hs->tapShortcut(application_name.toStdString().c_str()); + HMI_DEBUG("qlibhomescreen","tapShortcut %s", application_id.toStdString().c_str()); + this->mp_hs->tapShortcut(application_id.toStdString().c_str()); } \ No newline at end of file diff --git a/src/qlibhomescreen.h b/src/qlibhomescreen.h index cc0f12a..bf43963 100644 --- a/src/qlibhomescreen.h +++ b/src/qlibhomescreen.h @@ -43,7 +43,7 @@ public: Q_INVOKABLE int onScreenMessage(const QString &message); Q_INVOKABLE int subscribe(const QString &eventName); Q_INVOKABLE int unsubscribe(const QString &eventName); - Q_INVOKABLE void tapShortcut(QString application_name); + Q_INVOKABLE void tapShortcut(QString application_id); signals: