Home
last modified time | relevance | path

Searched refs:position (Results 1 – 25 of 26) sorted by relevance

12

/lvgl-3.7.0/src/extra/libs/tiny_ttf/
Dlv_tiny_ttf.c25 size_t position; member
35 if(to_read + stream->position >= stream->size) { in ttf_cb_stream_read()
36 to_read = stream->size - stream->position; in ttf_cb_stream_read()
38 lv_memcpy(data, ((const unsigned char *)stream->data + stream->position), to_read); in ttf_cb_stream_read()
39 stream->position += to_read; in ttf_cb_stream_read()
42 static void ttf_cb_stream_seek(ttf_cb_stream_t * stream, size_t position) in ttf_cb_stream_seek() argument
45 lv_fs_seek(stream->file, position, LV_FS_SEEK_SET); in ttf_cb_stream_seek()
48 if(position > stream->size) { in ttf_cb_stream_seek()
49 stream->position = stream->size; in ttf_cb_stream_seek()
52 stream->position = position; in ttf_cb_stream_seek()
[all …]
/lvgl-3.7.0/docs/overview/
Dcoords.md7 - Explicitly set coordinates are stored in styles (size, position, layouts, etc.)
15 - pixel: Simply a position in pixels. An integer always means pixels. E.g. `lv_obj_set_x(btn, 10)`
38 …n LVGL checks if there are any "dirty" objects. If so it refreshes their position, size and layout.
43 The size and position might depend on the parent or layout. Therefore `lv_obj_update_layout` recalc…
91 …ault top left. If the origin is changed e.g. to bottom-right, the (0,0) position means: align to t…
121 If the parent's size changes, the set alignment and position of the children is updated automatical…
185 Under the hood the position, size and alignment properties are style properties.
186 …ons" hide the style related code for the sake of simplicity and set the position, size, and alignm…
192 - The object can have different position or size depending on state. E.g. 100 px wide in `LV_STATE_…
206 As you will see below there are some other great features of size and position setting.
[all …]
Dlayer.md21 lv_obj_set_pos(btn1, 60, 40); /*Set the position of the button*/
24 lv_obj_set_pos(btn2, 180, 80); /*Set the position of the button*/
42 - Use `lv_obj_swap(obj1, obj2)` to swap the relative layer position of two objects.
Dscroll.md56 - `LV_EVENT_SCROLL` Scroll happened. Triggered on every position change.
87 If an object can't be scrolled further (e.g. its content has reached the bottom-most position) addi…
102 When the object is released the content scrolled in it will be animated back to the valid position.
140 From time to time you may need to retrieve the scroll position of an element, either to restore it …
141 Here is an example to see how to combine scroll event and store the scroll top position.
Dobject.md27 lv_obj_set_pos(btn1, 20,30); /*Set a button's position*/
43 lv_slider_set_value(slider1, 40, LV_ANIM_ON); /*Set the current value (position)*/
57 If the position of a parent changes, the children will move along with it.
67 lv_obj_set_pos(obj1, 10, 10); /*Set the position of the new object*/
70 Modify the position of the parent:
Dfile-system.md28 drv.tell_cb = my_tell_cb; /*Callback to tell the cursor position */
Dfont.md120 …splay Arabic and Persian characters: the *form* of a character depends on its position in the text.
132 …nels instead of at pixel level granularity. This takes advantage of the position of physical color…
Dimage.md134 …fully open an image this function should give some decoded data (max 1 line) from a given position.
/lvgl-3.7.0/docs/widgets/core/
Dtextarea.md15 - `LV_PART_CURSOR` Marks the position where the characters are inserted. The cursor's area is alway…
24 You can insert text or characters to the current cursor's position with:
39 To delete a character from the left of the current cursor position use `lv_textarea_del_char(textar…
44 The cursor position can be modified directly like `lv_textarea_set_cursor_pos(textarea, 10)`.
45 The `0` position means "before the first characters",
54 …ursor_click_pos(textarea, true)` is applied the cursor will jump to the position where the Text ar…
103 - `Any character` Add the character to the current cursor position
Darc.md8 …roperties and an arc using the arc style properties. The arc's size and position will respect the …
29 An offset to the 0 degree position can be added with `lv_arc_set_rotation(arc, deg)`.
64 Another object can be positioned according to the current position of the arc in order to follow th…
Dbar.md9 Not only the end, but also the start value of the bar can be set, which changes the start position
/lvgl-3.7.0/docs/_static/css/
Dcustom.css80 position: relative;
84 position: absolute;
Dfontawesome.min.css5position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inher…
/lvgl-3.7.0/demos/music/
DREADME.md20 …- If there is a large enough bass, add a random offset to the position of the bars. E.g. start fro…
/lvgl-3.7.0/docs/widgets/extra/
Dtabview.md24 …new empty Tab view. `tab_pos` can be `LV_DIR_TOP/BOTTOM/LEFT/RIGHT` to position the tab buttons t…
Dspinbox.md19 …ursor to a specific digit to change on increment/decrement. For example position '0' sets the curs…
Dchart.md97 …lv_chart_set_x_start_point(chart, ser, id)` where `id` is the new index position to start plotting…
121 `lv_chart_set_cursor_pos(chart, cursor, &point)` sets the position of the cursor.
126 …cursor, series, point_id)` sticks the cursor at a point. If the point's position changes (new valu…
/lvgl-3.7.0/docs/widgets/
Dobj.md26 You can set the position relative to the parent with `lv_obj_set_x(obj, new_x)` and `lv_obj_set_y(o…
70 You can swap the position of two objects with `lv_obj_swap(obj1, obj2)`.
/lvgl-3.7.0/docs/
DCODING_STYLE.md21 …* Use only very straightforward and well-known abbreviations (e.g. pos: position, def: default, bt…
DCHANGELOG.md62 - fix(dropdown): position to the selected item in lv_dropdown_set_selected [`f174589`](https://gith…
691 - feat(Kconfig): add monitor position configuration [`2834`](https://github.com/littlevgl/lvgl/pull…
961 - feat(spinbox ) add function to set cursor to specific position [`2314`](https://github.com/lvgl/l…
1093 - fix(span) modify the underline position [`2376`](https://github.com/lvgl/lvgl/pull/2376)
1144 - fix(scroll) keep the scroll position on object deleted [`52edbb4`](https://github.com/lvgl/lvgl/c…
1191 - fix(dropdown) fix list position with RTL base direction [`79edb37`](https://github.com/lvgl/lvgl/…
1224 - fix(calendar) fix the position calculation today [`ad05e19`](https://github.com/lvgl/lvgl/commit/…
1235 - fix(obj) do not set the child's position in lv_obj_set_parent [`d89a5fb`](https://github.com/lvgl…
1572 - fix(calendar) fix the position calculation today <a href="https://github.com/lvgl/lvgl/commit/ad0…
1578 - fix(scroll) keep the scroll position on object deleted <a href="https://github.com/lvgl/lvgl/comm…
[all …]
/lvgl-3.7.0/
DREADME_zh.md144 lv_obj_set_pos(btn, 10, 10); /*Set its position*/
DREADME.md141 lv_obj_set_pos(btn, 10, 10); /*Set its position*/
DKconfig393 prompt "Performance monitor position."
422 prompt "Memory monitor position."
740 an other form based on their position in the text.
/lvgl-3.7.0/demos/benchmark/
DREADME.md9 The size and position of the objects during testing are set with a pseudo random number to make the…
/lvgl-3.7.0/docs/porting/
Dgpu.md11 - `lv_area_t * buf_area` The position and size of `buf` (absolute coordinates)

12