Home
last modified time | relevance | path

Searched refs:point (Results 1 – 25 of 39) sorted by relevance

12

/lvgl-3.7.0/src/core/
Dlv_indev.c221 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 …]
Dlv_indev.h99 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);
Dlv_event.h120 …const lv_point_t * point; /**< A point relative to screen to check if it can click the object or… member
Dlv_obj_pos.h417 bool lv_obj_hit_test(struct _lv_obj_t * obj, const lv_point_t * point);
Dlv_obj_pos.c949 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/
Dchart.md32 - `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 …]
Dspinbox.md26 `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/
Dtest_slider.c179 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/
Dlv_port_indev_template.c204 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/
Dlv_monkey.c143 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/
Dlv_example_chart_8.c99 for(int point = 0; point < 10; point++) { in lv_example_chart_8() local
Dindex.rst33 Show cursor on the clicked point
Dlv_example_chart_8.py96 for point in range(10):
/lvgl-3.7.0/tests/src/
Dlv_test_indev.c21 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/
Dlv_hal_indev.c172 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()
Dlv_hal_indev.h76 lv_point_t point; /**< For LV_INDEV_TYPE_POINTER the currently pressed point*/ member
/lvgl-3.7.0/examples/arduino/LVGL_Arduino/
DLVGL_Arduino.ino60 data->point.x = touchX;
61 data->point.y = touchY;
/lvgl-3.7.0/env_support/cmsis-pack/
DREADME.md96 /*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/
Dline.md18 By default, the *y == 0* point is in the top of the object. It might be counter-intuitive in some c…
Dslider.md30 In the latter case the knob moves to the point clicked and slider value changes accordingly. In som…
/lvgl-3.7.0/src/widgets/
Dlv_slider.c119 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/
Dquick-overview.md26 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/
Dindev.md41 data->point.x = touchpad_x;
42 data->point.y = touchpad_y;
/lvgl-3.7.0/docs/overview/
Ddrawing.md171 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/
Dcmake.md41 … to be includable by its sources we also set the option `LV_CONF_PATH` to point to our own copy of…

12