lvgl_virtual_display.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_LVGL_VIRTUAL_DISPLAY_H
  7. #define FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_LVGL_VIRTUAL_DISPLAY_H
  8. #include <ui_surface.h>
  9. #include <lvgl/lvgl.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief Create a lvgl virtual display
  15. *
  16. * The requested pixel format must have the same color depth as LV_COLOR_DEPTH,
  17. * so no color transform is required between lvgl and the display surface.
  18. *
  19. * @param surface pointer to the display surface structure
  20. *
  21. * @return pointer to the created display; NULL if failed.
  22. */
  23. lv_disp_t *lvgl_virtual_display_create(surface_t *surface);
  24. /**
  25. * @brief Destroy a lvgl virtual display
  26. *
  27. * @param disp pointer to a lvgl display
  28. *
  29. * @return N/A
  30. */
  31. void lvgl_virtual_display_destroy(lv_disp_t *disp);
  32. /**
  33. * @brief Set a lvgl virtual display as default display
  34. *
  35. * Set display as default does not mean it is focuesd and has input events.
  36. * It is just for convenience of LVGL user, like calling lv_scr_act().
  37. *
  38. * @param disp pointer to a lvgl display
  39. *
  40. * @retval 0 on success else negative errno code.
  41. */
  42. int lvgl_virtual_display_set_default(lv_disp_t *disp);
  43. /**
  44. * @brief Focus on a lvgl virtual display
  45. *
  46. * @param disp pointer to a lvgl display
  47. * @param reset_indev should reset the indev or not
  48. *
  49. * @retval 0 on success else negative errno code.
  50. */
  51. int lvgl_virtual_display_set_focus(lv_disp_t *disp, bool reset_indev);
  52. /**
  53. * @brief Get display workq for delayed flush
  54. *
  55. * @retval pointer to workq.
  56. */
  57. os_work_q * lvgl_display_get_flush_workq(void);
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif /* FRAMEWORK_DISPLAY_LIBDISPLAY_LVGL_LVGL_VIRTUAL_DISPLAY_H */