view_manager.h 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file view manager interface
  8. */
  9. #ifndef __VIEW_MANGER_H__
  10. #define __VIEW_MANGER_H__
  11. /**
  12. * @defgroup ui_manager_apis app ui Manager APIs
  13. * @ingroup system_apis
  14. * @{
  15. */
  16. /****************************************************************************
  17. * Included Files
  18. ****************************************************************************/
  19. #include <ui_region.h>
  20. #include <sys/slist.h>
  21. #include <input_manager.h>
  22. #include <ui_surface.h>
  23. /****************************************************************************
  24. * Pre-processor Definitions
  25. ****************************************************************************/
  26. #define TRANSMIT_ALL_KEY_EVENT 0xFFFFFFFF
  27. #define UI_VIEW_ANIM_SHIFT (10)
  28. #define UI_VIEW_ANIM_RANGE (1 << UI_VIEW_ANIM_SHIFT)
  29. #define VIEW_INVALID_ID VIEW_ID_ALL
  30. #define MSGBOX_INVALID_ID MSGBOX_ID_ALL
  31. #define TRANSFORM_BUFFER_NUM_MAX 2
  32. /****************************************************************************
  33. * Public Types
  34. ****************************************************************************/
  35. /**
  36. * @brief UI Message ID
  37. *
  38. * UI message id enumeration
  39. */
  40. enum UI_MSG_ID {
  41. MSG_VIEW_NULL = 0,
  42. MSG_VIEW_CREATE, /* creating view, MSG_VIEW_PRELOAD or MSG_VIEW_LAYOUT will be sent to view */
  43. MSG_VIEW_PRELOAD, /* preload view resource */
  44. MSG_VIEW_LAYOUT, /* view layout inflate, can be called by the view itself if required */
  45. MSG_VIEW_DELETE, /* deleting view */
  46. MSG_VIEW_PAINT, /* update the view normally driven by data changed */
  47. MSG_VIEW_REFRESH, /* refresh view surface to display */
  48. MSG_VIEW_FOCUS, /* view becomes focused */
  49. MSG_VIEW_DEFOCUS, /* view becomes de-focused */
  50. MSG_VIEW_PAUSE, /* view surface becomes unreachable */
  51. MSG_VIEW_RESUME, /* view surface becomes reachable */
  52. MSG_VIEW_UPDATE, /* resource reload completed */
  53. MSG_VIEW_RESUME_DISPLAY, /* display unblank */
  54. MSG_VIEW_KEY, /* key event, param is struct msg_view_key_data */
  55. MSG_VIEW_SET_HIDDEN, /* 14 */
  56. MSG_VIEW_SET_ORDER,
  57. MSG_VIEW_SET_POS,
  58. MSG_VIEW_SET_DRAG_ATTRIBUTE,
  59. MSG_VIEW_SET_CALLBACK, /* 18 */
  60. MSG_VIEW_SCROLL_BEGIN,
  61. MSG_VIEW_SCROLL_END,
  62. MSG_VIEW_SET_BUF_COUNT,
  63. MSG_DISPLAY_POST, /* 22 */
  64. MSG_DISPLAY_RESUME,
  65. MSG_DISPLAY_LOCK,
  66. /* msgbox */
  67. MSG_MSGBOX_POPUP, /* popup message box */
  68. MSG_MSGBOX_CLOSE, /* close message box */
  69. MSG_MSGBOX_CANCEL, /* cancel message box, sine popup unavailable */
  70. MSG_MSGBOX_PAINT, /* update message box */
  71. MSG_MSGBOX_KEY, /* key event passed to message box, param is struct msg_view_key_data */
  72. /* gesture setting */
  73. MSG_GESTURE_SET_SCROLL_DIR, /* 29 */
  74. MSG_GESTURE_LOCK_SCROLL,
  75. MSG_GESTURE_WAIT_RELEASE,
  76. MSG_VIEW_TRANSFORM,
  77. MSG_VIEW_TRANSFORM_START,
  78. MSG_VIEW_TRANSFORM_END,
  79. /* user message offset for specific view */
  80. MSG_VIEW_USER_OFFSET = 128,
  81. };
  82. /**
  83. * @brief UI Callback ID
  84. *
  85. * UI callback ID enumeration
  86. */
  87. enum UI_CALLBACK_ID {
  88. UI_CB_MSGBOX,
  89. UI_CB_SCROLL,
  90. UI_CB_MONITOR,
  91. UI_CB_KEYEVENT,
  92. UI_CB_TRANSFORM_SWITCH,
  93. UI_CB_TRANSFORM_SCROLL,
  94. UI_NUM_CBS,
  95. };
  96. /**
  97. * @brief View ID
  98. *
  99. * view id enumeration
  100. */
  101. enum UI_VIEW_ID {
  102. VIEW_ID_ALL = 0,
  103. VIEW_ID_USER_OFFSET = 1,
  104. };
  105. /**
  106. * @brief Msgbox ID
  107. *
  108. * msgbox id enumeration
  109. */
  110. enum UI_MSGBOX_ID {
  111. MSGBOX_ID_ALL = 0,
  112. MSGBOX_ID_USER_OFFSET = 1,
  113. };
  114. /**
  115. * @brief UI View Type
  116. *
  117. * View GUI type
  118. */
  119. enum UI_VIEW_TYPE {
  120. UI_VIEW_Unknown = 0,
  121. UI_VIEW_LVGL,
  122. UI_VIEW_USER, /* user defined */
  123. NUM_VIEW_TYPES,
  124. };
  125. /**
  126. * @brief UI View Create Flags
  127. *
  128. * View create flags
  129. */
  130. enum UI_VIEW_CREATE_FLAGS {
  131. UI_CREATE_FLAG_NO_PRELOAD = (1 << 0), /* ignore resource preload when created */
  132. UI_CREATE_FLAG_SHOW = (1 << 1), /* show the view by default */
  133. UI_CREATE_FLAG_TRANSPARENT = (1 << 2), /* view content is transparent */
  134. UI_CREATE_FLAG_FLOATING = (1 << 3), /* the view will never get focused */
  135. UI_CREATE_FLAG_NO_FB = (1 << 4), /* initial no surface buffer */
  136. UI_CREATE_FLAG_POST_ON_PAINT = (1 << 5), /* only post the view to display when painted */
  137. };
  138. /**
  139. * @brief UI View State Flags
  140. *
  141. * View state flags
  142. */
  143. enum UI_VIEW_FLAGS {
  144. UI_FLAG_HIDDEN = (1 << 0),
  145. UI_FLAG_FOCUSED = (1 << 1), /* user observable focus status */
  146. UI_FLAG_PAUSED = (1 << 2),
  147. UI_FLAG_INFLATED = (1 << 3), /* layout inflated */
  148. UI_FLAG_PAINTED = (1 << 4), /* first paint finished after layout */
  149. UI_FLAG_UPDATED = (1 << 5), /*view updated, dont update again until defocused*/
  150. UI_FLAG_DELETING = (1 << 7), /* view is deleting */
  151. };
  152. /**
  153. * @brief UI View Refresh State Flags
  154. *
  155. * View refresh state flags
  156. */
  157. enum UI_VIEW_REFRESH_FLAGS {
  158. /* flags for view refresh */
  159. UI_REFR_FLAG_MOVED = (1 << 0), /* refresh due to position changed */
  160. UI_REFR_FLAG_CHANGED = (1 << 1), /* refresh due to content changed */
  161. UI_REFR_FLAG_FIRST_CHANGED = (1 << 2), /* first refresh in frame due to content changed */
  162. UI_REFR_FLAG_LAST_CHANGED = (1 << 3), /* last refresh in frame due to content changed */
  163. };
  164. /**
  165. * @brief UI View Drag Attribute
  166. *
  167. * View drag attribute
  168. *
  169. * DOWN/UP/LEFT/RIGHT indicates the drop/move direction
  170. */
  171. enum UI_VIEW_DRAG_ATTRIBUTE {
  172. UI_DRAG_NONE = 0,
  173. UI_DRAG_DROPDOWN = (1 << 0),
  174. UI_DRAG_DROPUP = (1 << 1),
  175. UI_DRAG_DROPLEFT = (1 << 2),
  176. UI_DRAG_DROPRIGHT = (1 << 3),
  177. UI_DRAG_MOVEDOWN = (1 << 4),
  178. UI_DRAG_MOVEUP = (1 << 5),
  179. UI_DRAG_MOVELEFT = (1 << 6),
  180. UI_DRAG_MOVERIGHT = (1 << 7),
  181. };
  182. /**
  183. * @brief UI View Animation State
  184. *
  185. * View animation state
  186. *
  187. * DOWN/UP/LEFT/RIGHT indicates the drop/move direction
  188. */
  189. enum UI_VIEW_ANIMATION_STATE {
  190. UI_ANIM_NONE,
  191. UI_ANIM_START,
  192. UI_ANIM_RUNNING,
  193. UI_ANIM_STOP,
  194. };
  195. /**
  196. * @brief UI View Animation Type
  197. *
  198. * View animation type
  199. *
  200. * DOWN/UP/LEFT/RIGHT indicates the drop/move direction
  201. */
  202. enum UI_VIEW_SLIDE_ANIMATION_TYPE {
  203. UI_ANIM_SLIDE_IN_DOWN = 1,
  204. UI_ANIM_SLIDE_IN_UP,
  205. UI_ANIM_SLIDE_IN_RIGHT,
  206. UI_ANIM_SLIDE_IN_LEFT,
  207. UI_ANIM_SLIDE_OUT_UP,
  208. UI_ANIM_SLIDE_OUT_DOWN,
  209. UI_ANIM_SLIDE_OUT_LEFT,
  210. UI_ANIM_SLIDE_OUT_RIGHT,
  211. };
  212. struct ui_view_anim_cfg;
  213. struct view_data;
  214. typedef struct msg_view_transform_param {
  215. graphic_buffer_t* dst;
  216. graphic_buffer_t* src_old;
  217. graphic_buffer_t* src_new;
  218. ui_region_t region_old;
  219. ui_region_t region_new;
  220. ui_region_t crop_old;
  221. ui_region_t crop_new;
  222. uint16_t rotation;
  223. uint8_t first_frame : 1;
  224. uint8_t round_screen : 1;
  225. } ui_transform_param_t;
  226. /**
  227. * @typedef ui_view_proc
  228. * @brief Callback API to process view message
  229. * @param view_id view id
  230. * @param view_data pointer to structure view_data
  231. * @param msg_id message id
  232. * @param msg_data message data
  233. *
  234. * @retval 0 on success else error codes
  235. */
  236. typedef int (*ui_view_proc_t)(uint16_t view_id, uint8_t msg_id, void *msg_data); /* deprecated prototype */
  237. typedef int (*ui_view_proc2_t)(uint16_t view_id, struct view_data *view_data, uint8_t msg_id, void *msg_data);
  238. typedef int (*ui_get_state_t)(void);
  239. typedef bool (*ui_state_match_t)(uint32_t current_state, uint32_t match_state);
  240. /**
  241. * @typedef ui_msgbox_popup_cb
  242. * @brief Callback API to popup/close the msgbox
  243. * @param msgbox_id msgbox id
  244. * @param msg_id message id
  245. * @param msg_data message data
  246. * For MSG_MSGBOX_POPUP/CLOSE, this is the view id to attached
  247. * For MSG_MSGBOX_PAINT, this is the exact message data passed to uisrv by MSG_MSGBOX_PAINT.
  248. * For MSG_MSGBOX_KEY, this is pointer to structure ui_key_msg_data
  249. * @param user_data user data, only passed for MSG_MSGBOX_POPUP/CANCEL
  250. *
  251. * @retval N/A
  252. */
  253. typedef void (*ui_msgbox_popup_cb_t)(uint16_t msgbox_id, uint8_t msg_id, void *msg_data, void *user_data);
  254. /**
  255. * @typedef ui_scroll_cb
  256. * @brief Callback API to notify view scroll result, should not block or call any GUI API.
  257. * @param view_id view id
  258. * @param msg_id view message id, MSG_VIEW_SCROLL_BEGIN or MSG_VIEW_SCROLL_END
  259. *
  260. * @retval N/A
  261. */
  262. typedef void (*ui_scroll_cb_t)(uint16_t view_id, uint8_t msg_id);
  263. /**
  264. * @typedef ui_monitor_cb
  265. * @brief Callback API to notify view state, like focus/de-focus, layout, delete
  266. * @param view_id view id
  267. * @param msg_id view message id
  268. * @param msg_data view message data
  269. *
  270. * @retval N/A
  271. */
  272. typedef void (*ui_monitor_cb_t)(uint16_t view_id, uint8_t msg_id, void *msg_data);
  273. /**
  274. * @typedef ui_keyevent_cb
  275. * @brief Callback API to notify (gesture) event
  276. * @param view_id the focused view when event takes place
  277. * @param event event id
  278. *
  279. * @retval N/A
  280. */
  281. typedef void (*ui_keyevent_cb_t)(uint16_t view_id, uint32_t event);
  282. /**
  283. * @typedef ui_transform_cb
  284. * @brief Callback API to perform transform for UI scroll/switch effects
  285. * @param param pointer transform parameters
  286. * @param trans_end trans_end flag, user can write 1 to force it end
  287. *
  288. * @retval N/A
  289. */
  290. typedef void (*ui_transform_cb_t)(const ui_transform_param_t *param, int *trans_end);
  291. /**
  292. * @typedef ui_view_anim_path
  293. * @brief Callback API for setting view dragging animation
  294. * @param scroll_throw_vect indicated the drag speed, it uses similar algorithm as LVGL.
  295. * @param cfg pointer to structure ui_view_anim_cfg filled by callback
  296. *
  297. * @retval N/A
  298. */
  299. typedef void (*ui_view_drag_anim_cb_t)(uint16_t view_id,
  300. const ui_point_t *scroll_throw_vect, struct ui_view_anim_cfg *cfg);
  301. /**
  302. * @typedef ui_view_anim_path
  303. * @brief Callback API to compute the view move position
  304. * @param elaps the ratio of elapsed time to the duration. range [0, UI_VIEW_ANIM_RANGE]
  305. *
  306. * @retval the interpolation value of move ratio, range [0, UI_VIEW_ANIM_RANGE]
  307. */
  308. typedef int32_t (*ui_view_anim_path_cb_t)(int32_t elaps);
  309. /* notify the user the animation has stopped */
  310. typedef void (*ui_view_anim_stop_cb_t)(uint16_t view_id, const ui_point_t *pos);
  311. /**
  312. * @struct ui_key_msg_data
  313. * @brief Structure hoding data of MSG_VIEW_KEY or MSG_MSGBOX_KEY
  314. *
  315. * @var event key event
  316. * @var done the key event processing is done
  317. */
  318. typedef struct ui_key_msg_data {
  319. uint32_t event;
  320. bool done; /* the processing is done */
  321. } ui_key_msg_data_t;
  322. typedef ui_key_msg_data_t msg_view_key_data_t;
  323. /**
  324. * @struct view_user_msg_data
  325. * @brief Structure hoding data of MSG_VIEW_PAINT or user-defined message
  326. *
  327. * @var id user-defined UI id
  328. * @var data user-defined message data
  329. */
  330. typedef struct view_user_msg_data {
  331. uint16_t id;
  332. union {
  333. void * data;
  334. uintptr_t value;
  335. };
  336. } view_user_msg_data_t;
  337. typedef struct {
  338. /** key value, which key is pressed */
  339. uint32_t key_val;
  340. /** key type, which key type of the pressed key */
  341. uint32_t key_type;
  342. /** app state, the state of app service to handle the message */
  343. uint32_t app_state;
  344. /** app msg, the message of app service will be send */
  345. uint32_t app_msg;
  346. /** key policy */
  347. uint32_t key_policy;
  348. } ui_key_map_t;
  349. /**
  350. * @struct view_data
  351. * @brief Structure hoding data of view gui-specific data
  352. *
  353. * @var display gui specific display
  354. * @var surface gui rendering surface
  355. * @var presenter user-specific presenter
  356. * @var user_data user-specific data
  357. */
  358. typedef struct view_data {
  359. /* gui data */
  360. //void *context; /* gui context */
  361. void *display; /* gui display */
  362. struct surface *surface; /* gui surface to draw on */
  363. /* custom data */
  364. const void *presenter; /* view presenter passed by app */
  365. void *user_data; /* application defined data */
  366. } view_data_t;
  367. typedef struct {
  368. ui_region_t region;
  369. ui_view_proc_t view_proc;
  370. ui_get_state_t view_get_state;
  371. /** state match function */
  372. ui_state_match_t view_state_match;
  373. const ui_key_map_t *view_key_map;
  374. void *app_id;
  375. uint16_t flags;
  376. uint16_t order;
  377. } ui_view_info_t;
  378. /* app entry structure */
  379. typedef struct view_entry {
  380. /** app id */
  381. const char *app_id;
  382. /** proc function of view */
  383. ui_view_proc_t proc; /* deprecated variable */
  384. ui_view_proc2_t proc2;
  385. /**view id */
  386. uint16_t id;
  387. /**default order */
  388. uint8_t default_order;
  389. /**view type */
  390. uint8_t type;
  391. /** view width */
  392. uint16_t width;
  393. /** view height */
  394. uint16_t height;
  395. } view_entry_t;
  396. typedef struct {
  397. sys_snode_t node;
  398. #ifdef CONFIG_UI_SERVICE
  399. const view_entry_t *entry;
  400. ui_region_t region;
  401. uint8_t flags;
  402. uint8_t refr_flags;
  403. uint8_t create_flags;
  404. uint8_t order;
  405. uint8_t drag_attr;
  406. /*
  407. * internal focus status
  408. * modified both by uisrv and display-workq (byte-write is atomic)
  409. */
  410. uint8_t focused;
  411. ui_view_drag_anim_cb_t drag_anim_cb;
  412. view_data_t data;
  413. #else
  414. void *app_id;
  415. ui_view_info_t info;
  416. uint16_t view_id;
  417. #endif
  418. } ui_view_context_t;
  419. typedef struct ui_view_anim_cfg {
  420. ui_point_t start;
  421. ui_point_t stop;
  422. uint16_t duration;
  423. ui_view_anim_path_cb_t path_cb;
  424. ui_view_anim_stop_cb_t stop_cb;
  425. } ui_view_anim_cfg_t;
  426. typedef struct {
  427. uint8_t state;
  428. uint8_t is_slide : 1;
  429. uint16_t view_id;
  430. uint16_t last_view_id;
  431. ui_point_t last_view_offset;
  432. uint32_t start_time;
  433. uint16_t elapsed;
  434. ui_view_anim_cfg_t cfg;
  435. } ui_view_animation_t;
  436. /****************************************************************************
  437. * Macros
  438. ****************************************************************************/
  439. /**
  440. * @brief Statically define and initialize view entry for view.
  441. *
  442. * The view entry define statically,
  443. *
  444. * Each view must define the view entry info so that the system wants
  445. * to find view to knoe the corresponding information
  446. *
  447. * @param app_id Name of the app.
  448. * @param view_proc view proc function.
  449. * @param view_get_state view get state function.
  450. * @param view_key_map key map of view .
  451. * @param view_id view id of view .
  452. * @param default_order default order of view .
  453. * @param view_w view width .
  454. * @param view_h view height.
  455. */
  456. #ifdef CONFIG_SIMULATOR
  457. # define VIEW_ENTRY_ATTR
  458. #else
  459. # define VIEW_ENTRY_ATTR __attribute__((__section__(".view_entry")))
  460. #endif
  461. #define VIEW_DEFINE(app_name, view_proc, view_get_state, view_key_map,\
  462. view_id, order, view_type, view_w, view_h) \
  463. const struct view_entry __view_entry_##app_name##view_id \
  464. VIEW_ENTRY_ATTR = { \
  465. .app_id = #app_name, \
  466. .proc = view_proc, \
  467. .id = view_id, \
  468. .default_order = order, \
  469. .type = view_type, \
  470. .width = view_w, \
  471. .height = view_h, \
  472. }
  473. #define VIEW_DEFINE2(app_name, view_proc, view_get_state, view_key_map,\
  474. view_id, order, view_type, view_w, view_h) \
  475. const struct view_entry __view_entry_##app_name##view_id \
  476. VIEW_ENTRY_ATTR = { \
  477. .app_id = #app_name, \
  478. .proc2 = view_proc, \
  479. .id = view_id, \
  480. .default_order = order, \
  481. .type = view_type, \
  482. .width = view_w, \
  483. .height = view_h, \
  484. }
  485. #ifdef __cplusplus
  486. #define EXTERN extern "C"
  487. extern "C"
  488. {
  489. #else
  490. #define EXTERN extern
  491. #endif
  492. /****************************************************************************
  493. * Public Function Prototypes
  494. ****************************************************************************/
  495. /**
  496. * @brief get view data
  497. *
  498. * This routine get view data.
  499. *
  500. * @param view_id id of view
  501. *
  502. * @return view data on success else NULL
  503. */
  504. view_data_t *view_get_data(uint16_t view_id);
  505. /**
  506. * @brief get view display
  507. *
  508. * This routine get view display.
  509. *
  510. * @param data view data
  511. *
  512. * @return view display on success else NULL
  513. */
  514. static inline void *view_get_display(view_data_t *data)
  515. {
  516. return data->display;
  517. }
  518. /**
  519. * @brief get view surface
  520. *
  521. * This routine get view gui surface.
  522. *
  523. * @param data view data
  524. *
  525. * @return view surface on success else NULL
  526. */
  527. static inline void *view_get_surface(view_data_t *data)
  528. {
  529. return data->surface;
  530. }
  531. /**
  532. * @brief get view data
  533. *
  534. * This routine get view data.
  535. *
  536. * @param view_id id of view
  537. *
  538. * @return view data on success else NULL
  539. */
  540. static inline const void *view_get_presenter(view_data_t *data)
  541. {
  542. return data->presenter;
  543. }
  544. /**
  545. * @brief set current draw refresh rate.
  546. *
  547. * @param view_id id of view
  548. * @param rate_hz refresh rate in Hz.
  549. *
  550. * @return the old refresh rate.
  551. */
  552. uint8_t view_set_refresh_rate(uint16_t view_id, uint8_t rate_hz);
  553. /**
  554. * @brief set current draw refresh rate.
  555. *
  556. * @param view_id id of view
  557. * @param timeout timeout in milliseconds. unused at present.
  558. *
  559. * @return 0 on success else negative code.
  560. */
  561. int view_wait_for_refresh(uint16_t view_id, int timeout);
  562. /**
  563. * @cond INTERNAL_HIDDEN
  564. */
  565. /**
  566. * @brief enable view refresh to display or not
  567. *
  568. * This routine enable view refresh to display or not
  569. *
  570. * @param view_id id of view
  571. * @param enabled enable or not
  572. *
  573. * @retval 0 on succsess else negative errno code.
  574. */
  575. int view_set_refresh_en(uint16_t view_id, bool enabled);
  576. /**
  577. * INTERNAL_HIDDEN @endcond
  578. */
  579. /**
  580. * @brief query view is hidden
  581. *
  582. * @param view_id id of view
  583. *
  584. * @retval the query result
  585. */
  586. bool view_is_hidden(uint16_t view_id);
  587. /**
  588. * @brief query view is visible (even partially) now or not
  589. *
  590. * A view to be visible, must not be hidden, and also partially at least on the screen.
  591. *
  592. * @param view_id id of view
  593. *
  594. * @retval the query result
  595. */
  596. bool view_is_visible(uint16_t view_id);
  597. /**
  598. * @brief Query view is focused or not
  599. *
  600. * @param view_id id of view
  601. *
  602. * @return query result.
  603. */
  604. bool view_is_focused(uint16_t view_id);
  605. /**
  606. * @brief Query view is focused or not
  607. *
  608. * @param view_id id of view
  609. *
  610. * @return query result.
  611. */
  612. bool view_is_paused(uint16_t view_id);
  613. /**
  614. * @brief Query view is layout-inflated or not
  615. *
  616. * @param view_id id of view
  617. *
  618. * @return query result.
  619. */
  620. bool view_is_inflated(uint16_t view_id);
  621. /**
  622. * @brief Query view is scrolling or not
  623. *
  624. * @param view_id id of view
  625. *
  626. * @return query result.
  627. */
  628. bool view_is_scrolling(uint16_t view_id);
  629. /**
  630. * @brief get x coord of position of view
  631. *
  632. * @param view_id id of view
  633. *
  634. * @retval x coord
  635. */
  636. int16_t view_get_x(uint16_t view_id);
  637. /**
  638. * @brief get y coord of position of view
  639. *
  640. * @param view_id id of view
  641. *
  642. * @retval y coord
  643. */
  644. int16_t view_get_y(uint16_t view_id);
  645. /**
  646. * @brief get position of view
  647. *
  648. * @param view_id id of view
  649. * @param x pointer to store x coordinate
  650. * @param y pointer to store y coordinate
  651. *
  652. * @retval 0 on success else negative code
  653. */
  654. int view_get_pos(uint16_t view_id, int16_t *x, int16_t *y);
  655. /**
  656. * @brief get width of view
  657. *
  658. * @param view_id id of view
  659. *
  660. * @retval width on success else negative code
  661. */
  662. int16_t view_get_width(uint16_t view_id);
  663. /**
  664. * @brief get height of view
  665. *
  666. * @param view_id id of view
  667. *
  668. * @retval height on success else negative code
  669. */
  670. int16_t view_get_height(uint16_t view_id);
  671. /**
  672. * @brief get position of view
  673. *
  674. * @param view_id id of view
  675. * @param x pointer to store x coordinate
  676. * @param y pointer to store y coordinate
  677. *
  678. * @retval 0 on success else negative code
  679. */
  680. int view_get_region(uint16_t view_id, ui_region_t *region);
  681. /**
  682. * @brief set position of view
  683. *
  684. * It will stop the gesture scrolling before setting position.
  685. *
  686. * @param view_id id of view
  687. * @param x new x coordinate
  688. * @param y new y coordinate
  689. *
  690. * @retval 0 on success else negative code
  691. */
  692. int view_set_pos(uint16_t view_id, int16_t x, int16_t y);
  693. /**
  694. * @brief set position of view during gesture scrolling
  695. *
  696. * @param view_id id of view
  697. * @param x new x coordinate
  698. * @param y new y coordinate
  699. *
  700. * @retval 0 on success else negative code
  701. */
  702. int view_set_drag_pos(uint16_t view_id, int16_t x, int16_t y);
  703. /**
  704. * @brief set view drag attribute
  705. *
  706. * This routine set view drag attribute. If drag_attribute > 0, it implicitly make the view
  707. * visible, just like view_set_hidden(view_id, false) called.
  708. *
  709. * @param view_id id of view
  710. * @param drag_attribute drag attribute, see enum UI_VIEW_DRAG_ATTRIBUTE
  711. * @param keep_pos if true, keep the positon unchanged, else move the view to the drag position
  712. *
  713. * @retval 0 on succsess else negative errno code.
  714. */
  715. int view_set_drag_attribute(uint16_t view_id, uint8_t drag_attribute, bool keep_pos);
  716. /**
  717. * @brief get view drag attribute
  718. *
  719. * @param view_id id of view
  720. *
  721. * @retval drag attribute if view exist else negative code
  722. */
  723. uint8_t view_get_drag_attribute(uint16_t view_id);
  724. /**
  725. * @brief query view has move attribute (DRAG_ATTRIBUTE_MOVExx)
  726. *
  727. * @param view_id id of view
  728. *
  729. * @retval the query result
  730. */
  731. bool view_has_move_attribute(uint16_t view_id);
  732. /**
  733. * @brief set drag callback of view
  734. *
  735. * The callback will be called when the single dragged finished. During the callback,
  736. * the user can start the animation to some other position.
  737. *
  738. * @param view_id id of view
  739. * @param drag_cb callback for dragging one view, not involved in view switching
  740. *
  741. * @retval 0 on success else negative code
  742. */
  743. int view_set_drag_anim_cb(uint16_t view_id, ui_view_drag_anim_cb_t drag_cb);
  744. /**
  745. * @brief get diplay X resolution
  746. *
  747. * @retval X resolution in pixels
  748. */
  749. int16_t view_manager_get_disp_xres(void);
  750. /**
  751. * @brief get diplay Y resolution
  752. *
  753. * @retval Y resolution in pixels
  754. */
  755. int16_t view_manager_get_disp_yres(void);
  756. /**
  757. * @brief get diplay orientation
  758. *
  759. * @retval X rotation (CW) in degrees
  760. */
  761. uint16_t view_manager_get_disp_rotation(void);
  762. /**
  763. * @brief get dragged view
  764. *
  765. * This routine provide get dragged view.
  766. *
  767. * @param gesture gesture, see enum GESTURE_TYPE
  768. * @param towards_screen store the drag direction, whether dragged close to screen or away from screen.
  769. *
  770. * @retval view id.
  771. */
  772. uint16_t view_manager_get_draggable_view(uint8_t gesture, bool *towards_screen);
  773. /**
  774. * @brief get focused view
  775. *
  776. * This routine provide get focused view
  777. *
  778. * @retval view id of focused view
  779. */
  780. uint16_t view_manager_get_focused_view(void);
  781. /**
  782. * @brief dump the view informations to the console.
  783. *
  784. * @retval N/A.
  785. */
  786. void view_manager_dump(void);
  787. /**
  788. * @brief refocus view pre animation
  789. *
  790. * @param view_id the view that will be focused.
  791. *
  792. * @retval N/A
  793. */
  794. void view_manager_pre_anim_refocus(uint16_t view_id);
  795. /**
  796. * @brief refocus view post animation
  797. *
  798. * @retval N/A
  799. */
  800. void view_manager_post_anim_refocus(void);
  801. /**
  802. * @brief fill the start and stop points of the slide animation
  803. *
  804. * @param view_id the view to take the animation
  805. * @param cfg animation config
  806. * @param animation_type animation type, see enum UI_VIEW_ANIMATION_TYPE
  807. *
  808. * @retval 0 on success else negative code.
  809. */
  810. int view_manager_get_slide_animation_config(uint16_t view_id,
  811. ui_view_anim_cfg_t *cfg, uint8_t animation_type);
  812. /**
  813. * @brief start the view animation on view switching
  814. *
  815. * @param view_id the view to take the animation
  816. * @param last_view_id the related view which will fade out if exists
  817. * @param animation_type animation type, see enum UI_VIEW_ANIMATION_TYPE
  818. * @param cfg animation config
  819. *
  820. * @retval 0 on success else negative code.
  821. */
  822. int view_manager_slide_animation_start(uint16_t view_id,
  823. uint16_t last_view_id, uint8_t animation_type, ui_view_anim_cfg_t *cfg);
  824. /**
  825. * @brief fill the start and stop points of the drag animation
  826. *
  827. * @param view_id the view to take the animation
  828. * @param cfg animation config
  829. * @param runtime pointer to structure input_dev_runtime_t
  830. *
  831. * @retval 0 on success else negative code.
  832. */
  833. int view_manager_get_drag_animation_config(uint16_t view_id,
  834. ui_view_anim_cfg_t *cfg, input_dev_runtime_t *runtime);
  835. /**
  836. * @brief start the view animation caused on single long view dragging
  837. *
  838. * @param view_id the view to take the animation
  839. * @param cfg animation config
  840. *
  841. * @retval 0 on success else negative code.
  842. */
  843. int view_manager_drag_animation_start(uint16_t view_id, ui_view_anim_cfg_t *cfg);
  844. /**
  845. * @brief get current view id
  846. *
  847. * @param N/A
  848. *
  849. * @retval id id of current opertation view
  850. */
  851. uint16_t view_manager_get_current_view_id(void);
  852. /**
  853. * @brief get view entry
  854. *
  855. * @param view_id view id
  856. *
  857. * @retval pointer to view entry
  858. */
  859. view_entry_t * view_manager_get_view_entry(uint16_t view_id);
  860. /**
  861. * @brief call registered callback to do transition effects
  862. *
  863. * @param N/A
  864. *
  865. * @retval N/A
  866. */
  867. void view_manager_transform_views(int abort);
  868. /**
  869. * @brief check if view cache is scrolling
  870. *
  871. * @param N/A
  872. *
  873. * @retval 1: scrolling, 0: stasis
  874. */
  875. bool view_manager_is_scrolling(void);
  876. /**
  877. * @brief set callback
  878. *
  879. * This routine set callback
  880. *
  881. * @param id callback id
  882. * @param callback callback function
  883. *
  884. * @retval 0 on success else negative code.
  885. */
  886. int view_manager_set_callback(uint8_t id, void * callback);
  887. #undef EXTERN
  888. #ifdef __cplusplus
  889. }
  890. #endif
  891. /**
  892. * @} end defgroup system_apis
  893. */
  894. #endif /* __VIEW_MANGER_H__ */