From b24d9d94d0410d3b372bbcf40a34b298a84666e8 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Mon, 7 Nov 2011 19:06:50 +0900 Subject: [PATCH] [grid] delete docs --- src/lib/elm_grid.c | 90 ------------------------------------------------------ 1 file changed, 90 deletions(-) diff --git a/src/lib/elm_grid.c b/src/lib/elm_grid.c index c574a5a..b7308e8 100644 --- a/src/lib/elm_grid.c +++ b/src/lib/elm_grid.c @@ -1,20 +1,6 @@ #include #include "elm_priv.h" -/** - * @defgroup Grid Grid - * - * The grid is a grid layout widget that lays out a series of children as a - * fixed "grid" of widgets using a given percentage of the grid width and - * height each using the child object. - * - * The Grid uses a "Virtual resolution" that is stretched to fill the grid - * widgets size itself. The default is 100 x 100, so that means the - * position and sizes of children will effectively be percentages (0 to 100) - * of the width or height of the grid widget - * - */ - typedef struct _Widget_Data Widget_Data; struct _Widget_Data @@ -85,14 +71,6 @@ _theme_hook(Evas_Object *obj) _mirrored_set(obj, elm_widget_mirrored_get(obj)); } -/** - * Add a new grid to the parent - * - * @param parent The parent object - * @return The new object or NULL if it cannot be created - * - * @ingroup Grid - */ EAPI Evas_Object * elm_grid_add(Evas_Object *parent) { @@ -120,15 +98,6 @@ elm_grid_add(Evas_Object *parent) return obj; } -/** - * Set the virtual size of the grid - * - * @param obj The grid object - * @param w The virtual width of the grid - * @param h The virtual height of the grid - * - * @ingroup Grid - */ EAPI void elm_grid_size_set(Evas_Object *obj, int w, int h) { @@ -138,15 +107,6 @@ elm_grid_size_set(Evas_Object *obj, int w, int h) evas_object_grid_size_set(wd->grd, w, h); } -/** - * Get the virtual size of the grid - * - * @param obj The grid object - * @param w Pointer to integer to store the virtual width of the grid - * @param h Pointer to integer to store the virtual height of the grid - * - * @ingroup Grid - */ EAPI void elm_grid_size_get(Evas_Object *obj, int *w, int *h) { @@ -156,18 +116,6 @@ elm_grid_size_get(Evas_Object *obj, int *w, int *h) evas_object_grid_size_get(wd->grd, w, h); } -/** - * Pack child at given position and size - * - * @param obj The grid object - * @param subobj The child to pack - * @param x The virtual x coord at which to pack it - * @param y The virtual y coord at which to pack it - * @param w The virtual width at which to pack it - * @param h The virtual height at which to pack it - * - * @ingroup Grid - */ EAPI void elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) { @@ -178,14 +126,6 @@ elm_grid_pack(Evas_Object *obj, Evas_Object *subobj, int x, int y, int w, int h) evas_object_grid_pack(wd->grd, subobj, x, y, w, h); } -/** - * Unpack a child from a grid object - * - * @param obj The grid object - * @param subobj The child to unpack - * - * @ingroup Grid - */ EAPI void elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj) { @@ -196,14 +136,6 @@ elm_grid_unpack(Evas_Object *obj, Evas_Object *subobj) evas_object_grid_unpack(wd->grd, subobj); } -/** - * Faster way to remove all child objects from a grid object. - * - * @param obj The grid object - * @param clear If true, it will delete just removed children - * - * @ingroup Grid - */ EAPI void elm_grid_clear(Evas_Object *obj, Eina_Bool clear) { @@ -217,17 +149,6 @@ elm_grid_clear(Evas_Object *obj, Eina_Bool clear) evas_object_grid_clear(wd->grd, clear); } -/** - * Set packing of an existing child at to position and size - * - * @param subobj The child to set packing of - * @param x The virtual x coord at which to pack it - * @param y The virtual y coord at which to pack it - * @param w The virtual width at which to pack it - * @param h The virtual height at which to pack it - * - * @ingroup Grid - */ EAPI void elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h) { @@ -238,17 +159,6 @@ elm_grid_pack_set(Evas_Object *subobj, int x, int y, int w, int h) evas_object_grid_pack(wd->grd, subobj, x, y, w, h); } -/** - * get packing of a child - * - * @param subobj The child to query - * @param x Pointer to integer to store the virtual x coord - * @param y Pointer to integer to store the virtual y coord - * @param w Pointer to integer to store the virtual width - * @param h Pointer to integer to store the virtual height - * - * @ingroup Grid - */ EAPI void elm_grid_pack_get(Evas_Object *subobj, int *x, int *y, int *w, int *h) { -- 2.7.4