Lines Matching full:can
4 Here you can learn the most important things about LVGL.
12 Go to the [Simulators](/get-started/pc-simulator) section to get ready-to-use projects that can be …
13 This way you can save the time of porting for now and get some experience with LVGL immediately.
23 Alternatively, configure `LV_TICK_CUSTOM` (see `lv_conf.h`) so that LVGL can retrieve the current t…
26 The buffer size can be set freely but 1/10 screen size is a good starting point.
32 - Implement and register a function which can copy the rendered image to an area of your display:
58 - Implement and register a function which can read an input device. E.g. for a touchpad:
93 Children can be visible only within their parent's bounding area. In other words, the parts of the …
95 A Screen is the "root" parent. You can have any number of screens.
99 You can create a new object with `lv_<type>_create(parent)`. It will return an `lv_obj_t *` variabl…
106 To set some basic attributes `lv_obj_set_<parameter_name>(obj, <value>)` functions can be used. For…
113 Along with the basic attributes, widgets can have type specific parameters which are set by `lv_<wi…
124 You can assign one or more callbacks to an object which will be called if the object is clicked, re…
139 `LV_EVENT_ALL` can be used instead of `LV_EVENT_CLICKED` to invoke the callback for any event.
141 From `lv_event_t * e` the current event code can be retrieved with:
146 The object that triggered the event can be retrieved with:
157 By using parts you can apply different styles to sub-elements of a widget. (See below)
162 LVGL objects can be in a combination of the following states:
187 …ds to be initialized with `lv_style_init(&style1)`. After that, properties can be added to configu…
202 If the *part* is `LV_PART_MAIN` it can be omitted:
207 Similarly, `LV_STATE_DEFAULT` can be omitted too:
218 Styles can be cascaded (similarly to CSS). It means you can add more styles to a part of an object.
219 For example `style_btn` can set a default button appearance, and `style_btn_red` can overwrite the …
228 Some properties (typically the text-related ones) can be inherited. This means if a property is not…
229 For example, you can set the font once in the screen's style and all text on that screen will inher…
232 Local style properties also can be added to objects. This creates a style which resides inside the …