Lines Matching refs:set
18 - Explicitly set coordinates are stored in styles (position, size, layouts, etc.)
53 meaning: it means to set the width and/or height of a Widget
137 coordinates can also be set via style properties. To be more precise,
156 the earlier set coordinates will be removed as well.
162 /* The size of obj1 will be set back to the default in the end */
164 lv_obj_remove_style_all(widget1); /* It removes the set sizes */
182 To simply set the x and y coordinates of a Widget use:
249 If the parent's size changes, the set alignment and position of the
300 The width and the height of a Widget can be set easily as well:
309 size. For example to set the Widget's height to the screen height:
316 the Widget's size in the respective direction will be set to the size of
324 The above functions set the size of a Widget's bounding box but the
325 size of the content area can be set as well. This means a Widget's
362 related code for the sake of simplicity and set the position, size, and
365 However, using styles to set the coordinates has some great advantages:
367 - It makes it easy to set the width/height/etc. for several Widgets
378 Here are some examples to set a Widget's size using a style:
402 set as described above. Now you want to move a button up a little when
500 especially useful if the size is set by percentage or
539 The position and size set by the layout overwrites the "normal" x, y,
567 …AG_IGNORE_LAYOUT` The Widget is simply ignored by the layouts. Its coordinates can be set as usual.