Searched refs:day_first (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.7.0/src/extra/widgets/calendar/ |
D | lv_calendar.c | 132 uint8_t day_first = get_day_of_week(d.year, d.month, 1); in lv_calendar_set_showed_date() local 134 for(i = day_first, c = 1; i < act_mo_len + day_first; i++, c++) { in lv_calendar_set_showed_date() 139 for(i = 0, c = prev_mo_len - day_first + 1; i < day_first; i++, c++) { in lv_calendar_set_showed_date() 144 for(i = day_first + act_mo_len, c = 1; i < 6 * 7; i++, c++) { in lv_calendar_set_showed_date() 153 lv_btnmatrix_set_selected_btn(calendar->btnm, day_first + 7); in lv_calendar_set_showed_date() 385 uint8_t day_first = get_day_of_week(calendar->showed_date.year, calendar->showed_date.month, 1); in highlight_update() local 390 … lv_btnmatrix_set_btn_ctrl(calendar->btnm, calendar->highlighted_dates[i].day - 1 + day_first + 7, in highlight_update() 397 …lv_btnmatrix_set_btn_ctrl(calendar->btnm, calendar->today.day - 1 + day_first + 7, LV_CALENDAR_CTR… in highlight_update()
|