Lines Matching refs:properties
9 properties of Widgets. It's intended use is to:
27 getting Widget properties, it is designed so minimize that additional CPU overhead.
34 A Widget's properties are the combined set of :ref:`styles` plus additional properties
36 how it behaves. Examples: size, position, color, are properties of all Widgets
37 whereas text, long-mode, selection-start, and selection-end, are properties unique to
39 properties in this context.
41 The non-style Widget properties available for a given Widget are implemented at the
48 static const lv_property_ops_t properties[] = {
72 This array is attached to the ``properties`` field of the Widget's class, so all
75 Some properties are read-only. When this is the case, only the ``getter`` field in
97 Sets multiple Widget properties from an array of :cpp:type:`lv_property_t`.
129 the ``properties[]`` array initializing the ``.id`` fields in the array. For example,
130 ``LV_PROPERTY_LABEL_TEXT`` is one found in ``lv_label.c``, and the properties
134 to be looked up for each type of Widget where Widget properties has been implemented.
215 * For some properties like slider range, it contains two simple (4-byte) values
241 and if still not found, then searches style properties.
245 class properties.
251 properties of a specific Widget class, or is a style name, since a property name may
254 then using this function forces the name in the Widget's class hierarchy properties
262 lists using ``./scripts/properties.py`` to ensure alphabetical ordering is preserved.