From d8ecc46f5429e0db9d65b3c0f1a8b21af412a66d Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Wed, 22 Dec 2010 21:29:53 +0900 Subject: [PATCH] [colorselector] modified for doxy --- src/lib/elm_colorpicker.c | 37 ------------------------------------- src/lib/elm_colorselector.c | 3 ++- 2 files changed, 2 insertions(+), 38 deletions(-) diff --git a/src/lib/elm_colorpicker.c b/src/lib/elm_colorpicker.c index c593bc1..4405e2e 100644 --- a/src/lib/elm_colorpicker.c +++ b/src/lib/elm_colorpicker.c @@ -2,58 +2,21 @@ #include "elm_priv.h" #include -/** - * @defgroup Colorpicker Colorpicker - * @ingroup Elementary - * - * By using colorpicker, you can select a color. - * Colorpicker made a color using HSV/HSB mode. - */ - -/** - * Add a new colorpicker to the parent - * - * @param parent The parent object - * @return The new object or NULL if it cannot be created - * - * @ingroup Colorpicker - */ EAPI Evas_Object * elm_colorpicker_add(Evas_Object *parent) { return elm_colorselector_add(parent); } -/** - * Set a color for the colorpicker - * - * @param obj Colorpicker object - * @param r r-value of color - * @param g g-value of color - * @param b b-value of color - * - * @ingroup Colorpicker - */ EAPI void elm_colorpicker_color_set(Evas_Object *obj, int r, int g, int b) { elm_colorselector_color_set(obj, r, g, b, 255); } -/** - * Get a color from the colorpicker - * - * @param obj Colorpicker object - * @param r integer pointer for r-value of color - * @param g integer pointer for g-value of color - * @param b integer pointer for b-value of color - * - * @ingroup Colorpicker - */ EAPI void elm_colorpicker_color_get(Evas_Object *obj, int *r, int *g, int *b) { elm_colorselector_color_get(obj, r, g, b, NULL); } -/* vim:set ts=8 sw=3 sts=3 expandtab cino=>5n-2f0^-2{2(0W1st0 :*/ diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c index 53d4846..af4c53f 100644 --- a/src/lib/elm_colorselector.c +++ b/src/lib/elm_colorselector.c @@ -2,7 +2,8 @@ #include "elm_priv.h" /** - * @addtogroup Colorselector Colorselector + * @defgroup Colorselector Colorselector + * @ingroup Elementary * * By using colorselector, you can select a color. * Colorselector made a color using HSV/HSB mode. -- 2.7.4