From 9f9abc58011121722a82759124d061a645cee112 Mon Sep 17 00:00:00 2001 From: Tadao Tanikawa Date: Mon, 11 Dec 2017 20:39:21 +0900 Subject: Revert "Add APIs which can get information of display and area" This reverts commit 6aaba1066fe89f324d4bae67497f4035fe997d5f. To fix double posts to Gerrit Review and repository directly. Signed-off-by: Tadao Tanikawa --- src/main.cpp | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) mode change 100644 => 100755 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp old mode 100644 new mode 100755 index 395fa62..c615d3a --- a/src/main.cpp +++ b/src/main.cpp @@ -170,21 +170,12 @@ void binding_api::send_event(char const *evname, char const *label) { } } -void binding_api::send_event(char const *evname, char const *label, char const *area, - int x, int y, int w, int h) { - HMI_DEBUG("wm", "%s: %s(%s, %s) x:%d y:%d w:%d h:%d", - __func__, evname, label, area, x, y, w, h); - - json_object *j_rect = json_object_new_object(); - json_object_object_add(j_rect, kKeyX, json_object_new_int(x)); - json_object_object_add(j_rect, kKeyY, json_object_new_int(y)); - json_object_object_add(j_rect, kKeyWidth, json_object_new_int(w)); - json_object_object_add(j_rect, kKeyHeight, json_object_new_int(h)); +void binding_api::send_event(char const *evname, char const *label, char const *area) { + HMI_DEBUG("wm", "%s: %s(%s, %s)", __func__, evname, label, area); json_object *j = json_object_new_object(); json_object_object_add(j, kKeyDrawingName, json_object_new_string(label)); json_object_object_add(j, kKeyDrawingArea, json_object_new_string(area)); - json_object_object_add(j, kKeyDrawingRect, j_rect); int ret = afb_event_push(g_afb_instance->app.map_afb_event[evname], j); if (ret != 0) { -- cgit 1.2.3-korg