Searched refs:day (Results 1 – 10 of 10) sorted by relevance
/lvgl-3.7.0/src/extra/widgets/calendar/ |
D | lv_calendar.c | 33 static uint8_t get_day_of_week(uint32_t year, uint32_t month, uint32_t day); 84 void lv_calendar_set_today_date(lv_obj_t * obj, uint32_t year, uint32_t month, uint32_t day) in lv_calendar_set_today_date() argument 91 calendar->today.day = day; in lv_calendar_set_today_date() 116 calendar->showed_date.day = 1; in lv_calendar_set_showed_date() 121 d.day = calendar->showed_date.day; in lv_calendar_set_showed_date() 220 date->day = 0; in lv_calendar_get_pressed_date() 226 if(txt[1] == 0) date->day = txt[0] - '0'; in lv_calendar_get_pressed_date() 227 else date->day = (txt[0] - '0') * 10 + (txt[1] - '0'); in lv_calendar_get_pressed_date() 247 calendar->today.day = 1; in lv_calendar_constructor() 251 calendar->showed_date.day = 1; in lv_calendar_constructor() [all …]
|
D | lv_calendar.h | 34 int8_t day; /** 1..31*/ member 74 void lv_calendar_set_today_date(lv_obj_t * obj, uint32_t year, uint32_t month, uint32_t day);
|
/lvgl-3.7.0/examples/widgets/calendar/ |
D | lv_example_calendar_1.c | 12 LV_LOG_USER("Clicked date: %02d.%02d.%d", date.day, date.month, date.year); in event_handler() 31 highlighted_days[0].day = 6; in lv_example_calendar_1() 35 highlighted_days[1].day = 11; in lv_example_calendar_1() 39 highlighted_days[2].day = 22; in lv_example_calendar_1()
|
D | lv_example_calendar_1.py | 9 calendar.set_today_date(date.year, date.month, date.day) 10 print("Clicked date: %02d.%02d.%02d"%(date.day, date.month, date.year))
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | calendar.md | 10 - highlight the current day (today) 22 …- `LV_PART_ITEMS` Refers to the dates and day names. Button matrix control flags are set to differ… 23 - day names have no border, no background and drawn with a gray color 31 Some functions use the `lv_calendar_date_t` type which is a structure with `year`, `month` and `day… 34 …calendar_set_today_date(calendar, year, month, day)` function. `month` needs to be in 1..12 range … 46 Only the pointer of the day names is saved so the elements should be static, global or constant var…
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.h | 423 unsigned day; /*1-31*/ member
|
D | lodepng.c | 4613 info->time.day = data[3]; in readChunk_tIME() 5308 chunk[11] = (unsigned char)time->day; in addChunk_tIME()
|
/lvgl-3.7.0/demos/widgets/ |
D | lv_demo_widgets.c | 1274 lv_snprintf(buf, sizeof(buf), "%02d.%02d.%d", d.day, d.month, d.year); in calendar_event_cb()
|
/lvgl-3.7.0/docs/_static/css/ |
D | fontawesome.min.css | 5 …ore{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f7…
|
/lvgl-3.7.0/docs/ |
D | CHANGELOG.md | 1180 - fix(calendar) fix calculation today and highlighted day [`8f0b5ab`](https://github.com/lvgl/lvgl/…
|