Home
last modified time | relevance | path

Searched refs:lv_calendar_date_t (Results 1 – 7 of 7) sorted by relevance

/lvgl-3.7.0/src/extra/widgets/calendar/
Dlv_calendar.h35 } lv_calendar_date_t; typedef
42 lv_calendar_date_t today; /*Date of today*/
43 lv_calendar_date_t showed_date; /*Currently visible month (day is ignored)*/
44 lv_calendar_date_t *
91 void lv_calendar_set_highlighted_dates(lv_obj_t * obj, lv_calendar_date_t highlighted[], uint16_t d…
119 const lv_calendar_date_t * lv_calendar_get_today_date(const lv_obj_t * calendar);
126 const lv_calendar_date_t * lv_calendar_get_showed_date(const lv_obj_t * calendar);
133 lv_calendar_date_t * lv_calendar_get_highlighted_dates(const lv_obj_t * calendar);
148 lv_res_t lv_calendar_get_pressed_date(const lv_obj_t * calendar, lv_calendar_date_t * date);
Dlv_calendar_header_dropdown.c144 const lv_calendar_date_t * d; in month_event_cb()
146 lv_calendar_date_t newd = *d; in month_event_cb()
159 const lv_calendar_date_t * d; in year_event_cb()
161 lv_calendar_date_t newd = *d; in year_event_cb()
178 const lv_calendar_date_t * cur_date = lv_calendar_get_showed_date(calendar); in value_changed_event_cb()
Dlv_calendar_header_arrow.c108 const lv_calendar_date_t * d; in month_event_cb()
110 lv_calendar_date_t newd = *d; in month_event_cb()
143 const lv_calendar_date_t * cur_date = lv_calendar_get_showed_date(calendar); in value_changed_event_cb()
Dlv_calendar.c96 void lv_calendar_set_highlighted_dates(lv_obj_t * obj, lv_calendar_date_t highlighted[], uint16_t d… in lv_calendar_set_highlighted_dates()
118 lv_calendar_date_t d; in lv_calendar_set_showed_date()
179 const lv_calendar_date_t * lv_calendar_get_today_date(const lv_obj_t * obj) in lv_calendar_get_today_date()
187 const lv_calendar_date_t * lv_calendar_get_showed_date(const lv_obj_t * obj) in lv_calendar_get_showed_date()
195 lv_calendar_date_t * lv_calendar_get_highlighted_dates(const lv_obj_t * obj) in lv_calendar_get_highlighted_dates()
211 lv_res_t lv_calendar_get_pressed_date(const lv_obj_t * obj, lv_calendar_date_t * date) in lv_calendar_get_pressed_date()
/lvgl-3.7.0/examples/widgets/calendar/
Dlv_example_calendar_1.c10 lv_calendar_date_t date; in event_handler()
28 …static lv_calendar_date_t highlighted_days[3]; /*Only its pointer will be saved so should be… in lv_example_calendar_1()
/lvgl-3.7.0/docs/widgets/extra/
Dcalendar.md31 Some functions use the `lv_calendar_date_t` type which is a structure with `year`, `month` and `day…
41 The list of highlighted dates should be stored in a `lv_calendar_date_t` array loaded by `lv_calend…
/lvgl-3.7.0/demos/widgets/
Dlv_demo_widgets.c1271 lv_calendar_date_t d; in calendar_event_cb()