clipper: improve doc.

This commit is contained in:
ChunEon Park 2015-05-15 23:31:07 +09:00
parent 37302c6d5f
commit a87ed94604
2 changed files with 7 additions and 7 deletions

View File

@ -5,9 +5,9 @@ class Elm.Clipper (Elm.Container)
@property clip {
set {
/*@
@brief Set the clip object of the clipper
@brief Set the clip(mask) object of the clipper
Sets the clip object for clipping
Sets the clip(mask) object for clipping
@note
Allow setting only an Evas_Object_Rectangle and an Evas_Object_Image as clip on 1.14
@ -18,16 +18,16 @@ class Elm.Clipper (Elm.Container)
}
get {
/*@
@brief Get the mask object of the clipper
@brief Get the clip(mask) object of the clipper
@see elm_clipper_mask_set()
@see elm_clipper_clip_set()
@since 1.15
@ingroup Clipper */
}
values {
Evas_Object *mask;
Evas_Object *clip;
}
}
@property region {

View File

@ -2,8 +2,8 @@
* @defgroup Clipper Clipper
* @ingroup Elementary
*
* This widget display a clipped object.
* For this widget, need a clipper object and a content object.
* This widget displays a clipped(masked) object.
* For this widget, you need one clipper and one content objects.
* The content would be clipped out by the clipper.
* If clipper is not set, you would see the content without cuts
*