123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778 |
- /*
- * Copyright (c) 2019 Actions Semiconductor Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file ui manager interface
- */
- #define SYS_LOG_NO_NEWLINE
- #ifdef SYS_LOG_DOMAIN
- #undef SYS_LOG_DOMAIN
- #endif
- #define SYS_LOG_DOMAIN "ui_manager"
- #include <os_common_api.h>
- #include <msg_manager.h>
- #include <mem_manager.h>
- #include <srv_manager.h>
- #include <ui_mem.h>
- #include <string.h>
- #ifdef CONFIG_UI_MANAGER
- #include <ui_manager.h>
- #endif
- #ifdef CONFIG_UI_SERVICE
- #include <ui_service.h>
- #endif
- #ifdef CONFIG_SEG_LED_MANAGER
- #include <seg_led_manager.h>
- #endif
- #ifdef CONFIG_ESD_MANAGER
- #include <esd_manager.h>
- #endif
- #ifdef CONFIG_LED_MANAGER
- #include <led_manager.h>
- #endif
- #ifdef CONFIG_PLAYTTS
- #include <tts_manager.h>
- #endif
- typedef struct {
- sys_slist_t view_list;
- } ui_manager_context_t;
- static ui_manager_context_t global_ui_manager;
- static ui_manager_context_t *_ui_manager_get_context(void)
- {
- return &global_ui_manager;
- }
- #ifndef CONFIG_UI_SERVICE
- static void _ui_manager_add_view(ui_view_context_t *view)
- {
- ui_view_context_t *cur_view;
- ui_view_context_t *pre_view = NULL;
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, cur_view, node) {
- if (view->info.order > cur_view->info.order) {
- sys_slist_insert(&ui_manager->view_list, &pre_view->node, &view->node);
- goto end;
- }
- pre_view = cur_view;
- }
- sys_slist_append(&ui_manager->view_list, (sys_snode_t *)view);
- end:
- return;
- }
- static ui_view_context_t *_ui_manager_get_view_context(uint16_t view_id)
- {
- ui_view_context_t *view;
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
- if (view->view_id == view_id)
- return view;
- }
- return NULL;
- }
- static int _ui_manager_get_view_index(uint16_t view_id)
- {
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- ui_view_context_t *view;
- int index = 0;
- SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
- if (view->view_id == view_id) {
- break;
- }
- index += 1;
- }
- return index;
- }
- int ui_message_dispatch(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
- {
- ui_view_context_t *view = _ui_manager_get_view_context(view_id);
- if (!view) {
- return -ESRCH;
- }
- return view->info.view_proc(view->view_id, msg_id, (void *)msg_data);
- }
- static bool _ui_manager_key_event_match(uint32_t current_state, uint32_t match_state)
- {
- return ((current_state & match_state) != 0);
- }
- int ui_manager_dispatch_key_event(uint32_t key_event)
- {
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- ui_view_context_t *view = NULL;
- uint8_t index = 0;
- int result = 0;
- uint32_t current_state = 0xffffffff;
- uint32_t key_type = key_event & 0xffff0000;
- uint16_t key_val = key_event & 0xffff;
- struct app_msg new_msg = { 0 };
- SYS_SLIST_FOR_EACH_CONTAINER(&ui_manager->view_list, view, node) {
- const ui_key_map_t *view_key_map = view->info.view_key_map;
- index = 0;
- current_state = 0xffffffff;
- if (view->info.view_get_state)
- current_state = view->info.view_get_state();
- while (view_key_map[index].key_val != KEY_RESERVED) {
- /* support customed sequence key for earphone, key_type could be (MULTI_CLICK + LONG_PRESS) */
- if (key_val == view_key_map[index].key_val &&
- key_type == view_key_map[index].key_type)
- {
- ui_state_match_t state_match = view->info.view_state_match;
- if (!state_match) {
- state_match = _ui_manager_key_event_match;
- }
- if (view_key_map[index].app_state == TRANSMIT_ALL_KEY_EVENT) {
- new_msg.type = MSG_INPUT_EVENT;
- new_msg.value = key_event;
- result = send_async_msg(view->app_id, &new_msg);
- return result;
- }
- if (state_match(current_state, view_key_map[index].app_state)) {
- new_msg.type = MSG_INPUT_EVENT;
- new_msg.cmd = view_key_map[index].app_msg;
- result = send_async_msg(view->app_id, &new_msg);
- return result;
- }
- }
- index++;
- }
- }
- return result;
- }
- #else
- int ui_manager_dispatch_key_event(uint32_t key_event)
- {
- struct app_msg msg = {
- .type = MSG_KEY_INPUT,
- .value = key_event,
- };
- return !send_async_msg(UI_SERVICE_NAME, &msg);
- }
- static int _ui_service_send_async_ext(uint16_t view_id, uint8_t msg_id,
- uint32_t msg_data, uint32_t msg_data2, MSG_CALLBAK msg_cb)
- {
- struct app_msg msg = {
- .type = MSG_UI_EVENT,
- .sender = view_id,
- .cmd = msg_id,
- .reserve = msg_data2 & 0xff,
- .__pad[0] = (msg_data2 >> 8) & 0xff,
- .__pad[1] = (msg_data2 >> 16) & 0xff,
- .__pad[2] = (msg_data2 >> 24) & 0xff,
- .value = msg_data,
- .callback = msg_cb,
- };
- return !send_async_msg(UI_SERVICE_NAME, &msg);
- }
- static int _ui_service_send_async(uint16_t view_id, uint8_t msg_id,
- uint32_t msg_data, uint32_t msg_data2)
- {
- return _ui_service_send_async_ext(view_id, msg_id, msg_data, msg_data2, NULL);
- }
- typedef struct {
- os_sem sem;
- MSG_CALLBAK cb;
- } uisrv_msg_notify_t;
- static void _uisrv_msg_sync_callback(struct app_msg * msg, int result, void *data)
- {
- if (msg->sync_sem) {
- uisrv_msg_notify_t *msg_notify =
- CONTAINER_OF(msg->sync_sem, uisrv_msg_notify_t, sem);
- if (msg_notify->cb)
- msg_notify->cb(msg, result, data);
- /* FIXME: workaround for simulator, since os_sem_give() not implemented yet */
- #ifndef CONFIG_SIMULATOR
- os_sem_give(&msg_notify->sem);
- #else
- msg_notify->cb = (void *)0xFFFFFFFF;
- #endif
- }
- }
- static int _ui_service_send_sync(uint16_t view_id, uint8_t msg_id,
- uint32_t msg_data, uint16_t msg_data2, MSG_CALLBAK msg_cb)
- {
- uisrv_msg_notify_t msg_notify;
- struct app_msg msg = {
- .type = MSG_UI_EVENT,
- .sender = view_id,
- .cmd = msg_id,
- .reserve = msg_data2 & 0xff,
- .__pad[0] = (msg_data2 >> 8) & 0xff,
- .__pad[1] = (msg_data2 >> 16) & 0xff,
- .__pad[2] = (msg_data2 >> 24) & 0xff,
- .value = msg_data,
- .sync_sem = &msg_notify.sem,
- .callback = _uisrv_msg_sync_callback,
- };
- os_sem_init(&msg_notify.sem, 0, 1);
- msg_notify.cb = msg_cb;
- if (send_async_msg(UI_SERVICE_NAME, &msg) == false) {
- return -ENOBUFS;
- }
- /* FIXME: workaround for simulator, since os_sem_take() not implemented yet */
- #ifndef CONFIG_SIMULATOR
- if (os_sem_take(&msg_notify.sem, OS_FOREVER)) {
- return -ETIME;
- }
- #else
- while (msg_notify.cb != (void *)0xFFFFFFFF) {
- os_sleep(10);
- }
- #endif
- return 0;
- }
- #endif /* CONFIG_UI_SERVICE */
- int ui_message_send_async(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
- {
- #ifdef CONFIG_UI_SERVICE
- SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x\n", view_id, msg_id, msg_data);
- return _ui_service_send_async(view_id, msg_id, msg_data, 0);
- #else
- struct app_msg msg = {0};
- ui_view_context_t *view = _ui_manager_get_view_context(view_id);
- if (!view) {
- return -ESRCH;
- }
- msg.type = MSG_UI_EVENT;
- msg.sender = view_id;
- msg.cmd = msg_id;
- msg.value = msg_data;
- SYS_LOG_INF("view_id %d msg_id %d msg_data 0x%x\n", view_id, msg_id, msg_data);
- return send_async_msg("main"/*view->app_id*/, &msg);
- #endif /* CONFIG_UI_SERVICE */
- }
- int ui_message_send_async2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb)
- {
- #ifdef CONFIG_UI_SERVICE
- SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x, msg_cb %p\n",
- view_id, msg_id, msg_data, msg_cb);
- return _ui_service_send_async_ext(view_id, msg_id, msg_data, 0, msg_cb);
- #else
- return -ENOSYS;
- #endif
- }
- int ui_message_send_sync(uint16_t view_id, uint8_t msg_id, uint32_t msg_data)
- {
- #ifdef CONFIG_UI_SERVICE
- SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x\n", view_id, msg_id, msg_data);
- return _ui_service_send_sync(view_id, msg_id, msg_data, 0, NULL);
- #else
- return -ENOSYS;
- #endif
- }
- int ui_message_send_sync2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb)
- {
- #ifdef CONFIG_UI_SERVICE
- SYS_LOG_DBG("view_id %d, msg_id %d, msg_data 0x%x, msg_cb %p\n",
- view_id, msg_id, msg_data, msg_cb);
- return _ui_service_send_sync(view_id, msg_id, msg_data, 0, msg_cb);
- #else
- return -ENOSYS;
- #endif
- }
- #ifdef CONFIG_UI_SERVICE
- int ui_view_create(uint16_t view_id, const void *presenter, uint8_t flags)
- #else
- int ui_view_create(uint16_t view_id, ui_view_info_t *info)
- #endif
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_CREATE, (uintptr_t)presenter, flags);
- #else
- ui_view_context_t *view;
- view = _ui_manager_get_view_context(view_id);
- if (view != NULL)
- return false;
- view = mem_malloc(sizeof(ui_view_context_t));
- if (!view)
- return false;
- memset(view, 0, sizeof(ui_view_context_t));
- view->view_id = view_id;
- view->app_id = info->app_id;
- memcpy(&view->info, info, sizeof(ui_view_info_t));
- _ui_manager_add_view(view);
- #ifdef CONFIG_SEG_LED_MANAGER
- /* unlock seg led */
- seg_led_manager_set_timeout_event(0, NULL);
- #endif
- ui_message_send_async(view_id, MSG_VIEW_CREATE, 0);
- return 0;
- #endif
- }
- int ui_view_layout(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_LAYOUT, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_update(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_UPDATE, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_delete(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_DELETE, 0, 0);
- #else
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- ui_view_context_t *view = _ui_manager_get_view_context(view_id);
- if (!view)
- return false;
- SYS_LOG_INF("view_id %d\n", view_id);
- view->info.view_proc(view->view_id, MSG_VIEW_DELETE, 0);
- sys_slist_find_and_remove(&ui_manager->view_list, &view->node);
- mem_free(view);
- return true;
- #endif
- }
- int ui_view_show(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_SET_HIDDEN, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_hide(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_SET_HIDDEN, 1, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_set_order(uint16_t view_id, uint16_t order)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_SET_ORDER, order, 0);
- #else
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- ui_view_context_t *view = _ui_manager_get_view_context(view_id);
- int old_index;
- if (!view)
- return false;
- old_index = _ui_manager_get_view_index(view_id);
- sys_slist_find_and_remove(&ui_manager->view_list, &view->node);
- view->info.order = order;
- _ui_manager_add_view(view);
- return 0;
- #endif
- }
- int ui_view_set_pos(uint16_t view_id, int16_t x, int16_t y)
- {
- #ifdef CONFIG_UI_SERVICE
- union {
- uint32_t val_32;
- int16_t val_16[2];
- } value;
- value.val_16[0] = x;
- value.val_16[1] = y;
- return _ui_service_send_async(view_id, MSG_VIEW_SET_POS, value.val_32, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_set_drag_attribute(uint16_t view_id, uint8_t drag_attribute, bool keep_pos)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_SET_DRAG_ATTRIBUTE, drag_attribute, keep_pos);
- #else
- return 0;
- #endif
- }
- int ui_view_paint2(uint16_t view_id, uint16_t user_id, void *user_data)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_PAINT, (uintptr_t)user_data, user_id);
- #else
- return 0;
- #endif
- }
- int ui_view_refresh(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_REFRESH, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_pause(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_PAUSE, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_resume(uint16_t view_id)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(view_id, MSG_VIEW_RESUME, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_view_send_user_msg2(uint16_t view_id, uint8_t msg_id, uint16_t user_id, void * user_data)
- {
- #ifdef CONFIG_UI_SERVICE
- if (msg_id >= MSG_VIEW_USER_OFFSET) {
- return _ui_service_send_async(view_id, msg_id, (uintptr_t)user_data, user_id);
- }
- return -EINVAL;
- #else
- return 0;
- #endif
- }
- int ui_msgbox_popup(uint16_t msgbox_id, void *user_data)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(msgbox_id, MSG_MSGBOX_POPUP, (uintptr_t)user_data, 0);
- #else
- return 0;
- #endif
- }
- int ui_msgbox_close(uint16_t msgbox_id, bool bsync)
- {
- #ifdef CONFIG_UI_SERVICE
- if (bsync) {
- return _ui_service_send_sync(msgbox_id, MSG_MSGBOX_CLOSE, 0, 0, NULL);
- } else {
- return _ui_service_send_async(msgbox_id, MSG_MSGBOX_CLOSE, 0, 0);
- }
- #else
- return 0;
- #endif
- }
- int ui_msgbox_paint(uint16_t msgbox_id, void * user_data)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(msgbox_id, MSG_MSGBOX_PAINT, (uintptr_t)user_data, 0);
- #else
- return 0;
- #endif
- }
- #ifdef CONFIG_UI_SERVICE
- #ifndef CONFIG_SIMULATOR
- __aligned(ARCH_STACK_PTR_ALIGN) __in_section_unique(uisrv.noinit.stack)
- static char uisrv_stack_area[CONFIG_UISRV_STACKSIZE];
- extern void _ui_service_main_loop(void *parama1, void *parama2, void *parama3);
- SERVICE_DEFINE(ui_service, uisrv_stack_area, sizeof(uisrv_stack_area), \
- CONFIG_UISRV_PRIORITY, BACKGROUND_APP, NULL, NULL, NULL, \
- _ui_service_main_loop);
- #endif /* CONFIG_SIMULATOR */
- static void *uisrv_tid;
- bool is_in_ui_thread(void)
- {
- return os_current_get() == uisrv_tid;
- }
- static int _ui_service_start(void)
- {
- static const ui_srv_init_param_t init_param = {
- #if defined(CONFIG_VIEW_SCROLL_MEM_SAVE)
- .scrl_mem_mode = VIEW_SCROLL_MEM_SAVE,
- #elif defined(CONFIG_VIEW_SCROLL_MEM_LOWEST)
- .scrl_mem_mode = VIEW_SCROLL_MEM_LOWEST,
- #else
- .scrl_mem_mode = VIEW_SCROLL_MEM_DEF,
- #endif
- .view_ovl_opa = CONFIG_UI_VIEW_OVERLAY_OPA,
- .trans_buf_cnt = CONFIG_UI_EFFECT_TRANSFORM_BUFFER_COUNT,
- };
- struct app_msg msg = {0};
- if (!srv_manager_check_service_is_actived(UI_SERVICE_NAME)) {
- if (srv_manager_active_service(UI_SERVICE_NAME)) {
- uisrv_tid = srv_manager_get_servicetid(UI_SERVICE_NAME);
- SYS_LOG_DBG("ui service start ok\n");
- } else {
- SYS_LOG_ERR("ui service start failed\n");
- return -ESRCH;
- }
- }
- msg.type = MSG_INIT_APP;
- msg.ptr = (void *)&init_param;
- return !send_async_msg(UI_SERVICE_NAME, &msg);
- }
- static int _ui_service_stop(void)
- {
- int ret = 0;
- if (!srv_manager_check_service_is_actived(UI_SERVICE_NAME)) {
- SYS_LOG_ERR("ui service_stop failed\n");
- ret = -ESRCH;
- goto exit;
- }
- if (!srv_manager_exit_service(UI_SERVICE_NAME)) {
- ret = -ETIMEDOUT;
- goto exit;
- }
- SYS_LOG_DBG("ui service_stop success!\n");
- exit:
- return ret;
- }
- #endif /* CONFIG_UI_SERVICE */
- int ui_manager_init(void)
- {
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- memset(ui_manager, 0, sizeof(ui_manager_context_t));
- #ifdef CONFIG_UI_MEMORY_MANAGER
- ui_mem_init();
- #endif
- #ifdef CONFIG_UI_SERVICE
- _ui_service_start();
- #else
- sys_slist_init(&ui_manager->view_list);
- #endif
- #ifdef CONFIG_LED_MANAGER
- led_manager_init();
- #endif
- #ifdef CONFIG_SEG_LED_MANAGER
- seg_led_manager_init();
- #endif
- return 0;
- }
- int ui_manager_exit(void)
- {
- ui_manager_context_t *ui_manager = _ui_manager_get_context();
- if (!ui_manager)
- return -ESRCH;
- #ifdef CONFIG_LED_MANAGER
- led_manager_deinit();
- #endif
- #ifdef CONFIG_SEG_LED_MANAGER
- seg_led_manager_deinit();
- #endif
- #ifdef CONFIG_UI_SERVICE
- _ui_service_stop();
- #endif
- return 0;
- }
- int ui_manager_lock_display(void)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(0, MSG_DISPLAY_LOCK, 1, 0);
- #else
- return 0;
- #endif
- }
- int ui_manager_unlock_display(void)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(0, MSG_DISPLAY_LOCK, 0, 0);
- #else
- return 0;
- #endif
- }
- int ui_manager_register_callback(uint8_t cb_id, void * cb_func)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(0, MSG_VIEW_SET_CALLBACK, (uintptr_t)cb_func, cb_id);
- #else
- return 0;
- #endif
- }
- int ui_manager_set_max_buffer_count(uint8_t buf_count)
- {
- #ifdef CONFIG_UI_SERVICE
- return _ui_service_send_async(0, MSG_VIEW_SET_BUF_COUNT, buf_count, 0);
- #else
- return -ENOSYS;
- #endif
- }
- int ui_gesture_set_scroll_dir(uint8_t dir)
- {
- #ifdef CONFIG_UI_SERVICE
- if (is_in_ui_thread()) {
- extern void gesture_manager_set_scroll_dir(uint8_t dir);
- gesture_manager_set_scroll_dir(dir);
- return 0;
- } else {
- return _ui_service_send_async(0, MSG_GESTURE_SET_SCROLL_DIR, dir, 0);
- }
- #else
- return -ENOSYS;
- #endif
- }
- int ui_gesture_lock_scroll(void)
- {
- #ifdef CONFIG_UI_SERVICE
- if (is_in_ui_thread()) {
- extern void gesture_manager_lock_scroll(void);
- gesture_manager_lock_scroll();
- return 0;
- } else {
- return _ui_service_send_sync(0, MSG_GESTURE_LOCK_SCROLL, 1, 0, NULL);
- }
- #else
- return -ENOSYS;
- #endif
- }
- int ui_gesture_unlock_scroll(void)
- {
- #ifdef CONFIG_UI_SERVICE
- if (is_in_ui_thread()) {
- extern void gesture_manager_unlock_scroll(void);
- gesture_manager_unlock_scroll();
- return 0;
- } else {
- return _ui_service_send_async(0, MSG_GESTURE_LOCK_SCROLL, 0, 0);
- }
- #else
- return -ENOSYS;
- #endif
- }
- int ui_gesture_wait_release(void)
- {
- #ifdef CONFIG_UI_SERVICE
- if (is_in_ui_thread()) {
- extern void gesture_manager_wait_release(void);
- gesture_manager_wait_release();
- return 0;
- } else {
- return _ui_service_send_async(0, MSG_GESTURE_WAIT_RELEASE, 0, 0);
- }
- #else
- return -ENOSYS;
- #endif
- }
|