elm button: Reviewed APIs.

Signed-off-by: Daniel Juyung Seo <juyung.seo@samsung.com>

SVN revision: 68021
This commit is contained in:
Daniel Juyung Seo 2012-02-16 11:11:25 +00:00 committed by Daniel Juyung Seo
parent 9331e7625f
commit 2ad111e70e
2 changed files with 6 additions and 4 deletions

View File

@ -179,7 +179,7 @@ EAPI extern Elm_Version *elm_version;
// Daniel Juyung Seo // Daniel Juyung Seo
#include <elm_bubble.h> // comments in elm_bubble.h #include <elm_bubble.h> // comments in elm_bubble.h
#include <elm_button.h> #include <elm_button.h> // OK
#include <elm_cache.h> #include <elm_cache.h>
#include <elm_calendar.h> #include <elm_calendar.h>
#include <elm_check.h> #include <elm_check.h>

View File

@ -11,12 +11,12 @@
* This is a push-button. Press it and run some function. It can contain * This is a push-button. Press it and run some function. It can contain
* a simple label and icon object and it also has an autorepeat feature. * a simple label and icon object and it also has an autorepeat feature.
* *
* This widgets emits the following signals: * This widget emits the following signals:
* @li "clicked": the user clicked the button (press/release). * @li "clicked": the user clicked the button (press/release).
* @li "repeated": the user pressed the button without releasing it. * @li "repeated": the user pressed the button without releasing it.
* @li "pressed": button was pressed. * @li "pressed": button was pressed.
* @li "unpressed": button was released after being pressed. * @li "unpressed": button was released after being pressed.
* In all three cases, the @c event parameter of the callback will be * In all cases, the @c event parameter of the callback will be
* @c NULL. * @c NULL.
* *
* Also, defined in the default theme, the button has the following styles * Also, defined in the default theme, the button has the following styles
@ -28,6 +28,8 @@
* continuous look across its options. * continuous look across its options.
* @li hoversel_vertical_entry: Another internal for @ref Hoversel. * @li hoversel_vertical_entry: Another internal for @ref Hoversel.
* *
* XXX: add more styles in default theme.
*
* Default contents parts of the button widget that you can use for are: * Default contents parts of the button widget that you can use for are:
* @li "icon" - An icon of the button * @li "icon" - An icon of the button
* *
@ -88,7 +90,7 @@ EAPI Eina_Bool elm_button_autorepeat_get(const Evas_Object *o
* *
* Sets the timeout, in seconds, since the button is pressed until the * Sets the timeout, in seconds, since the button is pressed until the
* first @c repeated signal is emitted. If @p t is 0.0 or less, there * first @c repeated signal is emitted. If @p t is 0.0 or less, there
* won't be any delay and the even will be fired the moment the button is * won't be any delay and the event will be fired the moment the button is
* pressed. * pressed.
* *
* @param obj The button object * @param obj The button object