From 625437041321589c4530490651b4b7418184caac Mon Sep 17 00:00:00 2001 From: tasn Date: Wed, 2 Feb 2011 09:01:26 +0000 Subject: [PATCH] Evas table: Updated the table's docs. vtorri - Thanks for the notice. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@56646 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/canvas/evas_object_table.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/lib/canvas/evas_object_table.c b/src/lib/canvas/evas_object_table.c index d270200..0addce1 100644 --- a/src/lib/canvas/evas_object_table.c +++ b/src/lib/canvas/evas_object_table.c @@ -1393,6 +1393,15 @@ evas_object_table_child_get(const Evas_Object *o, unsigned short col, unsigned s return NULL; } +/** + * Gets the mirrored mode of the table. In mirrored mode the table items go + * from right to left instead of left to right. That is, 1,1 is top right, not + * to left. + * + * @param obj The table object. + * @return EINA_TRUE if it's a mirrored table, EINA_FALSE otherwise. + * @since 1.1.0 + */ EAPI Eina_Bool evas_object_table_mirrored_get(const Evas_Object *obj) { @@ -1401,6 +1410,15 @@ evas_object_table_mirrored_get(const Evas_Object *obj) return priv->is_mirrored; } +/** + * Sets the mirrored mode of the table. In mirrored mode the table items go + * from right to left instead of left to right. That is, 1,1 is top right, not + * to left. + * + * @param obj The table object. + * @param mirrored the mirrored mode to set + * @since 1.1.0 + */ EAPI void evas_object_table_mirrored_set(Evas_Object *obj, Eina_Bool mirrored) { -- 2.7.4