X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fqlibhomescreen.cpp;h=13093c32f1bd1d3c5f8229cff2ef9155b7488872;hb=313cd53946a456163108c4f6f1582e442ebc4022;hp=b2f675171b1a5f6b3ff608318c8af8c8afad447a;hpb=4d78f90d7fa97f5c4981053bb8b412bbcd6b54fe;p=src%2Flibqthomescreen.git diff --git a/src/qlibhomescreen.cpp b/src/qlibhomescreen.cpp index b2f6751..13093c3 100644 --- a/src/qlibhomescreen.cpp +++ b/src/qlibhomescreen.cpp @@ -164,3 +164,19 @@ void QLibHomeScreen::set_event_handler(enum QEventType et, handler_fun f) LibHomeScreen::EventType hs_et = (LibHomeScreen::EventType)et; return this->mp_hs->set_event_handler(hs_et, std::move(f)); } + +/** + * tapShortcut function + * + * #### Parameters + * - application_name : tapped application name + * + * #### Return + * - None. + * + */ +void QLibHomeScreen::tapShortcut(QString application_name) +{ + HMI_DEBUG("qlibhomescreen","tapShortcut %s", application_name.toStdString().c_str()); + this->mp_hs->tapShortcut(application_name.toStdString().c_str()); +} \ No newline at end of file