python-efl/efl/elementary/entry_cdef.pxi

256 lines
14 KiB
Cython

cdef extern from "Elementary.h":
cpdef enum Elm_Autocapital_Type:
ELM_AUTOCAPITAL_TYPE_NONE
ELM_AUTOCAPITAL_TYPE_WORD
ELM_AUTOCAPITAL_TYPE_SENTENCE
ELM_AUTOCAPITAL_TYPE_ALLCHARACTER
ctypedef enum Elm_Autocapital_Type:
pass
cpdef enum Elm_Cnp_Mode:
ELM_CNP_MODE_MARKUP
ELM_CNP_MODE_NO_IMAGE
ELM_CNP_MODE_PLAINTEXT
ctypedef enum Elm_Cnp_Mode:
pass
cpdef enum Elm_Input_Hints:
ELM_INPUT_HINT_NONE
ELM_INPUT_HINT_AUTO_COMPLETE
ELM_INPUT_HINT_SENSITIVE_DATA
ctypedef enum Elm_Input_Hints:
pass
cpdef enum Elm_Input_Panel_Lang:
ELM_INPUT_PANEL_LANG_AUTOMATIC
ELM_INPUT_PANEL_LANG_ALPHABET
ctypedef enum Elm_Input_Panel_Lang:
pass
cpdef enum Elm_Input_Panel_Layout:
ELM_INPUT_PANEL_LAYOUT_NORMAL
ELM_INPUT_PANEL_LAYOUT_NUMBER
ELM_INPUT_PANEL_LAYOUT_EMAIL
ELM_INPUT_PANEL_LAYOUT_URL
ELM_INPUT_PANEL_LAYOUT_PHONENUMBER
ELM_INPUT_PANEL_LAYOUT_IP
ELM_INPUT_PANEL_LAYOUT_MONTH
ELM_INPUT_PANEL_LAYOUT_NUMBERONLY
ELM_INPUT_PANEL_LAYOUT_INVALID
ELM_INPUT_PANEL_LAYOUT_HEX
ELM_INPUT_PANEL_LAYOUT_TERMINAL
ELM_INPUT_PANEL_LAYOUT_PASSWORD
ELM_INPUT_PANEL_LAYOUT_DATETIME
ELM_INPUT_PANEL_LAYOUT_EMOTICON
ctypedef enum Elm_Input_Panel_Layout:
pass
cpdef enum Elm_Input_Panel_Layout_Normal_Variation:
ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_NORMAL
ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_FILENAME
ELM_INPUT_PANEL_LAYOUT_NORMAL_VARIATION_PERSON_NAME
ctypedef enum Elm_Input_Panel_Layout_Normal_Variation:
pass
cpdef enum Elm_Input_Panel_Layout_Numberonly_Variation:
ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_NORMAL
ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED
ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_DECIMAL
ELM_INPUT_PANEL_LAYOUT_NUMBERONLY_VARIATION_SIGNED_AND_DECIMAL
ctypedef enum Elm_Input_Panel_Layout_Numberonly_Variation:
pass
cpdef enum Elm_Input_Panel_Layout_Password_Variation:
ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NORMAL
ELM_INPUT_PANEL_LAYOUT_PASSWORD_VARIATION_NUMBERONLY
ctypedef enum Elm_Input_Panel_Layout_Password_Variation:
pass
cpdef enum Elm_Input_Panel_Return_Key_Type:
ELM_INPUT_PANEL_RETURN_KEY_TYPE_DEFAULT
ELM_INPUT_PANEL_RETURN_KEY_TYPE_DONE
ELM_INPUT_PANEL_RETURN_KEY_TYPE_GO
ELM_INPUT_PANEL_RETURN_KEY_TYPE_JOIN
ELM_INPUT_PANEL_RETURN_KEY_TYPE_LOGIN
ELM_INPUT_PANEL_RETURN_KEY_TYPE_NEXT
ELM_INPUT_PANEL_RETURN_KEY_TYPE_SEARCH
ELM_INPUT_PANEL_RETURN_KEY_TYPE_SEND
ELM_INPUT_PANEL_RETURN_KEY_TYPE_SIGNIN
ctypedef enum Elm_Input_Panel_Return_Key_Type:
pass
cpdef enum Elm_Scroller_Policy:
ELM_SCROLLER_POLICY_AUTO
ELM_SCROLLER_POLICY_ON
ELM_SCROLLER_POLICY_OFF
ctypedef enum Elm_Scroller_Policy:
pass
cpdef enum Elm_Text_Format:
ELM_TEXT_FORMAT_PLAIN_UTF8
ELM_TEXT_FORMAT_MARKUP_UTF8
ctypedef enum Elm_Text_Format:
pass
cpdef enum Elm_Wrap_Type:
ELM_WRAP_NONE
ELM_WRAP_CHAR
ELM_WRAP_WORD
ELM_WRAP_MIXED
ctypedef enum Elm_Wrap_Type:
pass
cpdef enum Elm_Icon_Type:
ELM_ICON_NONE
ELM_ICON_FILE
ELM_ICON_STANDARD
ctypedef enum Elm_Icon_Type:
pass
ctypedef struct Elm_Entry_Anchor_Info:
char *name
int button
Evas_Coord x
Evas_Coord y
Evas_Coord w
Evas_Coord h
ctypedef struct Elm_Entry_Anchor_Hover_Info:
Elm_Entry_Anchor_Info *anchor_info
Evas_Object *hover
Eina_Rectangle hover_parent
Eina_Bool hover_left
Eina_Bool hover_right
Eina_Bool hover_top
Eina_Bool hover_bottom
ctypedef struct Elm_Selection_Data:
Evas_Coord x, y
Elm_Sel_Format format
void *data
size_t len
Elm_Xdnd_Action action
ctypedef struct Elm_Entry_Context_Menu_Item:
pass
ctypedef void (*Elm_Entry_Filter_Cb)(void *data, Evas_Object *entry, char **text)
ctypedef Eina_Bool (*Elm_Drop_Cb) (void *data, Evas_Object *obj, Elm_Selection_Data *ev)
# Data for the elm_entry_filter_limit_size() entry filter.
ctypedef struct Elm_Entry_Filter_Limit_Size:
int max_char_count # The maximum number of characters allowed.
int max_byte_count # The maximum number of bytes allowed.
# Data for the elm_entry_filter_accept_set() entry filter.
ctypedef struct Elm_Entry_Filter_Accept_Set:
const char *accepted # Set of characters accepted in the entry.
const char *rejected # Set of characters rejected from the entry.
Evas_Object * elm_entry_add(Evas_Object *parent)
void elm_entry_text_style_user_push(Evas_Object *obj, const char *style)
void elm_entry_text_style_user_pop(Evas_Object *obj)
const char* elm_entry_text_style_user_peek(const Evas_Object *obj)
void elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line)
Eina_Bool elm_entry_single_line_get(const Evas_Object *obj)
void elm_entry_password_set(Evas_Object *obj, Eina_Bool password)
Eina_Bool elm_entry_password_get(const Evas_Object *obj)
void elm_entry_entry_set(Evas_Object *obj, const char *entry)
const char * elm_entry_entry_get(const Evas_Object *obj)
void elm_entry_entry_append(Evas_Object *obj, const char *text)
Eina_Bool elm_entry_is_empty(Evas_Object *obj)
const char * elm_entry_selection_get(const Evas_Object *obj)
Evas_Object * elm_entry_textblock_get(const Evas_Object *obj)
void elm_entry_calc_force(Evas_Object *obj)
void elm_entry_entry_insert(Evas_Object *obj, const char *entry)
void elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap)
Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj)
void elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable)
Eina_Bool elm_entry_editable_get(const Evas_Object *obj)
void elm_entry_select_none(Evas_Object *obj)
void elm_entry_select_all(Evas_Object *obj)
void elm_entry_select_region_set(Evas_Object *obj, int start, int end)
Eina_Bool elm_entry_cursor_next(Evas_Object *obj)
Eina_Bool elm_entry_cursor_prev(Evas_Object *obj)
Eina_Bool elm_entry_cursor_up(Evas_Object *obj)
Eina_Bool elm_entry_cursor_down(Evas_Object *obj)
void elm_entry_cursor_begin_set(Evas_Object *obj)
void elm_entry_cursor_end_set(Evas_Object *obj)
void elm_entry_cursor_line_begin_set(Evas_Object *obj)
void elm_entry_cursor_line_end_set(Evas_Object *obj)
void elm_entry_cursor_selection_begin(Evas_Object *obj)
void elm_entry_cursor_selection_end(Evas_Object *obj)
Eina_Bool elm_entry_cursor_is_format_get(const Evas_Object *obj)
Eina_Bool elm_entry_cursor_is_visible_format_get(const Evas_Object *obj)
const char * elm_entry_cursor_content_get(const Evas_Object *obj)
Eina_Bool elm_entry_cursor_geometry_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h)
void elm_entry_cursor_pos_set(Evas_Object *obj, int pos)
int elm_entry_cursor_pos_get(const Evas_Object *obj)
void elm_entry_selection_cut(Evas_Object *obj)
void elm_entry_selection_copy(Evas_Object *obj)
void elm_entry_selection_paste(Evas_Object *obj)
void elm_entry_context_menu_clear(Evas_Object *obj)
void elm_entry_context_menu_item_add(Evas_Object *obj, const char *label, const char *icon_file, Elm_Icon_Type icon_type, Evas_Smart_Cb func, const void *data)
void elm_entry_context_menu_disabled_set(Evas_Object *obj, Eina_Bool disabled)
Eina_Bool elm_entry_context_menu_disabled_get(const Evas_Object *obj)
# TODO: void elm_entry_item_provider_append(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data)
# TODO: void elm_entry_item_provider_prepend(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data)
# TODO: void elm_entry_item_provider_remove(Evas_Object *obj, Elm_Entry_Item_Provider_Cb func, void *data)
void elm_entry_markup_filter_append(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data)
void elm_entry_markup_filter_prepend(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data)
void elm_entry_markup_filter_remove(Evas_Object *obj, Elm_Entry_Filter_Cb func, void *data)
char * elm_entry_markup_to_utf8(const char *s)
char * elm_entry_utf8_to_markup(const char *s)
Eina_Bool elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format)
void elm_entry_file_get(const Evas_Object *obj, const char **file, Elm_Text_Format *format)
void elm_entry_file_save(Evas_Object *obj)
void elm_entry_autosave_set(Evas_Object *obj, Eina_Bool autosave)
Eina_Bool elm_entry_autosave_get(const Evas_Object *obj)
void elm_entry_scrollable_set(Evas_Object *obj, Eina_Bool scrollable)
Eina_Bool elm_entry_scrollable_get(const Evas_Object *obj)
void elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
void elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting)
void elm_entry_input_hint_set(Evas_Object *obj, Elm_Input_Hints hints)
Elm_Input_Hints elm_entry_input_hint_get(Evas_Object *obj)
void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout)
Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(const Evas_Object *obj)
void elm_entry_input_panel_layout_variation_set(Evas_Object *obj, int variation)
int elm_entry_input_panel_layout_variation_get(const Evas_Object *obj)
void elm_entry_autocapital_type_set(Evas_Object *obj, Elm_Autocapital_Type autocapital_type)
Elm_Autocapital_Type elm_entry_autocapital_type_get(const Evas_Object *obj)
void elm_entry_input_panel_enabled_set(Evas_Object *obj, Eina_Bool enabled)
Eina_Bool elm_entry_input_panel_enabled_get(const Evas_Object *obj)
void elm_entry_input_panel_show(Evas_Object *obj)
void elm_entry_input_panel_hide(Evas_Object *obj)
void elm_entry_input_panel_language_set(Evas_Object *obj, Elm_Input_Panel_Lang lang)
Elm_Input_Panel_Lang elm_entry_input_panel_language_get(const Evas_Object *obj)
# TODO: void elm_entry_input_panel_imdata_set(Evas_Object *obj, const void *data, int len)
# TODO: void elm_entry_input_panel_imdata_get(const Evas_Object *obj, void *data, int *len)
void elm_entry_input_panel_return_key_type_set(Evas_Object *obj, Elm_Input_Panel_Return_Key_Type return_key_type)
Elm_Input_Panel_Return_Key_Type elm_entry_input_panel_return_key_type_get(const Evas_Object *obj)
void elm_entry_input_panel_return_key_disabled_set(Evas_Object *obj, Eina_Bool disabled)
Eina_Bool elm_entry_input_panel_return_key_disabled_get(const Evas_Object *obj)
void elm_entry_input_panel_return_key_autoenabled_set(Evas_Object *obj, Eina_Bool disabled)
Eina_Bool elm_entry_input_panel_show_on_demand_get(const Evas_Object *obj)
void elm_entry_input_panel_show_on_demand_set(Evas_Object *obj, Eina_Bool ondemand)
void elm_entry_imf_context_reset(Evas_Object *obj)
void elm_entry_prediction_allow_set(Evas_Object *obj, Eina_Bool allow)
Eina_Bool elm_entry_prediction_allow_get(const Evas_Object *obj)
# TODO: void elm_entry_filter_limit_size(void *data, Evas_Object *entry, char **text)
# TODO: void elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text)
# TODO: void *elm_entry_imf_context_get(const Evas_Object *obj)
void elm_entry_cnp_mode_set(Evas_Object *obj, Elm_Cnp_Mode cnp_mode)
Elm_Cnp_Mode elm_entry_cnp_mode_get(const Evas_Object *obj)
void elm_entry_anchor_hover_parent_set(Evas_Object *obj, Evas_Object *anchor_hover_parent)
Evas_Object * elm_entry_anchor_hover_parent_get(const Evas_Object *obj)
void elm_entry_anchor_hover_style_set(Evas_Object *obj, const char *anchor_hover_style)
const char * elm_entry_anchor_hover_style_get(const Evas_Object *obj)
void elm_entry_anchor_hover_end(Evas_Object *obj)
const char * elm_entry_context_menu_item_label_get(const Elm_Entry_Context_Menu_Item *item)
void elm_entry_context_menu_item_icon_get(const Elm_Entry_Context_Menu_Item *item, const char **icon_file, const char **icon_group, Elm_Icon_Type *icon_type)