remove autoperiod_set APIs. It's not used anywhere.
authorJihoon Kim <jihoon48.kim@samsung.com>
Mon, 20 Feb 2012 23:20:06 +0000 (08:20 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Mon, 20 Feb 2012 23:20:06 +0000 (08:20 +0900)
Change-Id: I9f4f0eadd4e2af5ed5df38455dc21eb48fccb674

src/lib/Edje.h
src/lib/edje_entry.c
src/lib/edje_private.h
src/lib/edje_util.c

index 68e631c..dfbf305 100644 (file)
@@ -2889,16 +2889,6 @@ EAPI void             edje_object_part_text_imf_context_reset           (const E
 EAPI Eina_Bool        edje_object_part_text_selection_geometry_get     (const Evas_Object *obj, const char *part, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h);
 
 /**
- * @brief Enables autoperiod.
- * Autoperiod is the feature that period (.) will be automatically added when space bar is pressed twice in a short time.
- *
- * @param obj A valid Evas_Object handle
- * @param part The part name
- * @param autoperiod EINA_TRUE to enable, EINA_FALSE otherwise
- */
-EAPI void             edje_object_part_text_autoperiod_set (const Evas_Object *obj, const char *part, Eina_Bool autoperiod);
-
-/**
  * @brief Get the input method context in entry.
  *
  * @param obj A valid Evas_Object handle
index 62425bc..608e07c 100644 (file)
@@ -2738,9 +2738,7 @@ _edje_entry_real_part_init(Edje_Real_Part *rp)
                                          ECORE_IMF_INPUT_MODE_INVISIBLE : ECORE_IMF_INPUT_MODE_FULL);
 
         if (rp->part->entry_mode == EDJE_ENTRY_EDIT_MODE_PASSWORD)
-          {
-             ecore_imf_context_input_panel_language_set(en->imf_context, ECORE_IMF_INPUT_PANEL_LANG_ALPHABET);
-          }
+          ecore_imf_context_input_panel_language_set(en->imf_context, ECORE_IMF_INPUT_PANEL_LANG_ALPHABET);
 #endif
      }
 #ifdef HAVE_ECORE_IMF
@@ -3199,12 +3197,6 @@ _edje_entry_select_abort(Edje_Real_Part *rp)
      }
 }
 
-void
-_edje_entry_autoperiod_set(Edje_Real_Part *rp, Eina_Bool autoperiod)
-{
-   // this API will be deprecated.
-}
-
 #ifdef HAVE_ECORE_IMF
 Ecore_IMF_Context *
 _edje_entry_imf_context_get(Edje_Real_Part *rp)
index e243304..3855767 100644 (file)
@@ -1924,7 +1924,6 @@ void _edje_entry_select_allow_set(Edje_Real_Part *rp, Eina_Bool allow);
 Eina_Bool _edje_entry_select_allow_get(const Edje_Real_Part *rp);
 void _edje_entry_select_abort(Edje_Real_Part *rp);
 void _edje_entry_viewport_object_set(Edje_Real_Part *rp, Evas_Object *obj);
-void _edje_entry_autoperiod_set(Edje_Real_Part *rp, Eina_Bool autoperiod);
 #ifdef HAVE_ECORE_IMF
 Ecore_IMF_Context *_edje_entry_imf_context_get(Edje_Real_Part *rp);
 #endif
index 82c96df..c347d06 100644 (file)
@@ -1583,22 +1583,6 @@ edje_object_part_text_select_extend(const Evas_Object *obj, const char *part)
      _edje_entry_select_extend(rp);
 }
 
-EAPI void
-edje_object_part_text_autoperiod_set(const Evas_Object *obj, const char *part, Eina_Bool autoperiod)
-{
-   Edje *ed;
-   Edje_Real_Part *rp;
-
-   ed = _edje_fetch(obj);
-   if ((!ed) || (!part)) return;
-   rp = _edje_real_part_recursive_get(ed, (char *)part);
-   if (!rp) return;
-   if (rp->part->entry_mode > EDJE_ENTRY_EDIT_MODE_NONE)
-     {
-        _edje_entry_autoperiod_set(rp, autoperiod);
-     }
-}
-
 #ifdef HAVE_ECORE_IMF
 EAPI Ecore_IMF_Context *
 edje_object_part_text_imf_context_get(const Evas_Object *obj, const char *part)