view_stack.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file view stack interface
  8. */
  9. #ifndef FRAMEWORK_DISPLAY_INCLUDE_VIEW_STACK_H_
  10. #define FRAMEWORK_DISPLAY_INCLUDE_VIEW_STACK_H_
  11. #include <stdint.h>
  12. #include <stdbool.h>
  13. #include "view_cache.h"
  14. /**
  15. * @defgroup view_stack_apis View Stack APIs
  16. * @ingroup system_apis
  17. * @{
  18. */
  19. /**
  20. * @typedef view_group_scroll_cb_t
  21. * @brief Callback to notify view scroll result
  22. */
  23. typedef void (*view_group_scroll_cb_t)(uint16_t view_id);
  24. /**
  25. * @typedef view_group_focus_cb_t
  26. * @brief Callback to notify view focus changed
  27. */
  28. typedef void (*view_group_focus_cb_t)(uint16_t view_id, bool focus);
  29. /**
  30. * @struct view_group_dsc
  31. * @brief Structure to describe view group layout
  32. */
  33. typedef struct view_group_dsc {
  34. const uint16_t * vlist; /* view id list */
  35. const void ** plist; /* view presenter list */
  36. uint8_t num; /* number of view */
  37. uint8_t idx; /* index of focused view */
  38. /* view scroll result callback */
  39. view_group_scroll_cb_t scroll_cb;
  40. /* view focus changed callback */
  41. view_group_focus_cb_t focus_cb;
  42. } view_group_dsc_t;
  43. /**
  44. * @brief Initialize the view stack
  45. *
  46. * @retval 0 on success else negative code.
  47. */
  48. int view_stack_init(void);
  49. /**
  50. * @brief Deinitialize the view stack
  51. *
  52. * @retval 0 on success else negative code.
  53. */
  54. void view_stack_deinit(void);
  55. /**
  56. * @brief Get the number of elements of the view stack
  57. *
  58. * @retval view id on success else negative code.
  59. */
  60. uint8_t view_stack_get_num(void);
  61. /**
  62. * @brief Query whether view stack is empty
  63. *
  64. * @retval query result.
  65. */
  66. static inline bool view_stack_is_empty(void)
  67. {
  68. return view_stack_get_num() == 0;
  69. }
  70. /**
  71. * @brief Get the top (focused) view id of the view stack
  72. *
  73. * @retval view id on success else negative code.
  74. */
  75. uint16_t view_stack_get_top(void);
  76. /**
  77. * @brief Get the top view cache descriptor of the view stack
  78. *
  79. * @retval the top view cache descriptor if exists else NULL.
  80. */
  81. const view_cache_dsc_t * view_stack_get_top_cache(void);
  82. /**
  83. * @brief on the basis of level_id get view_id
  84. * @retval view id on success else negative code.
  85. */
  86. uint16_t view_stack_level_get_view_id(uint16_t level_id);
  87. /**
  88. * @brief Clean the view stack.
  89. *
  90. * @retval 0 on success else negative code.
  91. */
  92. void view_stack_clean(void);
  93. /**
  94. * @brief Pop all elements until the first from the view stack
  95. *
  96. * @retval 0 on success else negative code.
  97. */
  98. int view_stack_pop_home(void);
  99. #define view_stack_pop_until_first view_stack_pop_home
  100. /**
  101. * @brief Pop one element except the first from the view stack
  102. *
  103. * @retval 0 on success else negative code.
  104. */
  105. int view_stack_pop(void);
  106. /**
  107. * @brief Push view cache to the view stack
  108. *
  109. * @param dsc pointer to an initialized structure view_cache_dsc
  110. * @param view_id initial focused view id, must in the vlist of dsc
  111. *
  112. * @retval 0 on success else negative code.
  113. */
  114. int view_stack_push_cache(const view_cache_dsc_t *dsc, uint16_t view_id);
  115. /**
  116. * @brief Push view cache to the view stack
  117. *
  118. * @param dsc pointer to an initialized structure view_cache_dsc
  119. * @param focus_view_id initial focused view id, must in the vlist of dsc
  120. * @param main_view_id initial central main view. used only if init_view is cross view
  121. *
  122. * @retval 0 on success else negative code.
  123. */
  124. int view_stack_push_cache2(const view_cache_dsc_t *dsc,
  125. uint16_t focus_view_id, uint16_t main_view_id);
  126. /**
  127. * @brief Push view group to the view stack
  128. *
  129. * @param dsc pointer to an initialized structure view_group_dsc
  130. *
  131. * @retval 0 on success else negative code.
  132. */
  133. int view_stack_push_group(const view_group_dsc_t *dsc);
  134. /**
  135. * @brief Push view to the view stack
  136. *
  137. * @param view_id id of view
  138. * @param presenter presenter of view
  139. *
  140. * @retval 0 on success else negative code.
  141. */
  142. int view_stack_push_view(uint16_t view_id, const void *presenter);
  143. /**
  144. * @brief Jump to the new view cache (do not push)
  145. *
  146. * @param dsc pointer to an initialized structure view_cache_dsc
  147. * @param view_id initial focused view id, must in the vlist of dsc
  148. *
  149. * @retval 0 on success else negative code.
  150. */
  151. int view_stack_jump_cache(const view_cache_dsc_t *dsc, uint16_t view_id);
  152. /**
  153. * @brief Jump to the new view cache (do not push)
  154. *
  155. * @param dsc pointer to an initialized structure view_cache_dsc
  156. * @param focus_view_id initial focused view id, must in the vlist of dsc
  157. * @param main_view_id initial central main view. used only if init_view is cross view
  158. *
  159. * @retval 0 on success else negative code.
  160. */
  161. int view_stack_jump_cache2(const view_cache_dsc_t *dsc,
  162. uint16_t focus_view_id, uint16_t main_view_id);
  163. /**
  164. * @brief Jump to the new view group (do not push)
  165. *
  166. * @param dsc pointer to an initialized structure view_group_dsc
  167. *
  168. * @retval 0 on success else negative code.
  169. */
  170. int view_stack_jump_group(const view_group_dsc_t *dsc);
  171. /**
  172. * @brief Jump to the new view (do not push)
  173. *
  174. * @param view_id id of view
  175. * @param presenter presenter of view
  176. *
  177. * @retval 0 on success else negative code.
  178. */
  179. int view_stack_jump_view(uint16_t view_id, const void *presenter);
  180. /**
  181. * @brief Dump the view stack
  182. *
  183. * @retval N/A.
  184. */
  185. void view_stack_dump(void);
  186. /**
  187. * @brief View group change focused view index
  188. *
  189. * @retval N/A.
  190. */
  191. static inline void view_group_set_focus_idx(view_group_dsc_t *dsc, uint8_t idx)
  192. {
  193. dsc->idx = idx;
  194. }
  195. /**
  196. * @} end defgroup system_apis
  197. */
  198. #endif /* FRAMEWORK_DISPLAY_INCLUDE_VIEW_STACK_H_ */