Home
last modified time | relevance | path

Searched refs:pressed (Results 1 – 23 of 23) sorted by relevance

/lvgl-3.7.0/docs/overview/
Dstyle.md6 For example one can add `style_blue` to the knob of a slider when it's in pressed state.
26 - `LV_STATE_PRESSED` (0x0020) Being pressed
34 An object can be in a combination of states such as being focused and pressed at the same time. Thi…
37 For example, setting a different background color for the default and pressed states.
49 2. When the object is pressed there are 2 related properties: default with white (default is relate…
50 The pressed state has 0x0020 precedence which is higher than the default state's 0x0000 precedence,…
51 3. When the object is focused the same thing happens as in pressed state and red color will be used…
52 4. When the object is focused and pressed both gray and red would work, but the pressed state has h…
54 … state has 0x0020 + 0x0002 = 0x0022 precedence, which is higher than the pressed state's precedenc…
58 …an object is focused the user will still want to see if it's pressed, therefore the pressed state …
[all …]
Devent.md69 - `LV_EVENT_PRESSED` An object has been pressed
70 - `LV_EVENT_PRESSING` An object is being pressed (called continuously while pressing)
71 - `LV_EVENT_PRESS_LOST` An object is still being pressed but slid cursor/finger off of the object
72 - `LV_EVENT_SHORT_CLICKED` An object was pressed for a short period of time, then released. Not …
73 - `LV_EVENT_LONG_PRESSED` An object has been pressed for at least the `long_press_time` specified i…
Dcoords.md212 Now you want to move a button up a little when it's pressed.
214 One way to achieve this is by setting a new Y coordinate for the pressed state:
234 This works, but it's not really flexible because the pressed coordinate is hard-coded. If the butto…
270 This code enlarges a button when it's pressed:
Dindev.md74 In every group there is exactly one focused object which receives the pressed keys or the encoder a…
115 Usually, an object which cannot be pressed (like a [Slider](/widgets/core/slider)) leaves *Edit* mo…
Dobject.md207 - `LV_STATE_PRESSED` Being pressed
Ddrawing.md26 1. Something happens in the UI which requires redrawing. For example, a button is pressed, a chart …
/lvgl-3.7.0/docs/porting/
Dindev.md69 data->key = last_key(); /*Get the last pressed or released key*/
126 data->key = last_key(); /*Get the last pressed or released key*/
139 If a button is pressed it will simulate the pressing on the assigned coordinate. (Similarly to a to…
154 static uint32_t last_btn = 0; /*Store the last pressed button*/
155 int btn_pr = my_btn_read(); /*Get the ID (0,1,2...) of the pressed button*/
156 …btn_pr >= 0) { /*Is there a button press? (E.g. -1 indicated no button was pressed)*/
157 last_btn = btn_pr; /*Save the ID of the pressed button*/
158 data->state = LV_INDEV_STATE_PRESSED; /*Set the pressed state*/
Ddisplay.md28 If only a small area changes (e.g. a button is pressed) then only that area will be refreshed.
/lvgl-3.7.0/src/extra/themes/default/
Dlv_theme_default.c57 lv_style_t pressed; member
304 style_init_reset(&styles->pressed); in style_init()
305 lv_style_set_color_filter_dsc(&styles->pressed, &dark_filter); in style_init()
306 lv_style_set_color_filter_opa(&styles->pressed, 35); in style_init()
754 lv_obj_add_style(obj, &styles->pressed, LV_STATE_PRESSED); in theme_apply()
786 lv_obj_add_style(obj, &styles->pressed, LV_PART_ITEMS | LV_STATE_PRESSED); in theme_apply()
799 lv_obj_add_style(obj, &styles->pressed, LV_PART_ITEMS | LV_STATE_PRESSED); in theme_apply()
815 lv_obj_add_style(obj, &styles->pressed, LV_PART_ITEMS | LV_STATE_PRESSED); in theme_apply()
827 lv_obj_add_style(obj, &styles->pressed, LV_PART_ITEMS | LV_STATE_PRESSED); in theme_apply()
874 lv_obj_add_style(obj, &styles->pressed, LV_PART_ITEMS | LV_STATE_PRESSED); in theme_apply()
[all …]
/lvgl-3.7.0/examples/widgets/chart/
Dindex.rst21 Show the value of the pressed points
/lvgl-3.7.0/docs/others/
Dgridnav.md3 … for short) is a feature that changes the currently focused child object as arrow keys are pressed.
30 - `LV_GRIDNAV_CTRL_SCROLL_FIRST` If an arrow is pressed and the focused object can be scrolled in t…
/lvgl-3.7.0/docs/widgets/core/
Dbtnmatrix.md32 - `LV_BTNMATRIX_CTRL_NO_REPEAT` Disable repeating when the button is long pressed
58 …GED` Sent when a button is pressed/released or repeated after long press. The event parameter is s…
Darc.md41 If the arc is pressed the current value will set with a limited speed according to the set *change …
72 - `LV_EVENT_VALUE_CHANGED` sent when the arc is pressed/dragged to set a new value.
Ddropdown.md26 - `LV_PART_SELECTED` Refers to the currently pressed, checked or pressed+checked option. Also uses …
Dtextarea.md95 - `LV_EVENT_READY` Sent when `LV_KEY_ENTER` is pressed (or sent) to a one line text area.
Dimg.md53 This can be useful to show different states (checked, inactive, pressed, etc.) of an image without …
/lvgl-3.7.0/docs/widgets/extra/
Dkeyboard.md54 …NGED` Sent when the button is pressed/released or repeated after long press. The event data is set…
Dcalendar.md56 … &date)` set `date` to the date currently being pressed. Returns `LV_RES_OK` if there is a valid p…
Dimgbtn.md31 If you set e.g. `LV_IMGBTN_STATE_PRESSED` they will be used in pressed state instead of the release…
Dchart.md129 …ent when a new point is clicked pressed. `lv_chart_get_pressed_point(chart)` returns the zero-bas…
/lvgl-3.7.0/docs/get-started/
Dquick-overview.md169 - `LV_STATE_PRESSED` Being pressed
197 …part and state. For example to use this style on the slider's indicator when the slider is pressed:
/lvgl-3.7.0/docs/widgets/
Dobj.md117 - `LV_OBJ_FLAG_PRESS_LOCK` Keep the object pressed even if the press slid from the object
/lvgl-3.7.0/docs/
DCHANGELOG.md18 - fix(ime_pinyin): keep cursor in the textarea when a candidate is pressed [`4731`](https://github.…
277 - fix(gridnav): fix stucking in pressed state with encoder [`ad56dfa`](https://github.com/lvgl/lvgl…
808 - fix(btnmatrix): fix crash if an empty btnmatrix is pressed [`2392f58`](https://github.com/littlev…
1200 - fix(btnmatrix) do not show pressed, focused or focus key states on disabled buttons [`3df2a74`](h…
1874 - Fix btnmatrix to not send event when CLICK_TRIG = true and the cursor slid from a pressed button
2077pressed datum. The used styles are changed: use `LV_CALENDAR_PART_DATE` normal for normal dates, c…