/lvgl-latest/examples/widgets/table/ |
D | lv_example_table_1.c | 61 lv_obj_add_event_cb(table, draw_part_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_example_table_1()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_3.c | 29 lv_obj_add_event_cb(chart, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_example_chart_3()
|
D | lv_example_chart_7.c | 44 lv_obj_add_event_cb(chart, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_example_chart_7()
|
D | lv_example_chart_8.c | 82 lv_obj_add_event_cb(stacked_area_chart.obj, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_example_chart_8()
|
D | lv_example_chart_2.c | 114 lv_obj_add_event_cb(chart1, draw_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_example_chart_2()
|
/lvgl-latest/examples/widgets/btnmatrix/ |
D | lv_example_btnmatrix_2.c | 8 if(code == LV_EVENT_DRAW_PART_BEGIN) { in event_cb()
|
/lvgl-latest/src/extra/widgets/chart/ |
D | lv_chart.c | 795 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_div_lines() 826 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_div_lines() 854 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_div_lines() 994 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_series_line() 1027 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_series_line() 1142 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_series_scatter() 1171 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_series_scatter() 1257 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_series_bar() 1353 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_cursors() 1369 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_cursors() [all …]
|
/lvgl-latest/docs/widgets/extra/ |
D | led.md | 23 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` is sent for the following types:
|
D | meter.md | 62 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` is sent for the following types:
|
/lvgl-latest/src/core/ |
D | lv_event.h | 63 …LV_EVENT_DRAW_PART_BEGIN, /**< Starting to draw a part. The event parameter is `lv_obj_draw_dsc… enumerator
|
D | lv_obj.c | 550 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_dsc); in lv_obj_draw() 623 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_dsc); in lv_obj_draw() 653 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_dsc); in draw_scrollbar() 659 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_dsc); in draw_scrollbar()
|
D | lv_event.c | 289 if(e->code == LV_EVENT_DRAW_PART_BEGIN || in lv_event_get_draw_part_dsc() 507 case LV_EVENT_DRAW_PART_BEGIN: in event_is_bubbled()
|
/lvgl-latest/src/widgets/ |
D | lv_slider.c | 376 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_knob() 385 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_knob() 406 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_knob()
|
D | lv_bar.c | 398 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_indic() 418 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_indic()
|
D | lv_checkbox.c | 241 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in lv_checkbox_draw()
|
D | lv_arc.c | 670 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in lv_arc_draw() 695 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in lv_arc_draw() 716 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in lv_arc_draw()
|
/lvgl-latest/src/extra/widgets/meter/ |
D | lv_meter.c | 369 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_arcs() 513 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_ticks_and_labels() 533 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_ticks_and_labels() 595 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_needles() 621 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in draw_needles()
|
/lvgl-latest/docs/widgets/core/ |
D | bar.md | 32 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` are sent for the following parts:
|
D | checkbox.md | 35 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` are sent for the following types:
|
D | slider.md | 37 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` are sent for the following parts.
|
D | table.md | 50 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` are sent for the following types:
|
D | arc.md | 73 - `LV_EVENT_DRAW_PART_BEGIN` and `LV_EVENT_DRAW_PART_END` are sent with the following types:
|
/lvgl-latest/src/extra/widgets/led/ |
D | lv_led.c | 215 lv_event_send(obj, LV_EVENT_DRAW_PART_BEGIN, &part_draw_dsc); in lv_led_event()
|
/lvgl-latest/tests/src/test_cases/ |
D | test_table.c | 155 lv_obj_add_event_cb(table, draw_part_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in test_table_rendering()
|
/lvgl-latest/src/extra/widgets/calendar/ |
D | lv_calendar.c | 278 lv_obj_add_event_cb(calendar->btnm, draw_part_begin_event_cb, LV_EVENT_DRAW_PART_BEGIN, NULL); in lv_calendar_constructor()
|