diff options
Diffstat (limited to 'src/lib/elm_scale.h')
-rw-r--r-- | src/lib/elm_scale.h | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/src/lib/elm_scale.h b/src/lib/elm_scale.h index 4332e732c..41e63de71 100644 --- a/src/lib/elm_scale.h +++ b/src/lib/elm_scale.h @@ -1,34 +1,36 @@ /** * @defgroup Scaling Widget Scaling - * @ingroup Elementary - * - * Different widgets can be scaled independently. These functions - * allow you to manipulate this scaling on a per-widget basis. The - * object and all its children get their scaling factors multiplied - * by the scale factor set. This is multiplicative, in that if a - * child also has a scale size set it is in turn multiplied by its - * parent's scale size. @c 1.0 means “don't scale”, @c 2.0 is - * double size, @c 0.5 is half, etc. - * - * @ref general_functions_example_page "This" example contemplates - * some of these functions. + * @ingroup elm_infra_group + * + * @brief Different widgets can be scaled independently. These functions + * allow you to manipulate this scaling on a per-widget basis. The + * object and all its children get their scaling factors multiplied + * by the scale factor set. This is multiplicative, in that if a + * child also has a scale size set, it is in turn multiplied by its + * parent's scale size. @c 1.0 means “don't scale”, @c 2.0 is + * double size, @c 0.5 is half, etc. + * */ /** - * Set the scaling factor for a given Elementary object + * @brief Sets the scaling factor for a given Elementary object. * - * @param obj The Elementary to operate on - * @param scale Scale factor (from @c 0.0 up, with @c 1.0 meaning - * no scaling) + * @since_tizen 2.3 + * + * @param[in] obj The Elementary to operate on + * @param[in] scale The scale factor (from @c 0.0 up, with @c 1.0 meaning + * no scaling) * * @ingroup Scaling */ EAPI void elm_object_scale_set(Evas_Object *obj, double scale); /** - * Get the scaling factor for a given Elementary object + * @brief Gets the scaling factor for a given Elementary object. + * + * @since_tizen 2.3 * - * @param obj The object + * @param[in] obj The object * @return The scaling factor set by elm_object_scale_set() * * @ingroup Scaling |