luat_lvgl_dropdown_ex.h 403 B

1234567891011121314
  1. #ifndef LUAT_LVGL_DROPDOWN_EX
  2. #define LUAT_LVGL_DROPDOWN_EX
  3. #include "luat_base.h"
  4. #include "lvgl.h"
  5. int luat_lv_dropdown_get_selected_str(lua_State *L);
  6. int luat_lv_dropdown_set_symbol(lua_State *L);
  7. #define LUAT_LV_DROPDOWN_EX_RLT {"dropdown_get_selected_str", ROREG_FUNC(luat_lv_dropdown_get_selected_str)},\
  8. {"dropdown_set_symbol", ROREG_FUNC(luat_lv_dropdown_set_symbol)},\
  9. #endif