view_cache.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file view cache interface
  8. */
  9. #ifndef FRAMEWORK_DISPLAY_INCLUDE_VIEW_CACHE_H_
  10. #define FRAMEWORK_DISPLAY_INCLUDE_VIEW_CACHE_H_
  11. #include <stdint.h>
  12. /**
  13. * @defgroup view_cache_apis View Cache APIs
  14. * @ingroup system_apis
  15. * @{
  16. */
  17. enum VICE_CACHE_SLIDE_TYPE {
  18. LANDSCAPE,
  19. PORTRAIT,
  20. };
  21. enum VICE_CACHE_EVENT_TYPE {
  22. /* For serial load only */
  23. VIEW_CACHE_EVT_LOAD_BEGIN,
  24. VIEW_CACHE_EVT_LOAD_END,
  25. VIEW_CACHE_EVT_LOAD_CANCEL,
  26. };
  27. /**
  28. * @typedef view_cache_focus_cb_t
  29. * @brief Callback to notify view focus changed
  30. */
  31. typedef void (*view_cache_focus_cb_t)(uint16_t view_id, bool focus);
  32. /**
  33. * @typedef view_cache_monitor_cb_t
  34. * @brief Callback to notify view msg, like scroll begin/end
  35. */
  36. typedef void (*view_cache_monitor_cb_t)(uint16_t view_id, uint8_t msg_id);
  37. /**
  38. * @typedef view_cache_event_cb_t
  39. * @brief Callback to notify view cache event
  40. */
  41. typedef void (*view_cache_event_cb_t)(uint8_t event);
  42. /**
  43. * @struct view_cache_dsc
  44. * @brief Structure to describe view cache
  45. */
  46. typedef struct view_cache_dsc {
  47. uint8_t type; /* enum SLIDE_VIEW_TYPE */
  48. uint8_t rotate : 1; /* rotate sliding mode, only when 'num' >= 3 */
  49. uint8_t serial_load : 1; /* serial loading the views */
  50. uint8_t num; /* number of views in vlist */
  51. const uint16_t *vlist; /* main view list */
  52. const uint8_t *vlist_create_flags; /* main view extra flags, UI_CREATE_FLAG_POST_ON_PAINT, etc. */
  53. const void **plist; /* main view presenter list */
  54. /* Limit cross view sliding only when the view in vlist focused.
  55. * Set VIEW_INVALID_ID (0) to ignore the limit.
  56. */
  57. uint16_t cross_attached_view;
  58. /* cross view list and their presenter list.
  59. * set VIEW_INVALID_ID (0) to the corresponding index if the view does not exist.
  60. *
  61. * For LANDSCAPE, [0] is the UP view, [1] is the DOWN view
  62. * For PORTRAIT, [0] is the LEFT view, [1] is the RIGHT view
  63. */
  64. uint16_t cross_vlist[2];
  65. const void *cross_plist[2];
  66. /* view focus changed callback */
  67. view_cache_focus_cb_t focus_cb;
  68. /* view monitor callback */
  69. view_cache_monitor_cb_t monitor_cb;
  70. /* event callback */
  71. view_cache_event_cb_t event_cb;
  72. } view_cache_dsc_t;
  73. /**
  74. * @brief Initialize the view cache
  75. *
  76. * @param dsc pointer to an initialized structure view_cache_dsc
  77. * @param init_view initial focused view in vlist or cross_vlist
  78. *
  79. * @retval 0 on success else negative code.
  80. */
  81. int view_cache_init(const view_cache_dsc_t *dsc, uint16_t init_view);
  82. /**
  83. * @brief Initialize the view cache
  84. *
  85. * @param dsc pointer to an initialized structure view_cache_dsc
  86. * @param init_focus_view initial focused view in vlist or cross_vlist
  87. * @param init_main_view initial central main view. used only if init_view is cross view
  88. *
  89. * @retval 0 on success else negative code.
  90. */
  91. int view_cache_init2(const view_cache_dsc_t *dsc,
  92. uint16_t init_focus_view, uint16_t init_main_view);
  93. /**
  94. * @brief Deinitialize the view cache
  95. *
  96. * @retval 0 on success else negative code.
  97. */
  98. int view_cache_deinit(void);
  99. /**
  100. * @brief Get focused view id
  101. *
  102. * @retval id of focused view.
  103. */
  104. uint16_t view_cache_get_focus_view(void);
  105. /**
  106. * @brief Get focused main view id
  107. *
  108. * @retval id of focused view.
  109. */
  110. uint16_t view_cache_get_focus_main_view(void);
  111. /**
  112. * @brief Set focus to view
  113. *
  114. * Must not called during view sliding or when cross views are focused
  115. *
  116. * @view_id id of focus view, must in the vlist of view cache
  117. *
  118. * @retval 0 on success else negative code.
  119. */
  120. int view_cache_set_focus_view(uint16_t view_id);
  121. /**
  122. * @brief Shrink the view cache
  123. *
  124. * The view cache will be restored when some view in view cache get focused.
  125. *
  126. * @retval 0 on success else negative code.
  127. */
  128. int view_cache_shrink(void);
  129. /**
  130. * @brief Dump the view cache
  131. *
  132. * @retval 0 on success else negative code.
  133. */
  134. void view_cache_dump(void);
  135. /**
  136. * @brief wait last_focus_cb to execute
  137. *
  138. */
  139. void view_cache_wait_last_focus_cb(void);
  140. /**
  141. * @} end defgroup system_apis
  142. */
  143. #endif /* FRAMEWORK_DISPLAY_INCLUDE_VIEW_CACHE_H_ */