Change-Id: I82354cded0230305910e2b20965764585d73817f
e_view_clip_unset(e_view_rect_view_get(layout->clip));
}
+E_API void
+e_view_layout_geometry_get(E_View_Layout *layout, int *x, int *y, int *width, int *height)
+{
+ if (!layout) return;
+
+ if (x)
+ *x = layout->x;
+ if (y)
+ *y = layout->y;
+ if (width)
+ *width = layout->w;
+ if (height)
+ *height = layout->h;
+}
E_API void e_view_layout_color_set(E_View_Layout *layout, int r, int g, int b, int a);
E_API void e_view_layout_clip_set(E_View_Layout *layout, E_View *clip);
E_API void e_view_layout_clip_unset(E_View_Layout *layout);
+E_API void e_view_layout_geometry_get(E_View_Layout *layout, int *x, int *y, int *width, int *height);
#ifdef __cplusplus
}