aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2017-10-23 14:48:42 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2017-10-23 14:48:42 +0900
commitdcbd30e1ff21b6dbdf1955c3741e7ee77786e96f (patch)
treefa0ce5a73fdf319d5572b3a151505520af6c555c /include
parent47970b233fe3452d7a72e382578adc6fa9218f80 (diff)
Add OnScreenReply for application
With homescreen-service added OnScreenReply, Add OnScreenReply to libhomescreen. Let application can use this api easily. Change-Id: I8038fea7471d1ae0777dcbff19e45c38fb6f614f Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'include')
-rw-r--r--include/libhomescreen.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/libhomescreen.hpp b/include/libhomescreen.hpp
index 9034dc8..0d3815d 100644
--- a/include/libhomescreen.hpp
+++ b/include/libhomescreen.hpp
@@ -42,7 +42,8 @@ public:
enum EventType {
Event_TapShortcut = 1,
- Event_OnScreenMessage
+ Event_OnScreenMessage,
+ Event_OnScreenReply
};
static const std::vector<std::string> api_list;
@@ -53,6 +54,7 @@ public:
int tapShortcut(const char* application_name);
int onScreenMessage(const char* display_message);
+ int onScreenReply(const char* reply_message);
void set_event_handler(enum EventType et, handler_func f);