ui_manager.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file ui manager interface
  8. */
  9. #ifndef __UI_MANGER_H__
  10. #define __UI_MANGER_H__
  11. /****************************************************************************
  12. * Included Files
  13. ****************************************************************************/
  14. #include <msg_manager.h>
  15. #include <view_manager.h>
  16. #include <input_manager.h>
  17. #ifdef CONFIG_SEG_LED_MANAGER
  18. #include <seg_led_manager.h>
  19. #endif
  20. #ifdef CONFIG_LED_MANAGER
  21. #include <led_manager.h>
  22. #endif
  23. /****************************************************************************
  24. * Macro Function
  25. ****************************************************************************/
  26. /* deprecated API */
  27. #define ui_manager_send_async(view_id, msg_id, msg_data) \
  28. ui_message_send_async(view_id, msg_id, msg_data)
  29. #define ui_manager_gesture_set_dir(dir) ui_gesture_set_scroll_dir(dir)
  30. #define ui_manager_gesture_lock_scroll ui_gesture_lock_scroll
  31. #define ui_manager_gesture_unlock_scroll ui_gesture_unlock_scroll
  32. #define ui_manager_gesture_wait_release ui_gesture_wait_release
  33. #ifdef __cplusplus
  34. #define EXTERN extern "C"
  35. extern "C"
  36. {
  37. #else
  38. #define EXTERN extern
  39. #endif
  40. /****************************************************************************
  41. * Public Function Prototypes
  42. ****************************************************************************/
  43. //#include "led_display.h"
  44. /**
  45. * @defgroup ui_manager_apis app ui Manager APIs
  46. * @ingroup system_apis
  47. * @{
  48. */
  49. /**
  50. * @cond INTERNAL_HIDDEN
  51. */
  52. /**
  53. * @brief dispatch key event to target view
  54. *
  55. * This routine dispatch key event to target view, ui manager will found the target
  56. * view by view_key_map
  57. *
  58. * @param key_event value of key event
  59. *
  60. * @return 0 if invoked succsess.
  61. * @return others if invoked failed.
  62. */
  63. int ui_manager_dispatch_key_event(uint32_t key_event);
  64. /**
  65. * @brief send ui message to target view
  66. *
  67. * This routine send ui message to target view which mark by view id
  68. *
  69. * @param view_id id of view
  70. * @param msg_id id of msg_id
  71. * @param msg_data param of message
  72. *
  73. * @return 0 if invoked succsess.
  74. * @return others if invoked failed.
  75. */
  76. int ui_message_send_async(uint16_t view_id, uint8_t msg_id, uint32_t msg_data);
  77. /**
  78. * @brief send ui message to target view with optional callback
  79. *
  80. * This routine send ui message to target view which mark by view id
  81. *
  82. * @param view_id id of view
  83. * @param msg_id id of msg_id
  84. * @param msg_data param of message
  85. * @param msg_cb callback of message. "msg_data" is stored in the field "value" of
  86. * the 1st "struct app_msg *" param of msg_cb.
  87. *
  88. * @return 0 if invoked succsess.
  89. * @return others if invoked failed.
  90. */
  91. int ui_message_send_async2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb);
  92. /**
  93. * @brief send ui message synchronized to target view
  94. *
  95. * This routine send ui message to target view which mark by view id
  96. *
  97. * @param view_id id of view
  98. * @param msg_id id of msg_id
  99. * @param msg_data param of message
  100. *
  101. * @return 0 if invoked succsess.
  102. * @return others if invoked failed.
  103. */
  104. int ui_message_send_sync(uint16_t view_id, uint8_t msg_id, uint32_t msg_data);
  105. /**
  106. * @brief send ui message synchronized to target view
  107. *
  108. * This routine send ui message to target view which mark by view id
  109. *
  110. * @param view_id id of view
  111. * @param msg_id id of msg_id
  112. * @param msg_data param of message
  113. * @param msg_cb callback of message. "msg_data" is stored in the field "value" of
  114. * the 1st "struct app_msg *" param of msg_cb.
  115. *
  116. * @return 0 if invoked succsess.
  117. * @return others if invoked failed.
  118. */
  119. int ui_message_send_sync2(uint16_t view_id, uint8_t msg_id, uint32_t msg_data, MSG_CALLBAK msg_cb);
  120. /**
  121. * @brief wait previous sent messages received and replied
  122. *
  123. * @return 0 if invoked succsess.
  124. * @return others if invoked failed.
  125. */
  126. static inline int ui_message_wait_reply(void)
  127. {
  128. return ui_message_send_sync(VIEW_INVALID_ID, MSG_VIEW_NULL, 0);
  129. }
  130. #ifndef CONFIG_UI_SERVICE
  131. /**
  132. * @brief dispatch ui message to target view
  133. *
  134. * This routine dispatch ui message to target view which mark by view id
  135. * if the target view not found in view list ,return failed. otherwise target
  136. * view will process this ui message.
  137. *
  138. * @param view_id id of view
  139. * @param msg_id id of msg_id
  140. * @param msg_data param of message
  141. *
  142. * @return 0 if invoked succsess.
  143. * @return others if invoked failed.
  144. */
  145. int ui_message_dispatch(uint16_t view_id, uint8_t msg_id, uint32_t msg_data);
  146. #endif
  147. /**
  148. * INTERNAL_HIDDEN @endcond
  149. */
  150. /**
  151. * @brief Create a new view
  152. *
  153. * This routine Create a new view. After view created, it is hidden by default.
  154. *
  155. * @param view_id init view id
  156. * @param presenter view presenter
  157. * @param flags create flags, see enum UI_VIEW_CREATE_FLAGS
  158. *
  159. * @retval 0 on invoiked success else negative errno code.
  160. */
  161. #ifdef CONFIG_UI_SERVICE
  162. int ui_view_create(uint16_t view_id, const void *presenter, uint8_t flags);
  163. #else
  164. int ui_view_create(uint16_t view_id, ui_view_info_t *info);
  165. #endif
  166. /**
  167. * @brief Inflate view layout
  168. *
  169. * This routine inflate view layout, called by view itself if required.
  170. *
  171. * @param view_id id of view
  172. *
  173. * @retval 0 on invoiked success else negative errno code.
  174. */
  175. int ui_view_layout(uint16_t view_id);
  176. /**
  177. * @brief update view
  178. *
  179. * @param view_id id of view
  180. *
  181. * @retval 0 on invoiked success else negative errno code.
  182. */
  183. int ui_view_update(uint16_t view_id);
  184. /**
  185. * @brief destory view
  186. *
  187. * This routine destory view, delete form ui manager view list
  188. * and release all resource for view.
  189. *
  190. * @param view_id id of view
  191. *
  192. * @retval 0 on invoiked success else negative errno code.
  193. */
  194. int ui_view_delete(uint16_t view_id);
  195. /**
  196. * @brief show view
  197. *
  198. * This routine show view, show form ui manager view list.
  199. *
  200. * @param view_id id of view
  201. *
  202. * @retval 0 on invoiked success else negative errno code.
  203. */
  204. int ui_view_show(uint16_t view_id);
  205. /**
  206. * @brief hide view
  207. *
  208. * This routine hide view, hide form ui manager view list.
  209. *
  210. * @param view_id id of view
  211. *
  212. * @retval 0 on invoiked success else negative errno code.
  213. */
  214. int ui_view_hide(uint16_t view_id);
  215. /**
  216. * @brief set view order
  217. *
  218. * @param view_id id of view
  219. *
  220. * @retval 0 on invoiked success else negative errno code.
  221. */
  222. int ui_view_set_order(uint16_t view_id, uint16_t order);
  223. /**
  224. * @brief set view drag attribute
  225. *
  226. * This routine set view drag attribute. If drag_attribute > 0, it implicitly make the view
  227. * visible, just like view_set_hidden(view_id, false) called.
  228. *
  229. * @param view_id id of view
  230. * @param drag_attribute drag attribute, see enum UI_VIEW_DRAG_ATTRIBUTE
  231. * @param keep_pos if true, keep the positon unchanged, else move the view to the drag position
  232. *
  233. * @retval 0 on success else negative errno code.
  234. */
  235. int ui_view_set_drag_attribute(uint16_t view_id, uint8_t drag_attribute, bool keep_pos);
  236. /**
  237. * @brief paint view
  238. *
  239. * @param view_id id of view
  240. * @param user_id user defined UI id
  241. * @param user_data user defined message data
  242. *
  243. * @retval 0 on invoiked success else negative errno code.
  244. */
  245. int ui_view_paint2(uint16_t view_id, uint16_t user_id, void * user_data);
  246. static inline int ui_view_paint(uint16_t view_id)
  247. {
  248. return ui_view_paint2(view_id, 0, NULL);
  249. }
  250. /**
  251. * @brief refresh view
  252. *
  253. * @param view_id id of view
  254. *
  255. * @retval 0 on invoiked success else negative errno code.
  256. */
  257. int ui_view_refresh(uint16_t view_id);
  258. /**
  259. * @cond INTERNAL_HIDDEN
  260. */
  261. /**
  262. * @brief pause view
  263. *
  264. * After view become paused, the view surface may become unreachable.
  265. * View is not paused by default after created.
  266. * A paused view is always hidden regardless of the hidden attribute.
  267. *
  268. * @param view_id id of view
  269. *
  270. * @retval 0 on invoiked success else negative errno code.
  271. */
  272. int ui_view_pause(uint16_t view_id);
  273. /**
  274. * @brief resume view
  275. *
  276. * After view resumed, the view surface becomes reachable.
  277. *
  278. * @param view_id id of view
  279. *
  280. * @retval 0 on invoiked success else negative errno code.
  281. */
  282. int ui_view_resume(uint16_t view_id);
  283. /**
  284. * INTERNAL_HIDDEN @endcond
  285. */
  286. /**
  287. * @brief set view position
  288. *
  289. * @param view_id id of view
  290. * @param x new coordinate X
  291. * @param y new coordinate Y
  292. *
  293. * @retval 0 on invoiked success else negative errno code.
  294. */
  295. int ui_view_set_pos(uint16_t view_id, int16_t x, int16_t y);
  296. /**
  297. * @brief send user message to view
  298. *
  299. * @param view_id id of view
  300. * @param msg_id user defined message id, must not less than MSG_VIEW_USER_OFFSET
  301. * @param user_id user defined UI id
  302. * @param user_data user defined message data
  303. *
  304. * @retval 0 on invoiked success else negative errno code.
  305. */
  306. int ui_view_send_user_msg2(uint16_t view_id, uint8_t msg_id, uint16_t user_id, void * user_data);
  307. static inline int ui_view_send_user_msg(uint16_t view_id, uint8_t msg_id, void *msg_data)
  308. {
  309. return ui_view_send_user_msg2(view_id, msg_id, 0, msg_data);
  310. }
  311. /**
  312. * @brief popup a message box
  313. *
  314. * This routine will lock the gesture, just like ui_gesture_lock_scroll() is called.
  315. * If the registered popup callback failed, should unlock
  316. * gesture by ui_gesture_unlock_scroll().
  317. *
  318. * @param msgbox_id user defined message box id
  319. * @param user_data user data
  320. *
  321. * @retval 0 on invoiked success else negative code.
  322. */
  323. int ui_msgbox_popup(uint16_t msgbox_id, void *user_data);
  324. /**
  325. * @brief close a message box
  326. *
  327. * @param msgbox_id user defined message box id.
  328. * @param bsync synchronous flag
  329. *
  330. * @retval 0 on invoiked success else negative code.
  331. */
  332. int ui_msgbox_close(uint16_t msgbox_id, bool bsync);
  333. /**
  334. * @brief Update a message box
  335. *
  336. * @param msgbox_id user defined message box id.
  337. * @param user_data user defined message data
  338. *
  339. * @retval 0 on invoiked success else negative code.
  340. */
  341. int ui_msgbox_paint(uint16_t msgbox_id, void * user_data);
  342. /**
  343. * @brief ui manager init funcion
  344. *
  345. * This routine calls init ui manager ,called by main
  346. *
  347. * @return 0 if invoked succsess.
  348. * @return others if invoked failed.
  349. */
  350. int ui_manager_init(void);
  351. /**
  352. * @brief ui manager deinit funcion
  353. *
  354. * This routine calls deinit ui manager ,called by main
  355. *
  356. * @return 0 if invoked succsess.
  357. * @return others if invoked failed.
  358. */
  359. int ui_manager_exit(void);
  360. /**
  361. * @brief ui manager lock display post temporarily
  362. *
  363. * The post will be locked and display will never update.
  364. *
  365. * @return 0 if invoked succsess.
  366. * @return others if invoked failed.
  367. */
  368. int ui_manager_lock_display(void);
  369. /**
  370. * @brief ui manager unlock display post
  371. *
  372. * The display can be updated.
  373. *
  374. * @return 0 if invoked succsess.
  375. * @return others if invoked failed.
  376. */
  377. int ui_manager_unlock_display(void);
  378. /**
  379. * @brief ui manager register callbacks
  380. *
  381. * @param cb_id Callback ID, @see enum UI_CALLBACK_ID
  382. * For UI_CB_MSGBOX, pass msgbox requests
  383. * For UI_CB_SCROLL, feedback scrolling status
  384. * For UI_CB_MONITOR, feedback view status, including focus, paused, etc.
  385. * For UI_CB_KEYEVENT, pass msgbox/view unhandled key events, including
  386. * inner gesture events and keys passed by ui_manager_dispatch_key_event().
  387. * @param cb_func Callback function entry whose prototype must match the cb_id.
  388. *
  389. * @retval 0 on succsess else negative code
  390. */
  391. int ui_manager_register_callback(uint8_t cb_id, void * cb_func);
  392. static inline int ui_manager_set_msgbox_popup_callback(ui_msgbox_popup_cb_t callback)
  393. {
  394. return ui_manager_register_callback(UI_CB_MSGBOX, callback);
  395. }
  396. static inline int ui_manager_set_scroll_callback(ui_scroll_cb_t callback)
  397. {
  398. return ui_manager_register_callback(UI_CB_SCROLL, callback);
  399. }
  400. static inline int ui_manager_set_monitor_callback(ui_monitor_cb_t callback)
  401. {
  402. return ui_manager_register_callback(UI_CB_MONITOR, callback);
  403. }
  404. static inline int ui_manager_set_keyevent_callback(ui_keyevent_cb_t callback)
  405. {
  406. return ui_manager_register_callback(UI_CB_KEYEVENT, callback);
  407. }
  408. static inline int ui_manager_set_transform_switch_callback(ui_transform_cb_t callback)
  409. {
  410. return ui_manager_register_callback(UI_CB_TRANSFORM_SWITCH, callback);
  411. }
  412. static inline int ui_manager_set_transform_scroll_callback(ui_transform_cb_t callback)
  413. {
  414. return ui_manager_register_callback(UI_CB_TRANSFORM_SCROLL, callback);
  415. }
  416. /**
  417. * @brief Set surface max buffer count
  418. *
  419. * Set surface buffer count for focused view.
  420. *
  421. * @param buf_count buffer count, must not exceed CONFIG_SURFACE_MAX_BUFFER_COUNT
  422. *
  423. * @retval 0 on invoiked success else negative errno code.
  424. */
  425. int ui_manager_set_max_buffer_count(uint8_t buf_count);
  426. /**
  427. * @brief ui manager set gesture direction
  428. *
  429. * This routine filter the gestures. By default, all are filtered in.
  430. *
  431. * @param dir gesture dir filter flags, like (1 << GESTURE_DROP_DOWN) | (1 << GESTURE_DROP_UP)
  432. * only the gestures filtered will be detected.
  433. *
  434. * @return 0 if invoked succsess.
  435. * @return others if invoked failed.
  436. */
  437. int ui_gesture_set_scroll_dir(uint8_t dir);
  438. /**
  439. * @brief ui manager lock gesture scroll temporarily
  440. *
  441. * The scrolling will be stopped and locked.
  442. *
  443. * @return 0 if invoked succsess.
  444. * @return others if invoked failed.
  445. */
  446. int ui_gesture_lock_scroll(void);
  447. /**
  448. * @brief ui manager lock gesture scroll
  449. *
  450. * The scrolling will be stopped and locked.
  451. *
  452. * @return 0 if invoked succsess.
  453. * @return others if invoked failed.
  454. */
  455. int ui_gesture_unlock_scroll(void);
  456. /**
  457. * @brief Ignore gesture detection until the next release
  458. *
  459. * @return 0 if invoked succsess.
  460. * @return others if invoked failed.
  461. */
  462. int ui_gesture_wait_release(void);
  463. /**
  464. * @brief Determine if code is running at ui thread context.
  465. *
  466. * This routine allows the caller to customize its actions, depending on
  467. * whether it is running in ui thread context.
  468. *
  469. * @funcprops \isr_ok
  470. *
  471. * @return false if invoked by a thread.
  472. * @return true if invoked by an ISR.
  473. */
  474. bool is_in_ui_thread(void);
  475. /**
  476. * @} end defgroup system_apis
  477. */
  478. #undef EXTERN
  479. #ifdef __cplusplus
  480. }
  481. #endif
  482. #endif /*__UI_MANGER_H__*/