Home
last modified time | relevance | path

Searched refs:current (Results 1 – 25 of 45) sorted by relevance

12

/lvgl-3.5.0/docs/widgets/extra/
Dcolorwheel.md6 …parameter of the color (hue, saturation or value). A double click will reset the current parameter.
10 - `LV_PART_KNOB` A rectangle (or circle) drawn on the current value. It uses all the rectangle like…
16 …color wheel. With `knob_recolor=true` the knob's background color will be set to the current color.
24 The current color mode can be manually selected with `lv_colorwheel_set_mode(colorwheel, LV_COLORWH…
34 - `LV_KEY_UP`, `LV_KEY_RIGHT` Increment the current parameter's value by 1
35 - `LV_KEY_DOWN`, `LV_KEY_LEFT` Decrement the current parameter's value by 1
36 - `LV_KEY_ENTER` A long press will show the next mode. Double click to reset the current parameter.
Dcalendar.md8 - highlight the current day (today)
13 To make the Calendar flexible, by default it doesn't show the current year or month. Instead, there…
29 To set the current date (today), use the `lv_calendar_set_today_date(calendar, year, month, day)` f…
60 …er that contains a left and right arrow on the sides and a text with the current year and month be…
Dtileview.md30 … new tile loaded by scrolling. `lv_tileview_get_tile_act(tabview)` can be used to get current tile.
Dtabview.md47 … the tab button. `lv_tabview_get_tab_act(tabview)` returns the zero based index of the current tab.
/lvgl-3.5.0/docs/widgets/core/
Darc.md34 - `LV_ARC_MODE_NORMAL` The indicator arc is drawn from the minimum value to the current.
35 …C_MODE_REVERSE` The indicator arc is drawn counter-clockwise from the maximum value to the current.
36 - `LV_ARC_MODE_SYMMETRICAL` The indicator arc is drawn from the middle point to the current value.
41 If the arc is pressed the current value will set with a limited speed according to the set *change …
64 …r object can be positioned according to the current position of the arc in order to follow the arc…
67 …c, obj_to_rotate, radius_offset)` can be used to rotate the object to the current value of the arc.
Dswitch.md11 - `LV_PART_INDICATOR` The indicator that shows the current state of the switch. Also uses all the t…
19 To get the current state of the switch (with `true` being on), use `lv_obj_has_state(switch, LV_STA…
Dslider.md10 - `LV_PART_INDICATOR` The indicator that shows the current state of the slider. Also uses all the t…
11 - `LV_PART_KNOB` A rectangle (or circle) drawn at the current value. Also uses all the typical back…
23 - `LV_SLIDER_SYMMETRICAL` Draw the indicator form the zero value to current value. Requires negativ…
Dbar.md5 …nd an indicator on it. The width of the indicator is set according to the current value of the bar.
28 - `LV_BAR_MODE_SYMMETRICAL` Draw the indicator from the zero value to current value. Requires a neg…
Dtextarea.md15 …the characters are inserted. The cursor's area is always the bounding box of the current character.
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…
103 - `Any character` Add the character to the current cursor position
Dtable.md56 - `id`: current row × col count + current column
Droller.md29 This function calculates the height with the current style. If the font, line space, border width, …
/lvgl-3.5.0/examples/widgets/bar/
Dindex.rst31 Custom drawer to show the current value
/lvgl-3.5.0/docs/others/
Dfragment.md46 /* Replace current fragment with instance of sample_cls, and init_argument is user defined pointer …
53 /* Add one instance into manager stack. View object of current fragment will be destroyed,
Dgridnav.md8 It doesn't matter how the children are positioned, as only the current x and y coordinates are cons…
/lvgl-3.5.0/examples/styles/
Dindex.rst85 Extending the current theme
/lvgl-3.5.0/docs/overview/
Dobject.md43 lv_slider_set_value(slider1, 40, LV_ANIM_ON); /*Set the current value (position)*/
63 lv_obj_t * parent = lv_obj_create(lv_scr_act()); /*Create a parent object on the current screen*/
99 UIs can be created based on the current environment of the device. For example one can create meter…
162 - `LV_SCR_LOAD_ANIM_OVER_LEFT/RIGHT/TOP/BOTTOM` Move the new screen over the current towards the gi…
163 - `LV_SCR_LOAD_ANIM_OUT_LEFT/RIGHT/TOP/BOTTOM` Move out the old screen over the current towards the…
164 - `LV_SCR_LOAD_ANIM_MOVE_LEFT/RIGHT/TOP/BOTTOM` Move both the current and new screens towards the g…
Ddrawing.md17 one holds the current image to show on the display, and rendering happens to the other (inactive) f…
57 …parameters (e.g. `lv_draw_rect()`). It will render the primitive shape to the current draw buffer.
113 `lv_event_get_clip_area(event)` can be used to get the current clip area. The clip area is required…
132 `lv_event_get_clip_area(event)` can be used to get the current clip area.
158 const lv_area_t * clip_area; // The current clip area, required if you need to draw somethin…
159 uint32_t part; // The current part for which the event is sent
218 Let's say you create an event which writes the current value of a slider above its knob. In this ca…
Danimation.md83 You can control the path of an animation. The most simple case is linear, meaning the current value…
84 A *path* is a function which calculates the next value to set based on the current state of the ani…
Dcolor.md119 You can set the current color depth in *lv_conf.h*, by setting the `LV_COLOR_DEPTH` define to 1 (mo…
123 You can convert a color from the current color depth to another. The converter functions return wit…
/lvgl-3.5.0/docs/
DROADMAP.md4 This list indicates only the current intention and it can be changed.
/lvgl-3.5.0/demos/music/
DREADME.md17 - Zoom the album cover proportionality to the current bass value
/lvgl-3.5.0/env_support/rt-thread/
DSConscript9 cwd = GetCurrentDir() # get current dir path
/lvgl-3.5.0/docs/get-started/
Dquick-overview.md23 Alternatively, configure `LV_TICK_CUSTOM` (see `lv_conf.h`) so that LVGL can retrieve the current t…
97 To get the current screen call `lv_scr_act()`, and to load a screen use `lv_scr_load(scr1)`.
141 From `lv_event_t * e` the current event code can be retrieved with:
226 If a property is not set on for the current state, the style with `LV_STATE_DEFAULT` will be used. …
/lvgl-3.5.0/src/misc/
Dlv_tlsf.c614 block_header_t * current = control->blocks[fl][sl]; in insert_free_block() local
615 tlsf_assert(current && "free list cannot have a null entry"); in insert_free_block()
617 block->next_free = current; in insert_free_block()
619 current->prev_free = block; in insert_free_block()
/lvgl-3.5.0/env_support/cmsis-pack/
DREADME.md104 …#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current system time …

12