/lvgl-3.7.0/src/core/ |
D | lv_indev.c | 221 void lv_indev_get_point(const lv_indev_t * indev, lv_point_t * point) in lv_indev_get_point() argument 224 point->x = 0; in lv_indev_get_point() 225 point->y = 0; in lv_indev_get_point() 229 point->x = -1; in lv_indev_get_point() 230 point->y = -1; in lv_indev_get_point() 233 point->x = indev->proc.types.pointer.act_point.x; in lv_indev_get_point() 234 point->y = indev->proc.types.pointer.act_point.y; in lv_indev_get_point() 265 void lv_indev_get_vect(const lv_indev_t * indev, lv_point_t * point) in lv_indev_get_vect() argument 267 point->x = 0; in lv_indev_get_vect() 268 point->y = 0; in lv_indev_get_vect() [all …]
|
D | lv_indev.h | 99 void lv_indev_get_point(const lv_indev_t * indev, lv_point_t * point); 138 void lv_indev_get_vect(const lv_indev_t * indev, lv_point_t * point); 166 lv_obj_t * lv_indev_search_obj(lv_obj_t * obj, lv_point_t * point);
|
D | lv_event.h | 120 …const lv_point_t * point; /**< A point relative to screen to check if it can click the object or… member
|
D | lv_obj_pos.h | 417 bool lv_obj_hit_test(struct _lv_obj_t * obj, const lv_point_t * point);
|
D | lv_obj_pos.c | 949 bool lv_obj_hit_test(lv_obj_t * obj, const lv_point_t * point) in lv_obj_hit_test() argument 956 bool res = _lv_area_is_point_on(&a, point, 0); in lv_obj_hit_test() 961 hit_info.point = point; in lv_obj_hit_test()
|
/lvgl-3.7.0/docs/widgets/extra/ |
D | chart.md | 32 - `LV_CHART_TYPE_SCATTER` - X/Y chart drawing point's and lines between the points. . 60 2. Use `lv_chart_set_value_by_id(chart, ser, id, value)` where `id` is the index of the point you w… 64 Use `LV_CHART_POINT_NONE` as value to make the library skip drawing that point, column, or line seg… 95 ### Override default start point for series 96 If you want a plot to start from a point other than the default which is `point[0]` of the series, … 121 `lv_chart_set_cursor_pos(chart, cursor, &point)` sets the position of the cursor. 122 `pos` is a pointer to an `lv_point_t` variable. E.g. `lv_point_t point = {10, 20};`. If the chart i… 124 … id, &point_out)` gets the coordinate of a given point. It's useful to place the cursor at a given… 126 …d)` sticks the cursor at a point. If the point's position changes (new value or scrolling) the cur… 129 …ED` Sent when a new point is clicked pressed. `lv_chart_get_pressed_point(chart)` returns the zer… [all …]
|
D | spinbox.md | 26 `separator_position` is the number of digits before the decimal point. If 0, no decimal point is di…
|
/lvgl-3.7.0/tests/src/test_cases/ |
D | test_slider.c | 179 lv_point_t point = { in test_normal_mode_slider_hit_test() local 186 .point = &point in test_normal_mode_slider_hit_test() 199 lv_point_t point = { in test_slider_range_event_hit_test() local 206 .point = &point in test_slider_range_event_hit_test()
|
/lvgl-3.7.0/examples/porting/ |
D | lv_port_indev_template.c | 204 data->point.x = last_x; 205 data->point.y = last_y; 239 mouse_get_xy(&data->point.x, &data->point.y); 283 mouse_get_xy(&data->point.x, &data->point.y);
|
/lvgl-3.7.0/src/extra/others/monkey/ |
D | lv_monkey.c | 143 data->point = monkey->indev_data.point; in lv_monkey_read_cb() 164 data->point.x = (lv_coord_t)lv_monkey_random(0, LV_HOR_RES - 1); in lv_monkey_timer_cb() 165 data->point.y = (lv_coord_t)lv_monkey_random(0, LV_VER_RES - 1); in lv_monkey_timer_cb()
|
/lvgl-3.7.0/examples/widgets/chart/ |
D | lv_example_chart_8.c | 99 for(int point = 0; point < 10; point++) { in lv_example_chart_8() local
|
D | index.rst | 33 Show cursor on the clicked point
|
D | lv_example_chart_8.py | 96 for point in range(10):
|
/lvgl-3.7.0/tests/src/ |
D | lv_test_indev.c | 21 data->point.x = x_act; in lv_test_mouse_read_cb() 22 data->point.y = y_act; in lv_test_mouse_read_cb()
|
/lvgl-3.7.0/src/hal/ |
D | lv_hal_indev.c | 172 data->point.x = indev->proc.types.pointer.last_raw_point.x; in _lv_indev_read() 173 data->point.y = indev->proc.types.pointer.last_raw_point.y; in _lv_indev_read()
|
D | lv_hal_indev.h | 76 lv_point_t point; /**< For LV_INDEV_TYPE_POINTER the currently pressed point*/ member
|
/lvgl-3.7.0/examples/arduino/LVGL_Arduino/ |
D | LVGL_Arduino.ino | 60 data->point.x = touchX; 61 data->point.y = touchY;
|
/lvgl-3.7.0/env_support/cmsis-pack/ |
D | README.md | 96 /*A very simple theme that is a good starting point for a custom theme*/ 175 Update the '**PATH_TO_ADD**' to point to the installation folders of **7Zip** and **xmllint**.
|
/lvgl-3.7.0/docs/widgets/core/ |
D | line.md | 18 By default, the *y == 0* point is in the top of the object. It might be counter-intuitive in some c…
|
D | slider.md | 30 In the latter case the knob moves to the point clicked and slider value changes accordingly. In som…
|
/lvgl-3.7.0/src/widgets/ |
D | lv_slider.c | 119 info->res = _lv_area_is_point_on(&a, info->point, 0); in lv_slider_event() 125 info->res = _lv_area_is_point_on(&a, info->point, 0); in lv_slider_event()
|
/lvgl-3.7.0/docs/get-started/ |
D | quick-overview.md | 26 The buffer size can be set freely but 1/10 screen size is a good starting point. 71 touchpad_get_xy(&data->point.x, &data->point.y);
|
/lvgl-3.7.0/docs/porting/ |
D | indev.md | 41 data->point.x = touchpad_x; 42 data->point.y = touchpad_y;
|
/lvgl-3.7.0/docs/overview/ |
D | drawing.md | 171 const lv_point_t * p1; // A point calculated during drawing. E.g. a point of a chart o… 172 const lv_point_t * p2; // A point calculated during drawing. E.g. a point of a chart.
|
/lvgl-3.7.0/docs/get-started/platforms/ |
D | cmake.md | 41 … to be includable by its sources we also set the option `LV_CONF_PATH` to point to our own copy of…
|