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
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
}
}
-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)
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
_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)