Lines Matching refs:obj
47 void lv_obj_set_pos(struct _lv_obj_t * obj, lv_coord_t x, lv_coord_t y);
58 void lv_obj_set_x(struct _lv_obj_t * obj, lv_coord_t x);
69 void lv_obj_set_y(struct _lv_obj_t * obj, lv_coord_t y);
82 void lv_obj_set_size(struct _lv_obj_t * obj, lv_coord_t w, lv_coord_t h);
89 bool lv_obj_refr_size(struct _lv_obj_t * obj);
101 void lv_obj_set_width(struct _lv_obj_t * obj, lv_coord_t w);
113 void lv_obj_set_height(struct _lv_obj_t * obj, lv_coord_t h);
120 void lv_obj_set_content_width(struct _lv_obj_t * obj, lv_coord_t w);
127 void lv_obj_set_content_height(struct _lv_obj_t * obj, lv_coord_t h);
134 void lv_obj_set_layout(struct _lv_obj_t * obj, uint32_t layout);
141 bool lv_obj_is_layout_positioned(const struct _lv_obj_t * obj);
147 void lv_obj_mark_layout_as_dirty(struct _lv_obj_t * obj);
153 void lv_obj_update_layout(const struct _lv_obj_t * obj);
168 void lv_obj_set_align(struct _lv_obj_t * obj, lv_align_t align);
180 void lv_obj_align(struct _lv_obj_t * obj, lv_align_t align, lv_coord_t x_ofs, lv_coord_t y_ofs);
191 void lv_obj_align_to(struct _lv_obj_t * obj, const struct _lv_obj_t * base, lv_align_t align, lv_co…
199 static inline void lv_obj_center(struct _lv_obj_t * obj) in lv_obj_center() argument
201 lv_obj_align(obj, LV_ALIGN_CENTER, 0, 0); in lv_obj_center()
209 void lv_obj_get_coords(const struct _lv_obj_t * obj, lv_area_t * coords);
221 lv_coord_t lv_obj_get_x(const struct _lv_obj_t * obj);
233 lv_coord_t lv_obj_get_x2(const struct _lv_obj_t * obj);
245 lv_coord_t lv_obj_get_y(const struct _lv_obj_t * obj);
257 lv_coord_t lv_obj_get_y2(const struct _lv_obj_t * obj);
264 lv_coord_t lv_obj_get_x_aligned(const struct _lv_obj_t * obj);
271 lv_coord_t lv_obj_get_y_aligned(const struct _lv_obj_t * obj);
280 lv_coord_t lv_obj_get_width(const struct _lv_obj_t * obj);
289 lv_coord_t lv_obj_get_height(const struct _lv_obj_t * obj);
298 lv_coord_t lv_obj_get_content_width(const struct _lv_obj_t * obj);
307 lv_coord_t lv_obj_get_content_height(const struct _lv_obj_t * obj);
316 void lv_obj_get_content_coords(const struct _lv_obj_t * obj, lv_area_t * area);
325 lv_coord_t lv_obj_get_self_width(const struct _lv_obj_t * obj);
334 lv_coord_t lv_obj_get_self_height(const struct _lv_obj_t * obj);
341 bool lv_obj_refresh_self_size(struct _lv_obj_t * obj);
343 void lv_obj_refr_pos(struct _lv_obj_t * obj);
345 void lv_obj_move_to(struct _lv_obj_t * obj, lv_coord_t x, lv_coord_t y);
347 void lv_obj_move_children_by(struct _lv_obj_t * obj, lv_coord_t x_diff, lv_coord_t y_diff, bool ign…
356 void lv_obj_transform_point(const struct _lv_obj_t * obj, lv_point_t * p, bool recursive, bool inv);
365 void lv_obj_get_transformed_area(const struct _lv_obj_t * obj, lv_area_t * area, bool recursive, bo…
373 void lv_obj_invalidate_area(const struct _lv_obj_t * obj, const lv_area_t * area);
379 void lv_obj_invalidate(const struct _lv_obj_t * obj);
387 bool lv_obj_area_is_visible(const struct _lv_obj_t * obj, lv_area_t * area);
394 bool lv_obj_is_visible(const struct _lv_obj_t * obj);
401 void lv_obj_set_ext_click_area(struct _lv_obj_t * obj, lv_coord_t size);
409 void lv_obj_get_click_area(const struct _lv_obj_t * obj, lv_area_t * area);
417 bool lv_obj_hit_test(struct _lv_obj_t * obj, const lv_point_t * point);