Elementary migration revision 70492
[framework/uifw/elementary.git] / src / lib / elm_scale.h
index d6ab837..4332e73 100644 (file)
@@ -1,5 +1,6 @@
 /**
  * @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
  */
 
 /**
- * Get the global scaling factor
- *
- * This gets the globally configured scaling factor that is applied to all
- * objects.
- *
- * @return The scaling factor
- * @ingroup Scaling
- */
-EAPI double elm_scale_get(void);
-
-/**
- * Set the global scaling factor
- *
- * This sets the globally configured scaling factor that is applied to all
- * objects.
- *
- * @param scale The scaling factor to set
- * @ingroup Scaling
- */
-EAPI void   elm_scale_set(double scale);
-
-/**
- * Set the global scaling factor for all applications on the display
- *
- * This sets the globally configured scaling factor that is applied to all
- * objects for all applications.
- * @param scale The scaling factor to set
- * @ingroup Scaling
- */
-// XXX: deprecate and replace with elm_config_all_flush()
-EAPI void   elm_scale_all_set(double scale);
-
-/**
  * Set the scaling factor for a given Elementary object
  *
  * @param obj The Elementary to operate on
@@ -55,7 +23,7 @@ EAPI void   elm_scale_all_set(double scale);
  *
  * @ingroup Scaling
  */
-EAPI void   elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNULL(1);
+EAPI void   elm_object_scale_set(Evas_Object *obj, double scale);
 
 /**
  * Get the scaling factor for a given Elementary object
@@ -65,4 +33,4 @@ EAPI void   elm_object_scale_set(Evas_Object *obj, double scale) EINA_ARG_NONNUL
  *
  * @ingroup Scaling
  */
-EAPI double elm_object_scale_get(const Evas_Object *obj) EINA_ARG_NONNULL(1);
+EAPI double elm_object_scale_get(const Evas_Object *obj);