Home
last modified time | relevance | path

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

/lvgl-latest/src/widgets/calendar/
Dlv_calendar.h35 } lv_calendar_date_t; typedef
82 void lv_calendar_set_highlighted_dates(lv_obj_t * obj, lv_calendar_date_t highlighted[], size_t dat…
110 const lv_calendar_date_t * lv_calendar_get_today_date(const lv_obj_t * calendar);
117 const lv_calendar_date_t * lv_calendar_get_showed_date(const lv_obj_t * calendar);
124 lv_calendar_date_t * lv_calendar_get_highlighted_dates(const lv_obj_t * calendar);
140 lv_result_t lv_calendar_get_pressed_date(const lv_obj_t * calendar, lv_calendar_date_t * date);
Dlv_calendar_chinese.h29 lv_calendar_date_t today;
49 const char * lv_calendar_get_day_name(lv_calendar_date_t * gregorian);
56 void lv_calendar_gregorian_to_chinese(lv_calendar_date_t * gregorian_time, lv_calendar_chinese_t * …
Dlv_calendar_private.h35 lv_calendar_date_t today; /**< Date of today */
36 lv_calendar_date_t showed_date; /**< Currently visible month (day is ignored) */
37lv_calendar_date_t * highlighted_dates; /**< Apply different style on these days (pointer to user…
Dlv_calendar.c41 static lv_calendar_date_t gregorian_get_last_month_time(lv_calendar_date_t * time);
42 static lv_calendar_date_t gregorian_get_next_month_time(lv_calendar_date_t * time);
44 lv_calendar_date_t * gregorian_time);
107 void lv_calendar_set_highlighted_dates(lv_obj_t * obj, lv_calendar_date_t highlighted[], size_t dat… in lv_calendar_set_highlighted_dates()
129 lv_calendar_date_t d; in lv_calendar_set_month_shown()
147 lv_calendar_date_t gregorian_time; in lv_calendar_set_month_shown()
226 const lv_calendar_date_t * lv_calendar_get_today_date(const lv_obj_t * obj) in lv_calendar_get_today_date()
234 const lv_calendar_date_t * lv_calendar_get_showed_date(const lv_obj_t * obj) in lv_calendar_get_showed_date()
242 lv_calendar_date_t * lv_calendar_get_highlighted_dates(const lv_obj_t * obj) in lv_calendar_get_highlighted_dates()
258 lv_result_t lv_calendar_get_pressed_date(const lv_obj_t * obj, lv_calendar_date_t * date) in lv_calendar_get_pressed_date()
[all …]
Dlv_calendar_header_dropdown.c133 const lv_calendar_date_t * d; in month_event_cb()
135 lv_calendar_date_t newd = *d; in month_event_cb()
148 const lv_calendar_date_t * d; in year_event_cb()
157 lv_calendar_date_t newd = *d; in year_event_cb()
167 const lv_calendar_date_t * cur_date = lv_calendar_get_showed_date(calendar); in value_changed_event_cb()
Dlv_calendar_header_arrow.c112 const lv_calendar_date_t * d; in month_event_cb()
114 lv_calendar_date_t newd = *d; in month_event_cb()
150 const lv_calendar_date_t * date = lv_calendar_get_showed_date(calendar); in value_changed_event_cb()
Dlv_calendar_chinese.c122 const char * lv_calendar_get_day_name(lv_calendar_date_t * gregorian) in lv_calendar_get_day_name()
172 void lv_calendar_gregorian_to_chinese(lv_calendar_date_t * gregorian_time, lv_calendar_chinese_t * … in lv_calendar_gregorian_to_chinese()
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_calendar.c48 lv_calendar_date_t today; in test_calendar_set_today_date()
55 const lv_calendar_date_t * date_after_test = lv_calendar_get_today_date(g_calendar); in test_calendar_set_today_date()
65 lv_calendar_date_t today; in test_calendar_set_today_date_gui()
86 …static lv_calendar_date_t highlighted_days[3]; /*Only its pointer will be saved so should be… in test_calendar_set_highlighted_dates()
101 …const lv_calendar_date_t * highlighted_days_after_test = lv_calendar_get_highlighted_dates(g_calen… in test_calendar_set_highlighted_dates()
113 …static lv_calendar_date_t highlighted_days[3]; /*Only its pointer will be saved so should be… in test_calendar_set_highlighted_dates_gui()
147 …static lv_calendar_date_t highlighted_days[3]; /*Only its pointer will be saved so should be… in test_calendar_get_highlighted_dates_num()
198 lv_calendar_date_t pressed_date; in test_calendar_get_pressed_date_null()
/lvgl-latest/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-latest/docs/details/widgets/
Dcalendar.rst50 Some functions use the :cpp:struct:`lv_calendar_date_t` type which is a structure
70 :cpp:struct:`lv_calendar_date_t` array and applied to the Calendar by calling
/lvgl-latest/demos/widgets/
Dlv_demo_widgets.c1343 lv_calendar_date_t d; in calendar_event_cb()