python-efl/efl/elementary/entry.pxi

1968 lines
65 KiB
Cython

# Copyright (C) 2007-2022 various contributors (see AUTHORS)
#
# This file is part of Python-EFL.
#
# Python-EFL is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3 of the License, or (at your option) any later version.
#
# Python-EFL is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this Python-EFL. If not, see <http://www.gnu.org/licenses/>.
#
include "entry_cdef.pxi"
cdef void _entry_context_menu_callback(void *data, Evas_Object *obj, void *event_info) with gil:
(callback, a, ka) = <object>data
try:
o = object_from_instance(obj)
callback(o, *a, **ka)
except Exception:
traceback.print_exc()
@DEPRECATED("1.8", "Use markup_to_utf8() instead.")
def Entry_markup_to_utf8(string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_markup_to_utf8(
<const char *>string if string is not None else NULL))
@DEPRECATED("1.8", "Use utf8_to_markup() instead.")
def Entry_utf8_to_markup(string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_utf8_to_markup(
<const char *>string if string is not None else NULL))
def markup_to_utf8(string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_markup_to_utf8(
<const char *>string if string is not None else NULL))
def utf8_to_markup(string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_utf8_to_markup(
<const char *>string if string is not None else NULL))
cdef class EntryContextMenuItem(object):
"""
Type of contextual item that can be added in to long press menu.
.. versionadded:: 1.8
"""
cdef Elm_Entry_Context_Menu_Item *item
property label:
"""Get the text of the contextual menu item.
:type: unicode
.. versionadded:: 1.8
"""
def __get__(self):
return _ctouni(elm_entry_context_menu_item_label_get(self.item))
property icon:
"""Get the icon object of the contextual menu item.
:type: (unicode **icon_file**, unicode **icon_group**, :ref:`Icon type <Elm_Icon_Type>` **icon_type**)
.. versionadded:: 1.8
"""
def __get__(self):
cdef:
const char *icon_file
const char *icon_group
Elm_Icon_Type icon_type
elm_entry_context_menu_item_icon_get(self.item,
&icon_file,
&icon_group,
&icon_type)
return (_ctouni(icon_file), _ctouni(icon_group), icon_type)
cdef class FilterLimitSize(object):
"""
Data for the :py:meth:`~efl.elementary.entry.Entry.filter_limit_size`
entry filter.
"""
cdef:
Elm_Entry_Filter_Limit_Size *fltr
property max_char_count:
"""The maximum number of characters allowed.
:type: int
"""
def __set__(self, value):
self.fltr.max_char_count = value
def __get__(self):
return self.fltr.max_char_count
property max_byte_count:
"""The maximum number of bytes allowed.
:type: int
"""
def __set__(self, value):
self.fltr.max_byte_count = value
def __get__(self):
return self.fltr.max_byte_count
cdef class FilterAcceptSet(object):
"""
Data for the :py:meth:`~efl.elementary.entry.Entry.filter_accept_set`
entry filter.
"""
cdef:
Elm_Entry_Filter_Accept_Set *fltr
property accepted:
"""Set of characters accepted in the entry.
:type: string
"""
def __set__(self, value):
if isinstance(value, unicode): value = PyUnicode_AsUTF8String(value)
self.fltr.accepted = value
def __get__(self):
return _ctouni(self.fltr.accepted)
property rejected:
"""Set of characters rejected from the entry.
:type: string
"""
def __set__(self, value):
if isinstance(value, unicode): value = PyUnicode_AsUTF8String(value)
self.fltr.rejected = value
def __get__(self):
return _ctouni(self.fltr.rejected)
cdef void py_elm_entry_filter_cb(void *data, Evas_Object *entry, char **text) with gil:
"""This callback type is used by entry filters to modify text.
:param data: The data specified as the last param when adding the filter
:param entry: The entry object
:param text: A pointer to the location of the text being filtered. The type
of text is always markup. This data can be modified, but any additional
allocations must be managed by the user.
"""
cdef:
Entry en = object_from_instance(entry)
object ret
for cb_func, cb_data in en.markup_filters:
try:
ret = cb_func(en, _touni(text[0]), cb_data)
except Exception:
traceback.print_exc()
if ret is None:
free(text[0])
text[0] = NULL
return
if isinstance(ret, unicode): ret = PyUnicode_AsUTF8String(ret)
text[0] = strdup(<char *>ret)
cdef class EntryAnchorInfo(object):
"""
The info sent in the callback for the ``anchor,clicked`` signals emitted
by entries.
.. attribute:: name
The name of the anchor, as stated in its href.
:type: string
.. attribute:: button
The mouse button used to click on it.
:type: :class:`~efl.elementary.button.Button`
.. attribute:: x
Anchor geometry, relative to canvas.
:type: int
.. attribute:: y
Anchor geometry, relative to canvas.
:type: int
.. attribute:: w
Anchor geometry, relative to canvas.
:type: int
.. attribute:: h
Anchor geometry, relative to canvas.
:type: int
"""
cdef:
readonly unicode name
readonly int button, x, y, w, h
@staticmethod
cdef EntryAnchorInfo create(Elm_Entry_Anchor_Info *addr):
cdef EntryAnchorInfo self = EntryAnchorInfo.__new__(EntryAnchorInfo)
self.name = _ctouni(addr.name)
self.button = addr.button
self.x = addr.x
self.y = addr.y
self.w = addr.w
self.h = addr.h
return self
cdef object _entryanchor_conv(void *addr):
return EntryAnchorInfo.create(<Elm_Entry_Anchor_Info *>addr)
cdef class EntryAnchorHoverInfo(object):
"""
The info sent in the callback for ``anchor,hover,opened`` signals emitted
by the entries.
.. attribute:: anchor_info
The actual anchor info.
:type: :class:`EntryAnchorInfo`
.. attribute:: hover
The hover object to use for the popup.
:type: :class:`~efl.elementary.hover.Hover`
.. attribute:: hover_parent
The object used as parent by the hover.
:type: :class:`~efl.eo.Eo`
.. attribute:: hover_left
Hint indicating if there's space for content on the left side of the hover.
:type: bool
.. attribute:: hover_right
Hint indicating content fits on the right side of the hover.
:type: bool
.. attribute:: hover_top
Hint indicating content fits on top of the hover.
:type: bool
.. attribute:: hover_bottom
Hint indicating content fits below the hover.
:type: bool
"""
cdef:
readonly EntryAnchorInfo anchor_info
readonly object hover
readonly tuple hover_parent
readonly bint hover_left, hover_right, hover_top, hover_bottom
@staticmethod
cdef EntryAnchorHoverInfo create(Elm_Entry_Anchor_Hover_Info *addr):
cdef EntryAnchorHoverInfo self = EntryAnchorHoverInfo.__new__(EntryAnchorHoverInfo)
self.anchor_info = _entryanchor_conv(<void *>addr.anchor_info)
self.hover = object_from_instance(addr.hover)
self.hover_parent = (addr.hover_parent.x, addr.hover_parent.y,
addr.hover_parent.w, addr.hover_parent.h)
self.hover_left = addr.hover_left
self.hover_right = addr.hover_right
self.hover_top = addr.hover_top
self.hover_bottom = addr.hover_bottom
return self
cdef object _entryanchorhover_conv(void *addr):
return EntryAnchorHoverInfo.create(<Elm_Entry_Anchor_Hover_Info *>addr)
cdef class Entry(LayoutClass):
"""
This is the class that actually implements the widget.
By default, entries are:
- not scrolled
- multi-line
- word wrapped
- autosave is enabled
.. versionchanged:: 1.8
Inherits from :py:class:`~efl.elementary.layout_class.LayoutClass`.
"""
cdef list markup_filters
def __cinit__(self):
self.markup_filters = []
def __init__(self, evasObject parent, *args, **kwargs):
"""
:param parent: The parent object
:type parent: :py:class:`efl.evas.Object`
:param \**kwargs: All the remaining keyword arguments are interpreted
as properties of the instance
"""
self._set_obj(elm_entry_add(parent.obj))
self._set_properties_from_keyword_args(kwargs)
def text_style_user_push(self, style):
"""Push the style to the top of user style stack.
If there is styles in the user style stack, the properties in the
top style of user style stack will replace the properties in current
theme. The input style is specified in format::
tag='property=value'
i.e.::
DEFAULT='font=Sans font_size=60' hilight=' + font_weight=Bold'
:param string style: The style user to push
.. versionadded:: 1.8
"""
if isinstance(style, unicode): style = PyUnicode_AsUTF8String(style)
elm_entry_text_style_user_push(self.obj,
<const char *>style if style is not None else NULL)
def text_style_user_pop(self):
"""Remove the style in the top of user style stack.
:seealso: :py:meth:`text_style_user_push`
.. versionadded:: 1.8
"""
elm_entry_text_style_user_pop(self.obj)
def text_style_user_peek(self):
"""Retrieve the style on the top of user style stack.
:return string: style on the top of user style stack if exist, otherwise None.
:seealso: :py:meth:`text_style_user_push`
.. versionadded:: 1.8
"""
return _ctouni(elm_entry_text_style_user_peek(self.obj))
property single_line:
"""Single line mode.
In single line mode, entries don't ever wrap when the text reaches the
edge, and instead they keep growing horizontally. Pressing the ``Enter``
key will generate an ``"activate"`` event instead of adding a new line.
When ``single_line`` is ``False``, line wrapping takes effect again
and pressing enter will break the text into a different line
without generating any events.
:type: bool
"""
def __get__(self):
return bool(elm_entry_single_line_get(self.obj))
def __set__(self, single_line):
elm_entry_single_line_set(self.obj, single_line)
def single_line_set(self, single_line):
elm_entry_single_line_set(self.obj, single_line)
def single_line_get(self):
return bool(elm_entry_single_line_get(self.obj))
property password:
"""Sets the entry to password mode.
In password mode, entries are implicitly single line and the display
of any text in them is replaced with asterisks (*).
:type: bool
"""
def __get__(self):
return bool(elm_entry_password_get(self.obj))
def __set__(self, password):
elm_entry_password_set(self.obj, password)
def password_set(self, password):
elm_entry_password_set(self.obj, password)
def password_get(self):
return bool(elm_entry_password_get(self.obj))
property entry:
"""The text displayed within the entry to *entry*.
.. note:: Setting this bypasses text filters
:type: string
"""
def __get__(self):
return _ctouni(elm_entry_entry_get(self.obj))
def __set__(self, entry):
if isinstance(entry, unicode): entry = PyUnicode_AsUTF8String(entry)
elm_entry_entry_set(self.obj,
<const char *>entry if entry is not None else NULL)
def entry_set(self, entry):
if isinstance(entry, unicode): entry = PyUnicode_AsUTF8String(entry)
elm_entry_entry_set(self.obj,
<const char *>entry if entry is not None else NULL)
def entry_get(self):
return _ctouni(elm_entry_entry_get(self.obj))
def entry_append(self, text):
"""Appends ``entry`` to the text of the entry.
Adds the text in ``entry`` to the end of any text already present in
the widget.
The appended text is subject to any filters set for the widget.
:seealso: :py:meth:`markup_filter_append`
:param string entry: The text to be displayed
"""
if isinstance(text, unicode): text = PyUnicode_AsUTF8String(text)
elm_entry_entry_append(self.obj,
<const char *>text if text is not None else NULL)
property is_empty:
"""Gets whether the entry is empty.
Empty means no text at all. If there are any markup tags, like an
item tag for which no provider finds anything, and no text is
displayed, this function still returns False.
:type: bool
"""
def __get__(self):
return elm_entry_is_empty(self.obj)
property selection:
"""Gets any selected text within the entry.
If there's any selected text in the entry, this function returns it as
a string in markup format. None is returned if no selection exists or
if an error occurred.
:type: string
"""
def __get__(self):
return _ctouni(elm_entry_selection_get(self.obj))
def selection_get(self):
return _ctouni(elm_entry_selection_get(self.obj))
property textblock:
"""Returns the actual textblock object of the entry.
This function exposes the internal textblock object that actually
contains and draws the text. This should be used for low-level
manipulations that are otherwise not possible.
Changing the textblock directly from here will not notify edje/elm to
recalculate the textblock size automatically, so any modifications
done to the textblock returned by this function should be followed by
a call to :py:func:`calc_force()`.
The return value is marked as const as an additional warning.
One should not use the returned object with any of the generic evas
functions (geometry_get/resize/move and etc), but only with the textblock
functions; The former will either not work at all, or break the correct
functionality.
.. warning::
Many functions may change (i.e delete and create a new one) the
internal textblock object. Do NOT cache the returned object, and
try not to mix calls on this object with regular elm_entry calls
(which may change the internal textblock object). This applies to
all cursors returned from textblock calls, and all the other
derivative values.
:type: :py:class:`~efl.evas.Textblock`
"""
def __get__(self):
return object_from_instance(elm_entry_textblock_get(self.obj))
def textblock_get(self):
return object_from_instance(elm_entry_textblock_get(self.obj))
def calc_force(self):
"""Forces calculation of the entry size and text layouting.
This should be used after modifying the textblock object directly.
:seealso: :py:attr:`textblock`
"""
elm_entry_calc_force(self.obj)
def entry_insert(self, entry):
"""Inserts the given text into the entry at the current cursor
position.
This inserts text at the cursor position as if it was typed by the
user (note that this also allows markup which a user can't just
"type" as it would be converted to escaped text, so this call can be
used to insert things like emoticon items or bold push/pop tags,
other font and color change tags etc.)
If any selection exists, it will be replaced by the inserted text.
The inserted text is subject to any filters set for the widget.
:seealso: :py:meth:`markup_filter_append`
:param entry: The text to insert
:type entry: string
"""
if isinstance(entry, unicode): entry = PyUnicode_AsUTF8String(entry)
elm_entry_entry_insert(self.obj,
<const char *>entry if entry is not None else NULL)
property line_wrap:
"""The line wrap type to use on multi-line entries.
This tells how the text will be implicitly cut into a new line
(without inserting a line break or paragraph separator) when it
reaches the far edge of the widget.
Note that this only makes sense for multi-line entries. A widget set
to be single line will never wrap.
:type: :ref:`Elm_Wrap_Type`
"""
def __get__(self):
return elm_entry_line_wrap_get(self.obj)
def __set__(self, wrap):
elm_entry_line_wrap_set(self.obj, wrap)
def line_wrap_set(self, wrap):
elm_entry_line_wrap_set(self.obj, wrap)
def line_wrap_get(self):
return elm_entry_line_wrap_get(self.obj)
property editable:
"""If the entry is to be editable or not.
By default, entries are editable and when focused, any text input by
the user will be inserted at the current cursor position. Setting
this as False will prevent the user from inputting text into the
entry.
The only way to change the text of a non-editable entry is to use
:py:attr:`~efl.elementary.object.Object.text`, :py:meth:`entry_insert`
and other related functions and properties.
:type: bool
"""
def __get__(self):
return bool(elm_entry_editable_get(self.obj))
def __set__(self, bint editable):
elm_entry_editable_set(self.obj, editable)
def editable_set(self, bint editable):
elm_entry_editable_set(self.obj, editable)
def editable_get(self):
return bool(elm_entry_editable_get(self.obj))
def select_none(self):
"""This drops any existing text selection within the entry."""
elm_entry_select_none(self.obj)
def select_all(self):
"""This selects all text within the entry."""
elm_entry_select_all(self.obj)
property select_region:
"""The selected region within the entry.
:type: 2 ints tuple (start, end)
.. versionadded:: 1.18
"""
def __get__(self):
cdef int start, end
elm_entry_select_region_get(self.obj, &start, &end)
return (start, end)
def __set__(self, value):
cdef int start, end
start, end = value
elm_entry_select_region_set(self.obj, start, end)
def select_region_set(self, int start, int end):
"""This selects a region of text within the entry.
:param start: The starting position
:type start: int
:param end: The ending position
:type end: int
.. versionadded:: 1.9
"""
elm_entry_select_region_set(self.obj, start, end)
def select_region_get(self):
"""Get the current position of the selection cursors in the entry.
:return: the 2 ints tuple (start, end)
:rtype: tuple
.. versionadded:: 1.18
"""
cdef int start, end
elm_entry_select_region_get(self.obj, &start, &end)
return (start, end)
property select_allow:
"""Whether selection in the entry is allowed.
:type: bool
.. versionadded:: 1.18
"""
def __get__(self):
return bool(elm_entry_select_allow_get(self.obj))
def __set__(self, bint allow):
elm_entry_select_allow_set(self.obj, allow)
def select_allow_set(self, bint allow):
elm_entry_select_allow_set(self.obj, allow)
def select_allow_get(self):
return bool(elm_entry_select_allow_get(self.obj))
def cursor_next(self):
"""This moves the cursor one place to the right within the entry.
:return: True upon success, False upon failure
:rtype: bool
"""
return bool(elm_entry_cursor_next(self.obj))
def cursor_prev(self):
"""This moves the cursor one place to the left within the entry.
:return: True upon success, False upon failure
:rtype: bool
"""
return bool(elm_entry_cursor_prev(self.obj))
def cursor_up(self):
"""This moves the cursor one line up within the entry.
:return: True upon success, False upon failure
:rtype: bool
"""
return bool(elm_entry_cursor_up(self.obj))
def cursor_down(self):
"""This moves the cursor one line down within the entry.
:return: True upon success, False upon failure
:rtype: bool
"""
return bool(elm_entry_cursor_down(self.obj))
def cursor_begin_set(self):
"""This moves the cursor to the beginning of the entry."""
elm_entry_cursor_begin_set(self.obj)
def cursor_end_set(self):
"""This moves the cursor to the end of the entry."""
elm_entry_cursor_end_set(self.obj)
def cursor_line_begin_set(self):
"""This moves the cursor to the beginning of the current line."""
elm_entry_cursor_line_begin_set(self.obj)
def cursor_line_end_set(self):
"""This moves the cursor to the end of the current line."""
elm_entry_cursor_line_end_set(self.obj)
def cursor_selection_begin(self):
"""This begins a selection within the entry as though the user were
holding down the mouse button to make a selection."""
elm_entry_cursor_selection_begin(self.obj)
def cursor_selection_end(self):
"""This ends a selection within the entry as though the user had
just released the mouse button while making a selection."""
elm_entry_cursor_selection_end(self.obj)
def cursor_is_format_get(self):
"""Gets whether a format node exists at the current cursor position.
A format node is anything that defines how the text is rendered. It
can be a visible format node, such as a line break or a paragraph
separator, or an invisible one, such as bold begin or end tag. This
function returns whether any format node exists at the current
cursor position.
:seealso: :py:meth:`cursor_is_visible_format_get`
:return: True if the current cursor position contains a format node,
False otherwise.
:rtype: bool
"""
return bool(elm_entry_cursor_is_format_get(self.obj))
def cursor_is_visible_format_get(self):
"""Gets if the current cursor position holds a visible format node.
:seealso: :py:meth:`cursor_is_format_get`
:return: True if the current cursor is a visible format, False
if it's an invisible one or no format exists.
:rtype: bool
"""
return bool(elm_entry_cursor_is_visible_format_get(self.obj))
def cursor_content_get(self):
"""Gets the character pointed by the cursor at its current position.
This function returns a string with the utf8 character stored at the
current cursor position.
Only the text is returned, any format that may exist will not be part
of the return value.
:return: The text pointed by the cursors.
:rtype: unicode
"""
return _ctouni(elm_entry_cursor_content_get(self.obj))
def cursor_geometry_get(self):
"""This function returns the geometry of the cursor.
It's useful if you want to draw something on the cursor (or where it is),
or for example in the case of scrolled entry where you want to show the
cursor.
:return: Geometry (x, y, w, h)
:rtype: tuple of Evas_Coords (int) or None
.. versionchanged:: 1.8
Returns None when the cursor geometry cannot be fetched.
"""
cdef Evas_Coord x, y, w, h
if elm_entry_cursor_geometry_get(self.obj, &x, &y, &w, &h):
return (x, y, w, h)
else:
return None
property cursor_pos:
"""The cursor position in the entry
The value is the index of the character position within the
contents of the string.
:type: int
"""
def __get__(self):
return elm_entry_cursor_pos_get(self.obj)
def __set__(self, pos):
elm_entry_cursor_pos_set(self.obj, pos)
def cursor_pos_set(self, pos):
elm_entry_cursor_pos_set(self.obj, pos)
def cursor_pos_get(self):
return elm_entry_cursor_pos_get(self.obj)
def selection_cut(self):
"""This executes a "cut" action on the selected text in the entry."""
elm_entry_selection_cut(self.obj)
def selection_copy(self):
"""This executes a "copy" action on the selected text in the entry."""
elm_entry_selection_copy(self.obj)
def selection_paste(self):
"""This executes a "paste" action in the entry."""
elm_entry_selection_paste(self.obj)
def context_menu_clear(self):
"""This clears and frees the items in a entry's contextual (longpress) menu.
.. seealso:: :py:meth:`context_menu_item_add`
"""
elm_entry_context_menu_clear(self.obj)
def context_menu_item_add(self, label = None, icon_file = None, Elm_Icon_Type icon_type = enums.ELM_ICON_NONE, func = None, *args, **kwargs):
"""This adds an item to the entry's contextual menu.
A longpress on an entry will make the contextual menu show up, if this
hasn't been disabled with :py:attr:`context_menu_disabled`.
By default, this menu provides a few options like enabling selection mode,
which is useful on embedded devices that need to be explicit about it,
and when a selection exists it also shows the copy and cut actions.
With this function, developers can add other options to this menu to
perform any action they deem necessary.
:param label: The item's text label
:type label: string
:param icon_file: The item's icon file
:type icon_file: string
:param icon_type: The item's icon type
:type icon_type: string
:param func: The callback to execute when the item is clicked
:type func: function
.. versionadded:: 1.8
"""
cdef Evas_Smart_Cb cb = NULL
if func is not None:
if not callable(func):
raise TypeError("func is not callable.")
cb = _entry_context_menu_callback
data = (func, args, kwargs)
if isinstance(label, unicode): label = PyUnicode_AsUTF8String(label)
if isinstance(icon_file, unicode): icon_file = PyUnicode_AsUTF8String(icon_file)
elm_entry_context_menu_item_add(self.obj,
<const char *>label if label is not None else NULL,
<const char *>icon_file if icon_file is not None else NULL,
icon_type,
cb,
<void *>data if func is not None else NULL)
property context_menu_disabled:
"""This disables the entry's contextual (longpress) menu.
:type: bool
"""
def __get__(self):
return elm_entry_context_menu_disabled_get(self.obj)
def __set__(self, disabled):
elm_entry_context_menu_disabled_set(self.obj, disabled)
def context_menu_disabled_set(self, disabled):
elm_entry_context_menu_disabled_set(self.obj, disabled)
def context_menu_disabled_get(self):
return elm_entry_context_menu_disabled_get(self.obj)
# TODO:
# def item_provide_append(self, func, data):
# """This appends a custom item provider to the list for that entry
# This appends the given callback. The list is walked from beginning to end
# with each function called given the item href string in the text. If the
# function returns an object handle other than NULL (it should create an
# object to do this), then this object is used to replace that item. If
# not the next provider is called until one provides an item object, or the
# default provider in entry does.
# :param func: The function called to provide the item object
# :param data: The data passed to ``func``
# """
# elm_entry_item_provider_append(self.obj, Elm_Entry_Item_Provider_Cb func, void *data)
# TODO:
# def item_provider_prepend(self, func, data):
# """This prepends a custom item provider to the list for that entry
# This prepends the given callback. See elm_entry_item_provider_append() for
# more information
# :param func: The function called to provide the item object
# :param data: The data passed to ``func``
# """
# elm_entry_item_provider_prepend(self.obj, Elm_Entry_Item_Provider_Cb func, void *data)
# TODO:
# def item_provider_remove(self, func, data):
# """This removes a custom item provider to the list for that entry
# This removes the given callback. See elm_entry_item_provider_append() for
# more information
# :param func: The function called to provide the item object
# :param data: The data passed to ``func``
# """
# elm_entry_item_provider_remove(self.obj, Elm_Entry_Item_Provider_Cb func, void *data)
def markup_filter_append(self, func, data=None):
"""Append a markup filter function for text inserted in the entry
Append the given callback to the list. This functions will be called
whenever any text is inserted into the entry, with the text to be
inserted as a parameter. The type of given text is always markup. The
callback function is free to alter the text in any way it wants. If the
new text is to be discarded, the function can return None. This will
also prevent any following filters from being called.
:param func: The function to use as text filter
:param data: User data to pass to ``func``
.. versionadded:: 1.8
"""
if not callable(func):
raise TypeError("func must be callable")
if not self.markup_filters:
elm_entry_markup_filter_append(self.obj,
py_elm_entry_filter_cb,
NULL)
cb_data = (func, data)
self.markup_filters.append(cb_data)
def markup_filter_prepend(self, func, data=None):
"""Prepend a markup filter function for text inserted in the entry
Prepend the given callback to the list. See
:py:meth:`markup_filter_append` for more information
:param func: The function to use as text filter
:param data: User data to pass to ``func``
.. versionadded:: 1.8
"""
if not callable(func):
raise TypeError("func must be callable")
if not self.markup_filters:
elm_entry_markup_filter_append(self.obj,
py_elm_entry_filter_cb,
NULL)
cb_data = (func, data)
self.markup_filters.insert(0, cb_data)
def markup_filter_remove(self, func, data=None):
"""Remove a markup filter from the list
Removes the given callback from the filter list. See
:py:meth:`markup_filter_append` for more information
:param func: The filter function to remove
:param data: The user data passed when adding the function
.. versionadded:: 1.8
"""
f = None
d = None
lst = self.markup_filters
for i, (f, d) in enumerate(lst):
if func is f and data is d:
break
if f is not func or d is not data:
raise ValueError("Callback was not registered with this object.")
lst.pop(i)
if lst:
return
elm_entry_markup_filter_remove(self.obj,
py_elm_entry_filter_cb,
NULL)
@DEPRECATED("1.8", "Use the module level markup_to_utf8() method instead.")
def markup_to_utf8(self, string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_markup_to_utf8(
<const char *>string if string is not None else NULL))
@DEPRECATED("1.8", "Use the module level utf8_to_markup() method instead.")
def utf8_to_markup(self, string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
return _touni(elm_entry_utf8_to_markup(
<const char *>string if string is not None else NULL))
property file:
"""The file for the text to display and then edit.
All changes are written back to the file after a short delay if
the entry object is set to autosave (which is the default).
If the entry had any other file set previously, any changes made to it
will be saved if the autosave feature is enabled, otherwise, the file
will be silently discarded and any non-saved changes will be lost.
:type: (unicode **file_name**, :ref:`Elm_Entry_Text_Format` **file_format**)
:raise RuntimeError: when setting the file fails
.. versionchanged:: 1.8
Raise RuntimeError when setting the file fails, instead of
returning a bool.
"""
def __get__(self):
cdef const char *file
cdef Elm_Text_Format format
elm_entry_file_get(self.obj, &file, &format)
return (_ctouni(file), format)
def __set__(self, value):
file_name, file_format = value
a1 = file_name
a2 = file_format
if isinstance(a1, unicode): a1 = PyUnicode_AsUTF8String(a1)
if not elm_entry_file_set(self.obj,
<const char *>a1 if a1 is not None else NULL,
a2 if a2 is not None else enums.ELM_TEXT_FORMAT_PLAIN_UTF8):
raise RuntimeError("Could not set file")
def file_set(self, file_name, file_format):
a1 = file_name
a2 = file_format
if isinstance(a1, unicode): a1 = PyUnicode_AsUTF8String(a1)
if not elm_entry_file_set(self.obj,
<const char *>a1 if a1 is not None else NULL,
a2 if a2 is not None else enums.ELM_TEXT_FORMAT_PLAIN_UTF8):
raise RuntimeError("Could not set file")
def file_get(self):
cdef const char *file
cdef Elm_Text_Format format
elm_entry_file_get(self.obj, &file, &format)
return (_ctouni(file), format)
def file_save(self):
"""This function writes any changes made to the file set with
:py:attr:`file`.
"""
elm_entry_file_save(self.obj)
property file_text_format:
"""The text format used to load and save the file
Text format can be plain text or markup text.
Default is ``ELM_TEXT_FORMAT_PLAIN_UTF8``, if you want to use
``ELM_TEXT_FORMAT_MARKUP_UTF8`` then you need to set the text format
before calling :attr:`file` or :func:`file_set`.
You could also set it before a call to :func:`file_save` in order to
save with the given format.
:type: :ref:`Elm_Entry_Text_Format` (**write only**)
.. versionadded:: 1.18
"""
def __set__(self, Elm_Text_Format format):
elm_entry_file_text_format_set(self.obj, format)
def file_text_format_set(self, Elm_Text_Format format):
elm_entry_file_text_format_set(self.obj, format)
property autosave:
"""Whether the entry object 'autosaves' the loaded text file or not.
:type: bool
"""
def __get__(self):
return elm_entry_autosave_get(self.obj)
def __set__(self, autosave):
elm_entry_autosave_set(self.obj, autosave)
def autosave_set(self, autosave):
elm_entry_autosave_set(self.obj, autosave)
def autosave_get(self):
return elm_entry_autosave_get(self.obj)
property scrollable:
"""Enable or disable scrolling in entry
Normally the entry is not scrollable.
:type: bool
"""
def __get__(self):
return bool(elm_entry_scrollable_get(self.obj))
def __set__(self, scrollable):
elm_entry_scrollable_set(self.obj, scrollable)
def scrollable_set(self, scrollable):
elm_entry_scrollable_set(self.obj, scrollable)
def scrollable_get(self):
return bool(elm_entry_scrollable_get(self.obj))
property icon_visible:
"""Sets the visibility of the end widget of the entry, set by
``Entry.part_content_set("icon", content)``.
:type: bool
"""
def __set__(self, bint visible):
elm_entry_icon_visible_set(self.obj, visible)
def icon_visible_set(self, bint visible):
elm_entry_icon_visible_set(self.obj, visible)
property end_visible:
"""Sets the visibility of the end widget of the entry, set by
``Entry.part_content_set("end", content)``.
:type: bool
.. versionadded:: 1.8
"""
def __set__(self, bint setting):
elm_entry_end_visible_set(self.obj, setting)
def end_visible_set(self, bint setting):
elm_entry_end_visible_set(self.obj, setting)
property input_hint:
"""The input hint which allows input methods to fine-tune their behavior.
:type: :ref:`Elm_Input_Hints`
.. versionadded:: 1.12
"""
def __get__(self):
return elm_entry_input_hint_get(self.obj)
def __set__(self, hints):
elm_entry_input_hint_set(self.obj, hints)
def input_hint_set(self, hints):
elm_entry_input_hint_set(self.obj, hints)
def input_hint_get(self):
return elm_entry_input_hint_get(self.obj)
property input_panel_layout:
"""The input panel layout of the entry
:type: :ref:`Elm_Entry_Input_Panel_Layout`
"""
def __get__(self):
return elm_entry_input_panel_layout_get(self.obj)
def __set__(self, layout):
elm_entry_input_panel_layout_set(self.obj, layout)
def input_panel_layout_set(self, layout):
elm_entry_input_panel_layout_set(self.obj, layout)
def input_panel_layout_get(self):
return elm_entry_input_panel_layout_get(self.obj)
property input_panel_layout_variation:
"""Input panel layout variation of the entry
:type: int
.. versionadded:: 1.8
"""
def __set__(self, int variation):
elm_entry_input_panel_layout_variation_set(self.obj, variation)
def __get__(self):
return elm_entry_input_panel_layout_variation_get(self.obj)
def input_panel_layout_variation_set(self, int variation):
elm_entry_input_panel_layout_variation_set(self.obj, variation)
def input_panel_layout_variation_get(self):
return elm_entry_input_panel_layout_variation_get(self.obj)
property input_panel_show_on_demand:
"""Input panel show on demand.
Set the attribute to show the input panel in case of only
an user's explicit Mouse Up event.
:type: bool
.. versionadded:: 1.9
"""
def __set__(self, ondemand):
elm_entry_input_panel_show_on_demand_set(self.obj, ondemand)
def __get__(self):
return bool(elm_entry_input_panel_show_on_demand_get(self.obj))
def input_panel_show_on_demand_set(self, ondemand):
elm_entry_input_panel_show_on_demand_set(self.obj, ondemand)
def input_panel_show_on_demand_get(self):
return bool(elm_entry_input_panel_show_on_demand_get(self.obj))
property autocapital_type:
"""Autocapitalization type on the immodule.
:type: :ref:`Elm_Entry_Autocapital_Type`
.. versionadded:: 1.8
"""
def __set__(self, Elm_Autocapital_Type autocapital_type):
elm_entry_autocapital_type_set(self.obj, autocapital_type)
def __get__(self):
return elm_entry_autocapital_type_get(self.obj)
def autocapital_type_set(self, Elm_Autocapital_Type autocapital_type):
elm_entry_autocapital_type_set(self.obj, autocapital_type)
def autocapital_type_get(self):
return elm_entry_autocapital_type_get(self.obj)
property input_panel_enabled:
"""Whether to show the input panel automatically or not.
:type: bool
"""
def __get__(self):
return bool(elm_entry_input_panel_enabled_get(self.obj))
def __set__(self, enabled):
elm_entry_input_panel_enabled_set(self.obj, enabled)
def input_panel_enabled_set(self, enabled):
elm_entry_input_panel_enabled_set(self.obj, enabled)
def input_panel_enabled_get(self):
return bool(elm_entry_input_panel_enabled_get(self.obj))
def input_panel_show(self):
"""Show the input panel (virtual keyboard) based on the input panel
property of entry such as layout, autocapital types, and so on.
Note that input panel is shown or hidden automatically according to the
focus state of entry widget.
This API can be used in the case of manually controlling by using
*Entry.input_panel_enabled = False*.
"""
elm_entry_input_panel_show(self.obj)
def input_panel_hide(self):
"""Hide the input panel (virtual keyboard).
Note that input panel is shown or hidden automatically according to the
focus state of entry widget.
This API can be used in the case of manually controlling by using
*Entry.input_panel_enabled_set = False*.
"""
elm_entry_input_panel_hide(self.obj)
property input_panel_language:
"""The language mode of the input panel.
This API can be used if you want to show the alphabet keyboard mode.
:type: :ref:`Elm_Entry_Input_Panel_Lang`
"""
def __get__(self):
return elm_entry_input_panel_language_get(self.obj)
def __set__(self, lang):
elm_entry_input_panel_language_set(self.obj, lang)
def input_panel_language_set(self, lang):
elm_entry_input_panel_language_set(self.obj, lang)
def input_panel_language_get(self):
return elm_entry_input_panel_language_get(self.obj)
# TODO:
# def input_panel_imdata_set(self, data, length):
# """Set the input panel-specific data to deliver to the input panel.
# This API is used by applications to deliver specific data to the input panel.
# The data format MUST be negotiated by both application and the input panel.
# The size and format of data are defined by the input panel.
# :param data: The specific data to be set to the input panel.
# :param len: the length of data, in bytes, to send to the input panel
# """
# elm_entry_input_panel_imdata_set(self.obj, const void *data, int len)
# TODO:
# def input_panel_imdata_get(self, data, length):
# """Get the specific data of the current input panel.
# See :py:func:`input_panel_imdata_set` for more details.
# :param data: The specific data to be got from the input panel
# :param len: The length of data
# """
# elm_entry_input_panel_imdata_get(self.obj, void *data, int *len)
property input_panel_return_key_type:
"""The "return" key type. This type is used to set string or icon on
the "return" key of the input panel.
An input panel displays the string or icon associated with this type
:type: :ref:`Elm_Entry_Input_Panel_Return_Key_Type`
"""
def __get__(self):
return elm_entry_input_panel_return_key_type_get(self.obj)
def __set__(self, return_key_type):
elm_entry_input_panel_return_key_type_set(self.obj, return_key_type)
def input_panel_return_key_type_set(self, return_key_type):
elm_entry_input_panel_return_key_type_set(self.obj, return_key_type)
def input_panel_return_key_type_get(self):
return elm_entry_input_panel_return_key_type_get(self.obj)
property input_panel_return_key_disabled:
"""Whether the return key on the input panel is disabled or not.
:type: bool
"""
def __get__(self):
return elm_entry_input_panel_return_key_disabled_get(self.obj)
def __set__(self, disabled):
elm_entry_input_panel_return_key_disabled_set(self.obj, disabled)
def input_panel_return_key_disabled_set(self, disabled):
elm_entry_input_panel_return_key_disabled_set(self.obj, disabled)
def input_panel_return_key_disabled_get(self):
return elm_entry_input_panel_return_key_disabled_get(self.obj)
property input_panel_return_key_autoenabled:
"""Set whether the return key on the input panel is disabled
automatically when entry has no text.
If ``enabled`` is 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
False.
:type: bool
"""
def __set__(self, enabled):
elm_entry_input_panel_return_key_autoenabled_set(self.obj, enabled)
def input_panel_return_key_autoenabled_set(self, enabled):
elm_entry_input_panel_return_key_autoenabled_set(self.obj, enabled)
def imf_context_reset(self):
"""Reset the input method context of the entry if needed.
This can be necessary in the case where modifying the buffer would
confuse on-going input method behavior. This will typically cause
the Input Method Context to clear the preedit state.
"""
elm_entry_imf_context_reset(self.obj)
property prediction_allow:
"""Whether the entry should allow to use the text prediction.
:type: bool
"""
def __get__(self):
return elm_entry_prediction_allow_get(self.obj)
def __set__(self, allow):
elm_entry_prediction_allow_set(self.obj, allow)
def prediction_allow_set(self, allow):
elm_entry_prediction_allow_set(self.obj, allow)
def prediction_allow_get(self):
return elm_entry_prediction_allow_get(self.obj)
property prediction_hint:
"""The prediction hint to use an intelligent reply suggestion service.
:type: string (**writeonly**)
.. versionadded:: 1.20
"""
def __set__(self, string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
elm_entry_prediction_hint_set(self.obj,
<const char *>string if string is not None else NULL)
def prediction_hint_set(self, string):
if isinstance(string, unicode): string = PyUnicode_AsUTF8String(string)
elm_entry_prediction_hint_set(self.obj,
<const char *>string if string is not None else NULL)
def prediction_hint_hash_set(self, key, value):
"""Sets the prediction hint data at the specified key.
:param key: The key of the prediction hint
:type key: string
:param value: The data to replace
:type value: string
:return bool: `True` on success, `False` otherwise
.. versionadded:: 1.21
"""
if isinstance(key, unicode): key = PyUnicode_AsUTF8String(key)
if isinstance(value, unicode): value = PyUnicode_AsUTF8String(value)
return bool(elm_entry_prediction_hint_hash_set(self.obj,
<const char *>key if key is not None else NULL,
<const char *>value if value is not None else NULL))
def prediction_hint_hash_del(self, key):
"""Removes the prediction hint data identified by a key.
:param key: The key of the prediction hint
:type key: string
:return bool: `True` on success, `False` otherwise
.. versionadded:: 1.21
"""
if isinstance(key, unicode): key = PyUnicode_AsUTF8String(key)
return bool(elm_entry_prediction_hint_hash_del(self.obj,
<const char *>key if key is not None else NULL))
# TODO:
# def filter_limit_size(self, data, text):
# """Filter inserted text based on user defined character and byte limits
# Add this filter to an entry to limit the characters that it will accept
# based the contents of the provided #Elm_Entry_Filter_Limit_Size.
# The function works on the UTF-8 representation of the string, converting
# it from the set markup, thus not accounting for any format in it.
# The user must create an #Elm_Entry_Filter_Limit_Size structure and pass
# it as data when setting the filter. In it, it's possible to set limits
# by character count or bytes (any of them is disabled if 0), and both can
# be set at the same time. In that case, it first checks for characters,
# then bytes. The #Elm_Entry_Filter_Limit_Size structure must be alive and
# valid for as long as the entry is alive AND the elm_entry_filter_limit_size
# filter is set.
# The function will cut the inserted text in order to allow only the first
# number of characters that are still allowed. The cut is made in
# characters, even when limiting by bytes, in order to always contain
# valid ones and avoid half unicode characters making it in.
# This filter, like any others, does not apply when setting the entry text
# directly with elm_object_text_set().
# """
# elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text)
# TODO:
# def filter_accept_set(self, data, text):
# """Filter inserted text based on accepted or rejected sets of characters
# Add this filter to an entry to restrict the set of accepted characters
# based on the sets in the provided #Elm_Entry_Filter_Accept_Set.
# This structure contains both accepted and rejected sets, but they are
# mutually exclusive. This structure must be available for as long as
# the entry is alive AND the elm_entry_filter_accept_set is being used.
# The ``accepted`` set takes preference, so if it is set, the filter will
# only work based on the accepted characters, ignoring anything in the
# ``rejected`` value. If ``accepted`` is ``None``, then ``rejected`` is used.
# In both cases, the function filters by matching utf8 characters to the
# raw markup text, so it can be used to remove formatting tags.
# This filter, like any others, does not apply when setting the entry text
# directly with elm_object_text_set()
# """
# elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text)
# TODO:
# property imf_context:
# """Input method context of the entry.
# IMPORTANT: Many functions may change (i.e delete and create a new one)
# the internal input method context. Do NOT cache the returned object.
# :return: The input method context (Ecore_IMF_Context *) in entry.
# """
# def __get__(self):
# void *elm_entry_imf_context_get(self.obj)
# def imf_context_get(self):
# void *elm_entry_imf_context_get(self.obj)
property cnp_mode:
"""Control pasting of text and images for the widget.
Normally the entry allows both text and images to be pasted.
By setting cnp_mode to be *ELM_CNP_MODE_NO_IMAGE*, this prevents
images from being copy or past. By setting cnp_mode to be
*ELM_CNP_MODE_PLAINTEXT*, this remove all tags in text .
.. note:: This only changes the behaviour of text.
:type: :ref:`Elm_Entry_Cnp_Mode`
"""
def __get__(self):
return elm_entry_cnp_mode_get(self.obj)
def __set__(self, mode):
elm_entry_cnp_mode_set(self.obj, mode)
def cnp_mode_set(self, mode):
elm_entry_cnp_mode_set(self.obj, mode)
def cnp_mode_get(self):
return elm_entry_cnp_mode_get(self.obj)
property anchor_hover_parent:
"""Parent of the hover popup
The parent object to use by the hover created by the entry when an
anchor is clicked. See :py:class:`~efl.elementary.hover.Hover` for more
details on this.
:type: :py:class:`~efl.elementary.object.Object`
"""
def __get__(self):
cdef Evas_Object *anchor_hover_parent
anchor_hover_parent = elm_entry_anchor_hover_parent_get(self.obj)
return object_from_instance(anchor_hover_parent)
def __set__(self, evasObject anchor_hover_parent):
elm_entry_anchor_hover_parent_set(self.obj, anchor_hover_parent.obj)
def anchor_hover_parent_set(self, evasObject anchor_hover_parent):
elm_entry_anchor_hover_parent_set(self.obj, anchor_hover_parent.obj)
def anchor_hover_parent_get(self):
cdef Evas_Object *anchor_hover_parent
anchor_hover_parent = elm_entry_anchor_hover_parent_get(self.obj)
return object_from_instance(anchor_hover_parent)
property anchor_hover_style:
"""The style that the hover should use
When creating the popup hover, entry will request that it's
themed according to *style*.
Setting style to ``None`` means disabling automatic hover.
:seealso: :py:attr:`~efl.elementary.object.Object.style`
:type: string
"""
def __get__(self):
return _ctouni(elm_entry_anchor_hover_style_get(self.obj))
def __set__(self, style):
if isinstance(style, unicode): style = PyUnicode_AsUTF8String(style)
elm_entry_anchor_hover_style_set(self.obj,
<const char *>style if style is not None else NULL)
def anchor_hover_style_set(self, style):
if isinstance(style, unicode): style = PyUnicode_AsUTF8String(style)
elm_entry_anchor_hover_style_set(self.obj,
<const char *>style if style is not None else NULL)
def anchor_hover_style_get(self):
return _ctouni(elm_entry_anchor_hover_style_get(self.obj))
def anchor_hover_end(self):
"""Ends the hover popup in the entry
When an anchor is clicked, the entry widget will create a hover
object to use as a popup with user provided content. This function
terminates this popup, returning the entry to its normal state.
"""
elm_entry_anchor_hover_end(self.obj)
# Copy and paste
def cnp_selection_get(self, selection, format):
"""Retrieve data from a widget that has a selection.
Gets the current selection data from a widget.
.. seealso::
:py:func:`efl.elementary.object.Object.cnp_selection_get`
:param selection: Selection type for copying and pasting
:param format: Selection format
:return bool: Whether getting cnp data is successful or not.
"""
return bool(elm_cnp_selection_get(
self.obj, selection, format, NULL, NULL))
def callback_changed_add(self, func, *args, **kwargs):
"""The text within the entry was changed."""
self._callback_add("changed", func, args, kwargs)
def callback_changed_del(self, func):
self._callback_del("changed", func)
def callback_changed_user_add(self, func, *args, **kwargs):
"""The text within the entry was changed because of user interaction."""
self._callback_add("changed,user", func, args, kwargs)
def callback_changed_user_del(self, func):
self._callback_del("changed,user", func)
def callback_activated_add(self, func, *args, **kwargs):
"""The enter key was pressed on a single line entry."""
self._callback_add("activated", func, args, kwargs)
def callback_activated_del(self, func):
self._callback_del("activated", func)
def callback_aborted_add(self, func, *args, **kwargs):
"""The enter key was pressed on a single line entry."""
self._callback_add("aborted", func, args, kwargs)
def callback_aborted_del(self, func):
self._callback_del("aborted", func)
def callback_press_add(self, func, *args, **kwargs):
"""A mouse button has been pressed on the entry."""
self._callback_add("press", func, args, kwargs)
def callback_press_del(self, func):
self._callback_del("press", func)
def callback_longpressed_add(self, func, *args, **kwargs):
"""A mouse button has been pressed and held for a couple seconds."""
self._callback_add("longpressed", func, args, kwargs)
def callback_longpressed_del(self, func):
self._callback_del("longpressed", func)
def callback_clicked_add(self, func, *args, **kwargs):
"""The entry has been clicked (mouse press and release)."""
self._callback_add("clicked", func, args, kwargs)
def callback_clicked_del(self, func):
self._callback_del("clicked", func)
def callback_double_clicked_add(self, func, *args, **kwargs):
"""The entry has been double clicked."""
self._callback_add("clicked,double", func, args, kwargs)
def callback_double_clicked_del(self, func):
self._callback_del("clicked,double", func)
def callback_triple_clicked_add(self, func, *args, **kwargs):
"""The entry has been triple clicked."""
self._callback_add("clicked,triple", func, args, kwargs)
def callback_triple_clicked_del(self, func):
self._callback_del("clicked,triple", func)
def callback_selection_paste_add(self, func, *args, **kwargs):
"""A paste of the clipboard contents was requested."""
self._callback_add("selection,paste", func, args, kwargs)
def callback_selection_paste_del(self, func):
self._callback_del("selection,paste", func)
def callback_selection_copy_add(self, func, *args, **kwargs):
"""A copy of the selected text into the clipboard was requested."""
self._callback_add("selection,copy", func, args, kwargs)
def callback_selection_copy_del(self, func):
self._callback_del("selection,copy", func)
def callback_selection_cut_add(self, func, *args, **kwargs):
"""A cut of the selected text into the clipboard was requested."""
self._callback_add("selection,cut", func, args, kwargs)
def callback_selection_cut_del(self, func):
self._callback_del("selection,cut", func)
def callback_selection_start_add(self, func, *args, **kwargs):
"""A selection has begun and no previous selection existed."""
self._callback_add("selection,start", func, args, kwargs)
def callback_selection_start_del(self, func):
self._callback_del("selection,start", func)
def callback_selection_changed_add(self, func, *args, **kwargs):
"""The current selection has changed."""
self._callback_add("selection,changed", func, args, kwargs)
def callback_selection_changed_del(self, func):
self._callback_del("selection,changed", func)
def callback_selection_cleared_add(self, func, *args, **kwargs):
"""The current selection has been cleared."""
self._callback_add("selection,cleared", func, args, kwargs)
def callback_selection_cleared_del(self, func):
self._callback_del("selection,cleared", func)
def callback_cursor_changed_add(self, func, *args, **kwargs):
"""The cursor has changed position."""
self._callback_add("cursor,changed", func, args, kwargs)
def callback_cursor_changed_del(self, func):
self._callback_del("cursor,changed", func)
def callback_anchor_clicked_add(self, func, *args, **kwargs):
"""An anchor has been clicked. The event_info
parameter for the callback will be an :py:class:`EntryAnchorInfo`.
"""
self._callback_add_full("anchor,clicked", _entryanchor_conv,
func, args, kwargs)
def callback_anchor_clicked_del(self, func):
self._callback_del_full("anchor,clicked", _entryanchor_conv,
func)
def callback_anchor_in_add(self, func, *args, **kwargs):
"""Mouse cursor has moved into an anchor. The event_info
parameter for the callback will be an :py:class:`EntryAnchorInfo`.
"""
self._callback_add_full("anchor,in", _entryanchor_conv,
func, args, kwargs)
def callback_anchor_in_del(self, func):
self._callback_del_full("anchor,in", _entryanchor_conv,
func)
def callback_anchor_out_add(self, func, *args, **kwargs):
"""Mouse cursor has moved out of an anchor. The event_info
parameter for the callback will be an :py:class:`EntryAnchorInfo`.
"""
self._callback_add_full("anchor,out", _entryanchor_conv,
func, args, kwargs)
def callback_anchor_out_del(self, func):
self._callback_del_full("anchor,out", _entryanchor_conv,
func)
def callback_anchor_up_add(self, func, *args, **kwargs):
"""Mouse button has been unpressed on an anchor. The event_info
parameter for the callback will be an :py:class:`EntryAnchorInfo`.
"""
self._callback_add_full("anchor,up", _entryanchor_conv,
func, args, kwargs)
def callback_anchor_up_del(self, func):
self._callback_del_full("anchor,up", _entryanchor_conv,
func)
def callback_anchor_down_add(self, func, *args, **kwargs):
"""Mouse button has been pressed on an anchor. The event_info
parameter for the callback will be an :py:class:`EntryAnchorInfo`.
"""
self._callback_add_full("anchor,down", _entryanchor_conv,
func, args, kwargs)
def callback_anchor_down_del(self, func):
self._callback_del_full("anchor,down", _entryanchor_conv,
func)
def callback_anchor_hover_opened_add(self, func, *args, **kwargs):
self._callback_add_full("anchor,hover,opened", _entryanchorhover_conv,
func, args, kwargs)
def callback_anchor_hover_opened_del(self, func):
self._callback_del_full("anchor,hover,opened", _entryanchorhover_conv,
func)
def callback_preedit_changed_add(self, func, *args, **kwargs):
"""The preedit string has changed."""
self._callback_add("preedit,changed", func, args, kwargs)
def callback_preedit_changed_del(self, func):
self._callback_del("preedit,changed", func)
def callback_text_set_done_add(self, func, *args, **kwargs):
"""Whole text has been set to the entry."""
self._callback_add("text,set,done", func, args, kwargs)
def callback_text_set_done_del(self, func):
self._callback_del("text,set,done", func)
def callback_rejected_add(self, func, *args, **kwargs):
"""Called when some of inputs are rejected by the filter.
.. versionadded:: 1.9
"""
self._callback_add("rejected", func, args, kwargs)
def callback_rejected_del(self, func):
self._callback_del("rejected", func)
def callback_context_open_add(self, func, *args, **kwargs):
"""Called before showing the context menu.
.. versionadded:: 1.15
"""
self._callback_add("context,open", func, args, kwargs)
def callback_context_open_del(self, func):
self._callback_del("context,open", func)
property scrollbar_policy:
"""
.. deprecated:: 1.8
You should combine with Scrollable class instead.
"""
def __get__(self):
return self.scrollbar_policy_get()
def __set__(self, value):
cdef Elm_Scroller_Policy policy_h, policy_v
policy_h, policy_v = value
self.scrollbar_policy_set(policy_h, policy_v)
@DEPRECATED("1.8", "You should combine with Scrollable class instead.")
def scrollbar_policy_set(self, policy_h, policy_v):
elm_scroller_policy_set(self.obj, policy_h, policy_v)
@DEPRECATED("1.8", "You should combine with Scrollable class instead.")
def scrollbar_policy_get(self):
cdef Elm_Scroller_Policy policy_h, policy_v
elm_scroller_policy_get(self.obj, &policy_h, &policy_v)
return (policy_h, policy_v)
property bounce:
"""
.. deprecated:: 1.8
You should combine with Scrollable class instead.
"""
def __get__(self):
return self.bounce_get()
def __set__(self, value):
cdef Eina_Bool h, v
h, v = value
self.bounce_set(h, v)
@DEPRECATED("1.8", "You should combine with Scrollable class instead.")
def bounce_set(self, h, v):
elm_scroller_bounce_set(self.obj, h, v)
@DEPRECATED("1.8", "You should combine with Scrollable class instead.")
def bounce_get(self):
cdef Eina_Bool h, v
elm_scroller_bounce_get(self.obj, &h, &v)
return (h, v)
_object_mapping_register("Elm.Entry", Entry)