msgbox_cache.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef FRAMEWORK_DISPLAY_INCLUDE_MSGBOX_H_
  7. #define FRAMEWORK_DISPLAY_INCLUDE_MSGBOX_H_
  8. #include <errno.h>
  9. #include <ui_manager.h>
  10. /**
  11. * @typedef msgbox_popup_cb_t
  12. * @brief Callback to popup a specific msgbox
  13. *
  14. * This callback should return the GUI handle of the msgbox.
  15. * For LVGL, it is the root object of the msgbox widgets.
  16. *
  17. * @param msgbox_id Message box ID.
  18. * @param msg_id Message ID, see @enum UI_MSG_ID.
  19. * @param msg_data Message data.
  20. * For MSG_MSGBOX_POPUP, this is the root/parent handle to attached
  21. * For MSG_MSGBOX_PAINT, this is the exact message data passed by msgbox_cache_paint().
  22. * For MSG_MSGBOX_CLOSE, this is the window handle returned by MSG_MSGBOX_POPUP.
  23. * @param user_data user data
  24. *
  25. * @return the GUI handle of the msgbox if err == 0 else NULL
  26. */
  27. typedef void * (*msgbox_popup_cb_t)(uint16_t msgbox_id, uint8_t msg_id, void *msg_data, void *user_data);
  28. /**
  29. * @typedef msgbox_handler_t
  30. * @brief Callback to popup a specific msgbox
  31. *
  32. * This callback should return the GUI handle of the msgbox.
  33. * For LVGL, it is the root object of the msgbox widgets.
  34. *
  35. * @param msgbox_id Message box ID.
  36. * @param msg_id Message ID, see @enum UI_MSG_ID.
  37. * @param msg_data Message data.
  38. * For MSG_MSGBOX_POPUP, this is the exact user_data passed by msgbox_cache_popup().
  39. * For MSG_MSGBOX_CANCEL, this is the exact user_data passed by msgbox_cache_popup().
  40. * For MSG_MSGBOX_PAINT, this is the exact user_data passed by msgbox_cache_paint().
  41. * For MSG_MSGBOX_CLOSE, this is NULL so far.
  42. * @param hwnd The window handle which the msgbox is attached to. For LVGL, it is a pointer
  43. * to structure lv_obj_t, user can assign user_data of it by lv_obj_set_user_data().
  44. * Available for MSG_MSGBOX_POPUP, MSG_MSGBOX_PAINT and MSG_MSGBOX_CLOSE.
  45. *
  46. * @return 0 on success else negative error code
  47. */
  48. typedef int (*msgbox_handler_t)(uint16_t msgbox_id, uint8_t msg_id, void * msg_data, void * hwnd);
  49. /**
  50. * @struct msgbox_dsc
  51. * @brief Structure to describe msgbox
  52. */
  53. typedef struct msgbox_dsc {
  54. uint16_t id;
  55. uint8_t order;
  56. uint8_t __pad[1];
  57. /*
  58. * Initialize either popup_cb or handler, not required both.
  59. * msgbox cache will always invoke handler if exist, otherwise popup_cb.
  60. */
  61. msgbox_popup_cb_t popup_cb; /* deprecated variable */
  62. msgbox_handler_t handler;
  63. } msgbox_dsc_t;
  64. #ifdef CONFIG_LVGL
  65. /**
  66. * @brief Initialize the msgbox cache
  67. *
  68. * @param ids array of msgbox ids
  69. * @param cbs array of msgbox popup callback
  70. * @param num number of msgbox ids
  71. *
  72. * @retval 0 on success else negative code.
  73. */
  74. int msgbox_cache_init(const msgbox_dsc_t *dsc, uint8_t num);
  75. /**
  76. * @brief Deinitialize the msgbox cache
  77. *
  78. * @retval N/A.
  79. */
  80. void msgbox_cache_deinit(void);
  81. /**
  82. * @brief Enable msgbox popup or not
  83. *
  84. * @retval N/A.
  85. */
  86. void msgbox_cache_set_en(bool en);
  87. /**
  88. * @brief Popup a msgbox
  89. *
  90. * @param id msgbox id
  91. * @param user_data user data
  92. *
  93. * @retval 0 on success else negative code.
  94. */
  95. int msgbox_cache_popup(uint16_t id, void * user_data);
  96. /**
  97. * @brief Popup a msgbox
  98. *
  99. * @param id msgbox id. CLose all if set to MSGBOX_ID_ALL
  100. * @param bsync synchronous flag
  101. *
  102. * @retval 0 on success else negative code.
  103. */
  104. int msgbox_cache_close(uint16_t id, bool bsync);
  105. /**
  106. * @brief Paint a msgbox
  107. *
  108. * @param id msgbox id
  109. * @param user_data user data
  110. *
  111. * @retval 0 on success else negative code.
  112. */
  113. int msgbox_cache_paint(uint16_t id, void * user_data);
  114. /**
  115. * @brief Get number of popups at present
  116. *
  117. * @retval number of popups.
  118. */
  119. uint8_t msgbox_cache_num_popup_get(void);
  120. /**
  121. * @brief Get the top most msgbox ID
  122. *
  123. * @retval the top most msgbox ID.
  124. */
  125. uint16_t msgbox_cache_get_top(void);
  126. /**
  127. * @brief Dump popups
  128. *
  129. * @retval N/A
  130. */
  131. void msgbox_cache_dump(void);
  132. #else /* CONFIG_LVGL */
  133. static inline int msgbox_cache_init(const msgbox_dsc_t *dsc, uint8_t num)
  134. {
  135. return -ENOSYS;
  136. }
  137. static inline void msgbox_cache_deinit(void) {}
  138. static inline void msgbox_cache_set_en(bool en) {}
  139. static inline int msgbox_cache_popup(uint16_t id, void *user_data) { return -ENOSYS; }
  140. static inline int msgbox_cache_close(uint16_t id, bool bsync) { return -ENOSYS; }
  141. static inline int msgbox_cache_paint(uint16_t id, uint32_t reason) { return -ENOSYS; }
  142. static inline uint8_t msgbox_cache_num_popup_get(void) { return 0; }
  143. static inline void msgbox_cache_dump(void) { }
  144. #endif /* CONFIG_LVGL */
  145. #endif /* FRAMEWORK_DISPLAY_INCLUDE_MSGBOX_H_ */