From c977c765c9f02e7e74132315610a27830294f80e Mon Sep 17 00:00:00 2001 From: WooHyun Jung Date: Thu, 23 Dec 2010 16:36:31 +0900 Subject: [PATCH] [colorpalette, colorselector, editfield] signals' explanation --- src/lib/elm_colorpalette.c | 5 +++++ src/lib/elm_colorselector.c | 5 +++++ src/lib/elm_editfield.c | 7 +++++++ 3 files changed, 17 insertions(+) diff --git a/src/lib/elm_colorpalette.c b/src/lib/elm_colorpalette.c index 968348d..2d705d4 100644 --- a/src/lib/elm_colorpalette.c +++ b/src/lib/elm_colorpalette.c @@ -8,6 +8,11 @@ * * Using colorpalette, you can select a color by clicking * a color rectangle on the colorpalette. + * + * Smart callbacks that you can add are: + * + * clicked - This signal is sent when a color rectangle is clicked. + * */ diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c index af4c53f..753b12d 100644 --- a/src/lib/elm_colorselector.c +++ b/src/lib/elm_colorselector.c @@ -7,6 +7,11 @@ * * By using colorselector, you can select a color. * Colorselector made a color using HSV/HSB mode. + * + * Smart Callbacks that you can add are : + * + * changed - This signal is emitted when a color change occurs. + * */ #define BASE_STEP 360.0 diff --git a/src/lib/elm_editfield.c b/src/lib/elm_editfield.c index d7cdafe..c392b73 100644 --- a/src/lib/elm_editfield.c +++ b/src/lib/elm_editfield.c @@ -6,6 +6,13 @@ * @ingroup Elementary * * This is a editfield. It can contain a simple label and icon objects. + * + * Smart callbacks that you can add are: + * + * clicked - This signal is emitted when an editfield is clicked. + * + * unfocused - This signal is emitted when an editfield is unfocused. + * */ //#define ERASER_PADDING (10) -- 2.7.4