[entry] deprecated autocapitalization_set, autoperiod_set, autoenable_returnkey_set
authorJihoon Kim <jihoon48.kim@samsung.com>
Wed, 29 Feb 2012 01:02:59 +0000 (10:02 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Wed, 29 Feb 2012 01:02:59 +0000 (10:02 +0900)
Change-Id: I4036cab36fbd4e69f4d5b727550cd0cbed468921

src/lib/elm_deprecated.h
src/lib/elm_entry.h

index 0f48e27..4b3b2a8 100644 (file)
@@ -3830,6 +3830,30 @@ EAPI Evas_Object       *elm_entry_end_get(const Evas_Object *obj);
 EINA_DEPRECATED EAPI Evas_Object       *elm_entry_end_unset(Evas_Object *obj);
 
 /**
+ * Set the autocapitalization on the immodule.
+ *
+ * @param obj The entry object
+ * @param autocap EINA_TRUE if autocapitalization is needed
+ * @deprecated Use elm_entry_autocapital_type_set() instead
+ */
+EINA_DEPRECATED EAPI void   elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
+
+EINA_DEPRECATED EAPI void   elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
+
+/**
+ * Set whether the return key on the input panel is disabled automatically when entry has no text.
+ *
+ * If @p on is EINA_TRUE, The return key on input panel is disabled when the entry has no text.
+ * The return Key on the input panel is automatically enabled when the entry has text.
+ * The default value is EINA_FALSE.
+ *
+ * @param obj The entry object
+ * @param on If @p on is EINA_TRUE, the return key is automatically disabled when the entry has no text.
+ * @deprecated Use elm_entry_input_panel_return_key_autoenabled_set() instead
+ */
+EINA_DEPRECATED EAPI void   elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on);
+
+/**
  * Convert a pixel coordinate into a rotated pixel coordinate.
  *
  * @param obj The map object.
index ab55223..f188cf3 100644 (file)
@@ -1418,9 +1418,6 @@ struct _Elm_Entry_Filter_Accept_Set
  */
 EAPI void                   elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text);
 
-EAPI void                   elm_entry_autocapitalization_set(Evas_Object *obj, Eina_Bool autocap);
-EINA_DEPRECATED EAPI void   elm_entry_autoperiod_set(Evas_Object *obj, Eina_Bool autoperiod);
-EINA_DEPRECATED EAPI void   elm_entry_autoenable_returnkey_set(Evas_Object *obj, Eina_Bool on);
 EAPI Ecore_IMF_Context     *elm_entry_imf_context_get(Evas_Object *obj);
 EAPI void                   elm_entry_magnifier_type_set(Evas_Object *obj, int type);