fixed documentation for consistency. Gets -> Get.

Occurance of Get is super much higher than Gets.
So change Gets to Get for consistency.
This commit is contained in:
Daniel Juyung Seo 2013-08-22 05:23:44 +09:00
parent d9637f96b7
commit c5b0d63838
48 changed files with 148 additions and 148 deletions

View File

@ -54,7 +54,7 @@ EAPI void elm_hoversel_hover_parent_set(Evas_Object *obj
* @param obj The hoversel object
* @return The used parent
*
* Gets the hover parent object.
* Get the hover parent object.
*
* @see elm_hoversel_hover_parent_set()
*

View File

@ -2242,7 +2242,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_GET, "Get the value of expanded state."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_SET, "Set/Unset the multibuttonentry to expanded state."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_SET, "Sets if the multibuttonentry is to be editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_GET, "Gets whether the multibuttonentry is editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_GET, "Get whether the multibuttonentry is editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_PREPEND, "Prepend a new item to the multibuttonentry."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_APPEND, "Append a new item to the multibuttonentry."),
EO_OP_DESCRIPTION(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_INSERT_BEFORE, "Add a new item to the multibuttonentry before the indicated object."),

View File

@ -89,7 +89,7 @@ enum
* @def elm_obj_multibuttonentry_editable_get
* @since 1.8
*
* Gets whether the multibuttonentry is editable or not.
* Get whether the multibuttonentry is editable or not.
*
* @param[out] ret
*

View File

@ -258,7 +258,7 @@ EAPI void elm_multibuttonentry_item_filter_remove(Evas_Obj
EAPI void elm_multibuttonentry_editable_set(Evas_Object *obj, Eina_Bool editable);
/**
* Gets whether the multibuttonentry is editable or not.
* Get whether the multibuttonentry is editable or not.
*
* @param obj The multibuttonentry object
* @return EINA_TRUE if the multibuttonentry is editable by the user. EINA_FALSE if not.

View File

@ -210,7 +210,7 @@ EAPI Eina_Bool elm_cnp_selection_set(Evas_Object *obj, Elm_Sel_Type selection,
/**
* @brief Retrieve data from a widget that has a selection.
*
* Gets the current selection data from a widget.
* Get the current selection data from a widget.
* The widget input here will usually be elm_entry,
* in which case @p datacb and @p udata can be NULL.
* If a different widget is passed, @p datacb and @p udata are used for retrieving data.

View File

@ -700,7 +700,7 @@ EAPI Eina_Bool elm_config_password_show_last_get(void);
EAPI void elm_config_password_show_last_set(Eina_Bool password_show_last);
/**
* Gets the timeout value in "show last" password mode.
* Get the timeout value in "show last" password mode.
*
* This gets the time out value for which the last input entered in password
* mode will be visible.

View File

@ -516,7 +516,7 @@ EINA_DEPRECATED EAPI Eina_Bool elm_label_slide_get(const Evas_
EINA_DEPRECATED EAPI void elm_object_domain_translatable_text_part_set(Evas_Object *obj, const char *part, const char *domain, const char *text);
/**
* Gets the original string set as translatable for an object
* Get the original string set as translatable for an object
*
* When setting translated strings, the function elm_object_part_text_get()
* will return the translation returned by @c gettext(). To get the
@ -1118,7 +1118,7 @@ EINA_DEPRECATED EAPI void elm_icon_prescale_set(Evas_Object *ob
EINA_DEPRECATED EAPI int elm_icon_prescale_get(const Evas_Object *obj);
/**
* Gets the image object of the icon. DO NOT MODIFY THIS.
* Get the image object of the icon. DO NOT MODIFY THIS.
*
* @param obj The icon object
* @return The internal icon object

View File

@ -5613,19 +5613,19 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_POP, "Remove the style in the top of user style stack."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_TEXT_STYLE_USER_PEEK, "Retrieve the style on the top of user style stack."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_SET, "Sets the entry to single line mode."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_GET, "Gets whether the entry is set to be single line."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SINGLE_LINE_GET, "Get whether the entry is set to be single line."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_PASSWORD_SET, "Sets the entry to password mode."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_PASSWORD_GET, "Gets whether the entry is set to password mode."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_PASSWORD_GET, "Get whether the entry is set to password mode."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_ENTRY_APPEND, "Appends entry to the text of the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_IS_EMPTY, "Gets whether the entry is empty."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_IS_EMPTY, "Get whether the entry is empty."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_TEXTBLOCK_GET, "Returns the actual textblock object of the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CALC_FORCE, "Forces calculation of the entry size and text layouting."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SELECTION_GET, "Gets any selected text within the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SELECTION_GET, "Get any selected text within the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_ENTRY_INSERT, "Inserts the given text into the entry at the current cursor position."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_SET, "Set the line wrap type to use on multi-line entries."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_GET, "Gets the wrap mode the entry was set to use."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_LINE_WRAP_GET, "Get the wrap mode the entry was set to use."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_EDITABLE_SET, "Sets if the entry is to be editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_EDITABLE_GET, "Gets whether the entry is editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_EDITABLE_GET, "Get whether the entry is editable or not."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SELECT_NONE, "This drops any existing text selection within the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SELECT_ALL, "This selects all text within the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_GEOMETRY_GET, "This function returns the geometry of the cursor."),
@ -5639,9 +5639,9 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_LINE_END_SET, "This moves the cursor to the end of the current line."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_BEGIN, "This begins a selection within the entry as though."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_SELECTION_END, "This ends a selection within the entry as though."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_FORMAT_GET, "Gets whether a format node exists at the current cursor position."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_VISIBLE_FORMAT_GET, "Gets if the current cursor position holds a visible format node."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_CONTENT_GET, "Gets the character pointed by the cursor at its current position."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_FORMAT_GET, "Get whether a format node exists at the current cursor position."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_IS_VISIBLE_FORMAT_GET, "Get if the current cursor position holds a visible format node."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_CONTENT_GET, "Get the character pointed by the cursor at its current position."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_SET, "Sets the cursor position in the entry to the given value."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_CURSOR_POS_GET, "Retrieves the current position of the cursor in the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_SELECTION_CUT, "This executes a 'cut' action on the selected text in the entry."),
@ -5658,7 +5658,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_PREPEND, "Prepend a markup filter function for text inserted in the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_MARKUP_FILTER_REMOVE, "Remove a markup filter from the list."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_FILE_SET, "This sets the file (and implicitly loads it) for the text to display and then edit."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_FILE_GET, "Gets the file being edited by the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_FILE_GET, "Get the file being edited by the entry."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_FILE_SAVE, "This function writes any changes made to the file set with elm_entry_file_set()."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_SET, "This sets the entry object to 'autosave' the loaded text file or not."),
EO_OP_DESCRIPTION(ELM_OBJ_ENTRY_SUB_ID_AUTOSAVE_GET, "This gets the entry object's 'autosave' status."),

View File

@ -351,7 +351,7 @@ typedef enum {
/**
* Get the text of the contextual menu item.
*
* Gets the text of the contextual menu item of entry.
* Get the text of the contextual menu item of entry.
*
* @param item The item to get the label
* @return The text of contextual menu item
@ -365,7 +365,7 @@ EAPI const char *elm_entry_context_menu_item_label_get(const El
/**
* Get the icon object of the contextual menu item.
*
* Gets the icon object packed in the contextual menu item of entry.
* Get the icon object packed in the contextual menu item of entry.
*
* @param item The item to get the icon from
* @param icon_file The image file path on disk used for the icon or standard

View File

@ -158,7 +158,7 @@ enum
* @def elm_obj_entry_single_line_get
* @since 1.8
*
* Gets whether the entry is set to be single line.
* Get whether the entry is set to be single line.
*
* @param[out] ret
*
@ -186,7 +186,7 @@ enum
* @def elm_obj_entry_password_get
* @since 1.8
*
* Gets whether the entry is set to password mode.
* Get whether the entry is set to password mode.
*
* @param[out] ret
*
@ -214,7 +214,7 @@ enum
* @def elm_obj_entry_is_empty
* @since 1.8
*
* Gets whether the entry is empty.
* Get whether the entry is empty.
*
* @param[out] ret
*
@ -255,7 +255,7 @@ enum
* @def elm_obj_entry_selection_get
* @since 1.8
*
* Gets any selected text within the entry.
* Get any selected text within the entry.
*
* @param[out] ret
*
@ -297,7 +297,7 @@ enum
* @def elm_obj_entry_line_wrap_get
* @since 1.8
*
* Gets the wrap mode the entry was set to use.
* Get the wrap mode the entry was set to use.
*
* @param[out] ret
*
@ -325,7 +325,7 @@ enum
* @def elm_obj_entry_editable_get
* @since 1.8
*
* Gets whether the entry is editable or not.
* Get whether the entry is editable or not.
*
* @param[out] ret
*
@ -517,7 +517,7 @@ enum
* @def elm_obj_entry_cursor_is_format_get
* @since 1.8
*
* Gets whether a format node exists at the current cursor position.
* Get whether a format node exists at the current cursor position.
*
* @param[out] ret
*
@ -531,7 +531,7 @@ enum
* @def elm_obj_entry_cursor_is_visible_format_get
* @since 1.8
*
* Gets if the current cursor position holds a visible format node.
* Get if the current cursor position holds a visible format node.
*
* @param[out] ret
*
@ -545,7 +545,7 @@ enum
* @def elm_obj_entry_cursor_content_get
* @since 1.8
*
* Gets the character pointed by the cursor at its current position.
* Get the character pointed by the cursor at its current position.
*
* @param[out] ret
*
@ -794,7 +794,7 @@ enum
* @def elm_obj_entry_file_get
* @since 1.8
*
* Gets the file being edited by the entry.
* Get the file being edited by the entry.
*
* @param[out] file
* @param[out] format

View File

@ -93,7 +93,7 @@ EAPI const char* elm_entry_text_style_user_peek(const Evas_Object *obj);
EAPI void elm_entry_single_line_set(Evas_Object *obj, Eina_Bool single_line);
/**
* Gets whether the entry is set to be single line.
* Get whether the entry is set to be single line.
*
* @param obj The entry object
* @return single_line If true, the text in the entry is set to display
@ -119,7 +119,7 @@ EAPI Eina_Bool elm_entry_single_line_get(const Evas_Object *obj);
EAPI void elm_entry_password_set(Evas_Object *obj, Eina_Bool password);
/**
* Gets whether the entry is set to password mode.
* Get whether the entry is set to password mode.
*
* @param obj The entry object
* @return If true, the entry is set to display all characters
@ -149,7 +149,7 @@ EAPI Eina_Bool elm_entry_password_get(const Evas_Object *obj);
EAPI void elm_entry_entry_append(Evas_Object *obj, const char *entry);
/**
* Gets whether the entry is empty.
* Get 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
@ -208,7 +208,7 @@ EAPI Evas_Object * elm_entry_textblock_get(Evas_Object *obj);
EAPI void elm_entry_calc_force(Evas_Object *obj);
/**
* Gets any selected text within the entry.
* Get 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. NULL is returned if no selection exists or
@ -264,7 +264,7 @@ EAPI void elm_entry_entry_insert(Evas_Object *obj, const char *ent
EAPI void elm_entry_line_wrap_set(Evas_Object *obj, Elm_Wrap_Type wrap);
/**
* Gets the wrap mode the entry was set to use.
* Get the wrap mode the entry was set to use.
*
* @param obj The entry object
* @return Wrap type
@ -296,7 +296,7 @@ EAPI Elm_Wrap_Type elm_entry_line_wrap_get(const Evas_Object *obj);
EAPI void elm_entry_editable_set(Evas_Object *obj, Eina_Bool editable);
/**
* Gets whether the entry is editable or not.
* Get whether the entry is editable or not.
*
* @param obj The entry object
* @return If true, the entry is editable by the user.
@ -441,7 +441,7 @@ EAPI void elm_entry_cursor_selection_begin(Evas_Object *obj);
EAPI void elm_entry_cursor_selection_end(Evas_Object *obj);
/**
* Gets whether a format node exists at the current cursor position.
* Get 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,
@ -460,7 +460,7 @@ EAPI void elm_entry_cursor_selection_end(Evas_Object *obj);
EAPI Eina_Bool elm_entry_cursor_is_format_get(const Evas_Object *obj);
/**
* Gets if the current cursor position holds a visible format node.
* Get if the current cursor position holds a visible format node.
*
* @param obj The entry object
* @return EINA_TRUE if the current cursor is a visible format, EINA_FALSE
@ -473,7 +473,7 @@ EAPI Eina_Bool elm_entry_cursor_is_format_get(const Evas_Object *obj);
EAPI Eina_Bool elm_entry_cursor_is_visible_format_get(const Evas_Object *obj);
/**
* Gets the character pointed by the cursor at its current position.
* Get 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.
@ -708,7 +708,7 @@ EAPI void elm_entry_markup_filter_remove(Evas_Object *obj, Elm_Ent
EAPI Eina_Bool elm_entry_file_set(Evas_Object *obj, const char *file, Elm_Text_Format format);
/**
* Gets the file being edited by the entry.
* Get the file being edited by the entry.
*
* This function can be used to retrieve any file set on the entry for
* edition, along with the format used to load and save it.

View File

@ -201,7 +201,7 @@ EAPI void elm_flip_interaction_direction_enabled_set(Evas_Object
* @param dir The direction to check
* @return If that direction is enabled or not
*
* Gets the enabled state set by elm_flip_interaction_direction_enabled_set()
* Get the enabled state set by elm_flip_interaction_direction_enabled_set()
*
* @see elm_flip_interaction_set()
*

View File

@ -32,7 +32,7 @@ EAPI void elm_flipselector_item_selected_set(Elm_Object_I
EAPI Eina_Bool elm_flipselector_item_selected_get(const Elm_Object_Item *it);
/**
* Gets the item before @p item in a flip selector widget's internal list of
* Get the item before @p item in a flip selector widget's internal list of
* items.
*
* @param it The item to fetch previous from
@ -46,7 +46,7 @@ EAPI Eina_Bool elm_flipselector_item_selected_get(const Elm_Object_Item *it);
EAPI Elm_Object_Item *elm_flipselector_item_prev_get(const Elm_Object_Item *it);
/**
* Gets the item after @p item in a flip selector widget's
* Get the item after @p item in a flip selector widget's
* internal list of items.
*
* @param it The item to fetch next from

View File

@ -308,7 +308,7 @@ EAPI char *elm_quicklaunch_exe_path_get(const char *exe);
EAPI Eina_Bool elm_policy_set(unsigned int policy, int value);
/**
* Gets the policy value for given policy identifier.
* Get the policy value for given policy identifier.
*
* @param policy policy identifier, as in #Elm_Policy.
* @return The currently set policy value, for that

View File

@ -7475,7 +7475,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_ITEM_SORTED_INSERT, "Insert a new item into the sorted genlist object."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_CLEAR, "Remove all items from a given genlist widget."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MULTI_SELECT_SET, "Enable or disable multi-selection in the genlist."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MULTI_SELECT_GET, "Gets if multi-selection in genlist is enabled or disabled."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MULTI_SELECT_GET, "Get if multi-selection in genlist is enabled or disabled."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_SELECTED_ITEM_GET, "Get the selected item in the genlist."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_SELECTED_ITEMS_GET, "Get a list of selected items in the genlist."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_REALIZED_ITEMS_GET, "Get a list of realized items in genlist."),
@ -7483,7 +7483,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_FIRST_ITEM_GET, "Get the first item in the genlist."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_LAST_ITEM_GET, "Get the last item in the genlist."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MODE_SET, "This sets the horizontal stretching mode."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MODE_GET, "Gets the horizontal stretching mode."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_MODE_GET, "Get the horizontal stretching mode."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_HOMOGENEOUS_SET, "Enable/disable homogeneous mode."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_HOMOGENEOUS_GET, "Get whether the homogeneous mode is enabled."),
EO_OP_DESCRIPTION(ELM_OBJ_GENLIST_SUB_ID_BLOCK_COUNT_SET, "Set the maximum number of items within an item block."),

View File

@ -190,7 +190,7 @@ enum
* @def elm_obj_genlist_multi_select_get
* @since 1.8
*
* Gets if multi-selection in genlist is enabled or disabled.
* Get if multi-selection in genlist is enabled or disabled.
*
* @param[out] ret
*
@ -289,7 +289,7 @@ enum
* @def elm_obj_genlist_mode_get
* @since 1.8
*
* Gets the horizontal stretching mode.
* Get the horizontal stretching mode.
*
* @param[out] ret
*

View File

@ -46,7 +46,7 @@ EAPI void elm_genlist_clear(Evas_Object *obj);
EAPI void elm_genlist_multi_select_set(Evas_Object *obj, Eina_Bool multi);
/**
* Gets if multi-selection in genlist is enabled or disabled.
* Get if multi-selection in genlist is enabled or disabled.
*
* @param obj The genlist object
* @return Multi-select enabled/disabled
@ -91,7 +91,7 @@ EAPI Eina_Bool elm_genlist_multi_select_get(const Evas_Objec
EAPI void elm_genlist_mode_set(Evas_Object *obj, Elm_List_Mode mode);
/**
* Gets the horizontal stretching mode.
* Get the horizontal stretching mode.
*
* @param obj The genlist object
* @return The mode to use
@ -661,7 +661,7 @@ EAPI void elm_genlist_focus_on_selection_set(Evas_Object *obj, Eina_Bool enabled
/**
* Gets whether focus upon item's selection mode is enabled.
* Get whether focus upon item's selection mode is enabled.
*
* @param obj The genlist object
* @return The tree effect status

View File

@ -2985,8 +2985,8 @@ _on_rotation_broke_tolerance(Rotate_Type *st)
* @param y1 first finger y location.
* @param x2 second finger x location.
* @param y2 second finger y location.
* @param x Gets center point x cord (output)
* @param y Gets center point y cord (output)
* @param x Get center point x cord (output)
* @param y Get center point y cord (output)
*
* @return length of the line between (x1,y1), (x2,y2) in pixels.
*

View File

@ -596,12 +596,12 @@ _class_constructor(Eo_Class *klass)
}
static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_GL_API_GET, "Gets the gl api struct for gl rendering."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_GL_API_GET, "Get the gl api struct for gl rendering."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_MODE_SET, "Set the mode of the GLView."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_RESIZE_POLICY_SET, "Set the resize policy for the glview object."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_RENDER_POLICY_SET, "Set the render policy for the glview object."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_SIZE_SET, "Sets the size of the glview."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_SIZE_GET, "Gets the size of the glview."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_SIZE_GET, "Get the size of the glview."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_INIT_FUNC_SET, "Set the init function that runs once in the main loop."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_DEL_FUNC_SET, "Set the render function that runs in the main loop."),
EO_OP_DESCRIPTION(ELM_OBJ_GLVIEW_SUB_ID_RESIZE_FUNC_SET, "Set the resize function that gets called when resize happens."),

View File

@ -27,7 +27,7 @@ enum
* @def elm_obj_glview_gl_api_get
* @since 1.8
*
* Gets the gl api struct for gl rendering
* Get the gl api struct for gl rendering
*
* @param[out] ret
*
@ -101,7 +101,7 @@ enum
* @def elm_obj_glview_size_get
* @since 1.8
*
* Gets the size of the glview.
* Get the size of the glview.
*
* @param[out] w
* @param[out] h

View File

@ -9,7 +9,7 @@
EAPI Evas_Object *elm_glview_add(Evas_Object *parent);
/**
* Gets the gl api struct for gl rendering
* Get the gl api struct for gl rendering
*
* @param obj The glview object
* @return The api object or NULL if it cannot be created
@ -78,7 +78,7 @@ EAPI Eina_Bool elm_glview_render_policy_set(Evas_Object *obj, Elm_GLView_Rend
EAPI void elm_glview_size_set(Evas_Object *obj, Evas_Coord w, Evas_Coord h);
/**
* Gets the size of the glview.
* Get the size of the glview.
*
* @param obj The glview object
* @param w width of the glview object

View File

@ -882,7 +882,7 @@ _class_constructor(Eo_Class *klass)
static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_HOVER_SUB_ID_TARGET_SET, "Sets the target object for the hover."),
EO_OP_DESCRIPTION(ELM_OBJ_HOVER_SUB_ID_TARGET_GET, "Gets the target object for the hover."),
EO_OP_DESCRIPTION(ELM_OBJ_HOVER_SUB_ID_TARGET_GET, "Get the target object for the hover."),
EO_OP_DESCRIPTION(ELM_OBJ_HOVER_SUB_ID_BEST_CONTENT_LOCATION_GET, "Returns the best swallow location for content in the hover."),
EO_OP_DESCRIPTION(ELM_OBJ_HOVER_SUB_ID_DISMISS, "Dismiss a hover object."),
EO_OP_DESCRIPTION_SENTINEL

View File

@ -34,7 +34,7 @@ const Eo_Class *elm_obj_hover_class_get(void) EINA_CONST;
* @def elm_obj_hover_target_get
* @since 1.8
*
* @brief Gets the target object for the hover.
* @brief Get the target object for the hover.
*
* @param[out] ret
*

View File

@ -22,7 +22,7 @@ EAPI Evas_Object *elm_hover_add(Evas_Object *parent);
EAPI void elm_hover_parent_set(Evas_Object *obj, Evas_Object *parent);
/**
* @brief Gets the parent object for the hover.
* @brief Get the parent object for the hover.
*
* @param obj The hover object
* @return The parent object to locate the hover over.
@ -46,7 +46,7 @@ EAPI Evas_Object *elm_hover_parent_get(const Evas_Object *obj);
EAPI void elm_hover_target_set(Evas_Object *obj, Evas_Object *target);
/**
* @brief Gets the target object for the hover.
* @brief Get the target object for the hover.
*
* @param obj The hover object
* @return The target object for the hover.

View File

@ -1146,7 +1146,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_ICON_SUB_ID_STANDARD_SET, "Set the icon by icon standards names."),
EO_OP_DESCRIPTION(ELM_OBJ_ICON_SUB_ID_STANDARD_GET, "Get the icon name set by icon standard names."),
EO_OP_DESCRIPTION(ELM_OBJ_ICON_SUB_ID_ORDER_LOOKUP_SET, "Sets the icon lookup order used by elm_icon_standard_set()."),
EO_OP_DESCRIPTION(ELM_OBJ_ICON_SUB_ID_ORDER_LOOKUP_GET, "Gets the icon lookup order."),
EO_OP_DESCRIPTION(ELM_OBJ_ICON_SUB_ID_ORDER_LOOKUP_GET, "Get the icon lookup order."),
EO_OP_DESCRIPTION_SENTINEL
};
static const Eo_Class_Description class_desc = {

View File

@ -79,7 +79,7 @@ enum
* @def elm_obj_icon_order_lookup_get
* @since 1.8
*
* Gets the icon lookup order.
* Get the icon lookup order.
*
* @param[out] ret
*

View File

@ -89,7 +89,7 @@ EAPI const char *elm_icon_standard_get(const Evas_Object *obj);
EAPI void elm_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order);
/**
* Gets the icon lookup order.
* Get the icon lookup order.
*
* @param obj The icon object
* @return The icon lookup order

View File

@ -1781,7 +1781,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_SCALE_SET, "'Virtual' function on setting the scale for the object's image size."),
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_SCALE_GET, "'Virtual' function on retrieving the scale for the object's image size."),
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_OBJECT_SIZE_GET, "Gets the current size of the image."),
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_OBJECT_SIZE_GET, "Get the current size of the image."),
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_SMOOTH_SET, "Set the smooth effect for an image."),
EO_OP_DESCRIPTION(ELM_OBJ_IMAGE_SUB_ID_SMOOTH_GET, "Get the smooth effect for an image."),

View File

@ -112,7 +112,7 @@ EAPI void elm_image_smooth_set(Evas_Object *obj, Eina_Bool smooth);
EAPI Eina_Bool elm_image_smooth_get(const Evas_Object *obj);
/**
* Gets the current size of the image.
* Get the current size of the image.
*
* @param obj The image object.
* @param w Pointer to store width, or NULL.

View File

@ -2274,9 +2274,9 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_GET, "Get the cursor to be shown when mouse is over an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_UNSET, "Unsets a cursor previously set with elm_layout_part_cursor_set()."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_STYLE_SET, "Sets a specific cursor style for an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_STYLE_GET, "Gets a specific cursor style for an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_STYLE_GET, "Get a specific cursor style for an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_ENGINE_ONLY_SET, "Sets if the cursor set should be searched on the theme or should use the provided by the engine, only ."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_ENGINE_ONLY_GET, "Gets a specific cursor engine_only for an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_PART_CURSOR_ENGINE_ONLY_GET, "Get a specific cursor engine_only for an edje part."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_EDJE_OBJECT_CAN_ACCESS_SET, "Checks whenever 'property' is impemented in current class."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_EDJE_OBJECT_CAN_ACCESS_GET, "Checks whenever 'property' is impemented in current class."),
EO_OP_DESCRIPTION(ELM_OBJ_LAYOUT_SUB_ID_TEXT_ALIASES_GET, "Checks whenever 'text aliases' are impemented in current class."),

View File

@ -375,7 +375,7 @@
* @def elm_obj_layout_part_cursor_style_get
* @since 1.8
*
* Gets a specific cursor style for an edje part.
* Get a specific cursor style for an edje part.
*
* @param[in] part_name
* @param[out] ret
@ -402,7 +402,7 @@
* @def elm_obj_layout_part_cursor_engine_only_get
* @since 1.8
*
* Gets a specific cursor engine_only for an edje part.
* Get a specific cursor engine_only for an edje part.
*
* @param[in] part_name
* @param[out] ret

View File

@ -467,7 +467,7 @@ EAPI Eina_Bool elm_layout_part_cursor_unset(Evas_Object *obj,
EAPI Eina_Bool elm_layout_part_cursor_style_set(Evas_Object *obj, const char *part_name, const char *style);
/**
* Gets a specific cursor style for an edje part.
* Get a specific cursor style for an edje part.
*
* @param obj The layout object.
* @param part_name a part from loaded edje group.
@ -533,7 +533,7 @@ EAPI Eina_Bool elm_layout_edje_object_can_access_set(Evas_Obj
EAPI Eina_Bool elm_layout_edje_object_can_access_get(Evas_Object *obj);
/**
* Gets a specific cursor engine_only for an edje part.
* Get a specific cursor engine_only for an edje part.
*
* @param obj The layout object.
* @param part_name a part from loaded edje group.

View File

@ -542,7 +542,7 @@ EAPI Elm_Object_Item *elm_list_at_xy_item_get(const Evas_Object *obj
EAPI void elm_list_focus_on_selection_set(Evas_Object *obj, Eina_Bool enabled);
/**
* Gets whether focus upon item's selection mode is enabled.
* Get whether focus upon item's selection mode is enabled.
*
* @param obj The genlist object
* @return The tree effect status

View File

@ -62,7 +62,7 @@ EAPI void elm_object_domain_translatable_part_text_set(Evas_Object *obj, co
#define elm_object_translatable_part_text_set(obj, part, text) elm_object_domain_translatable_part_text_set((obj), (part), NULL, (text))
/**
* Gets the original string set as translatable for an object
* Get the original string set as translatable for an object
*
* When setting translated strings, the function elm_object_part_text_get()
* will return the translation returned by @c gettext(). To get the

View File

@ -153,7 +153,7 @@ EAPI void elm_object_item_domain_translatable_part_text_set(Elm_Object_Item
#define elm_object_item_translatable_part_text_set(it, part, text) elm_object_item_domain_translatable_part_text_set((it), (part), NULL, (text))
/**
* Gets the original string set as translatable for an object item.
* Get the original string set as translatable for an object item.
*
* When setting translated strings, the function elm_object_item_part_text_get()
* will return the translation returned by @c gettext(). To get the original

View File

@ -63,7 +63,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_toggle_add(Evas_Object *parent);
EINA_DEPRECATED EAPI void elm_toggle_label_set(Evas_Object *obj, const char *label);
/**
* @brief Gets the label of the toggle
* @brief Get the label of the toggle
*
* @param obj toggle object
* @return The label of the toggle
@ -123,7 +123,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_toggle_icon_unset(Evas_Object *obj);
EINA_DEPRECATED EAPI void elm_toggle_states_labels_set(Evas_Object *obj, const char *onlabel, const char *offlabel);
/**
* @brief Gets the labels associated with the on and off states of the
* @brief Get the labels associated with the on and off states of the
* toggle.
*
* @param obj The toggle object
@ -146,7 +146,7 @@ EINA_DEPRECATED EAPI void elm_toggle_states_labels_get(const Evas_Object
EINA_DEPRECATED EAPI void elm_toggle_state_set(Evas_Object *obj, Eina_Bool state);
/**
* @brief Gets the state of the toggle to @p state.
* @brief Get the state of the toggle to @p state.
*
* @param obj The toggle object
* @return The state of @p obj
@ -2148,7 +2148,7 @@ EINA_DEPRECATED EAPI void elm_genlist_item_icons_orphan(Elm_Object_Item
EINA_DEPRECATED EAPI void elm_genlist_horizontal_set(Evas_Object *obj, Elm_List_Mode mode);
/**
* Gets the horizontal stretching mode.
* Get the horizontal stretching mode.
*
* @param obj The genlist object
* @return The mode to use
@ -4253,7 +4253,7 @@ EINA_DEPRECATED EAPI void elm_list_item_del(Elm_Object_I
EINA_DEPRECATED EAPI void elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon);
/**
* Gets the leftmost widget of the scrolled entry. This object is
* Get the leftmost widget of the scrolled entry. This object is
* owned by the scrolled entry and should not be modified.
*
* @param obj The scrolled entry object
@ -4293,7 +4293,7 @@ EINA_DEPRECATED EAPI Evas_Object *elm_entry_icon_unset(Evas_Object *obj);
EINA_DEPRECATED EAPI void elm_entry_end_set(Evas_Object *obj, Evas_Object *end);
/**
* Gets the endmost widget of the scrolled entry. This object is owned
* Get the endmost widget of the scrolled entry. This object is owned
* by the scrolled entry and should not be modified.
*
* @param obj The scrolled entry object
@ -5463,7 +5463,7 @@ EINA_DEPRECATED EAPI int elm_edje_collection_cache_get(void);
EINA_DEPRECATED EAPI void elm_edje_collection_cache_set(int size);
/**
* Gets whether browsing history is enabled for the given object
* Get whether browsing history is enabled for the given object
*
* @param obj The web object
*
@ -6336,7 +6336,7 @@ EINA_DEPRECATED EAPI Eina_Bool elm_genlist_always_select_mod
EINA_DEPRECATED EAPI void elm_genlist_no_select_mode_set(Evas_Object *obj, Eina_Bool no_select);
/**
* Gets whether the no select mode is enabled.
* Get whether the no select mode is enabled.
*
* @param obj The genlist object
* @return The no select mode

View File

@ -59,7 +59,7 @@ EAPI void elm_scroller_region_show(Evas_Object *obj, Ev
EAPI void elm_scroller_policy_set(Evas_Object *obj, Elm_Scroller_Policy policy_h, Elm_Scroller_Policy policy_v);
/**
* @brief Gets scrollbar visibility policy
* @brief Get scrollbar visibility policy
*
* @param obj The scroller object
* @param policy_h Horizontal scrollbar policy

View File

@ -4040,7 +4040,7 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_SET, "Set the alignment of the items."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ALIGN_GET, "Get the alignment of the items."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_SET, "Sets icon lookup order, for toolbar items' icons."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_GET, "Gets the icon lookup order."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ICON_ORDER_LOOKUP_GET, "Get the icon lookup order."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_SET, "Change a toolbar's orientation."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_HORIZONTAL_GET, "Get a toolbar's orientation."),
EO_OP_DESCRIPTION(ELM_OBJ_TOOLBAR_SUB_ID_ITEMS_COUNT, "Get the number of items in a toolbar."),

View File

@ -310,7 +310,7 @@ enum
* @def elm_obj_toolbar_icon_order_lookup_get
* @since 1.8
*
* Gets the icon lookup order.
* Get the icon lookup order.
*
* @param[out] ret
*

View File

@ -53,7 +53,7 @@ EAPI int elm_toolbar_icon_size_get(const Evas_Object *o
EAPI void elm_toolbar_icon_order_lookup_set(Evas_Object *obj, Elm_Icon_Lookup_Order order);
/**
* Gets the icon lookup order.
* Get the icon lookup order.
*
* @param obj The toolbar object.
* @return The icon lookup order.

View File

@ -2706,22 +2706,22 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_CONSOLE_MESSAGE_HOOK_SET, "Sets the function to call when a console message is emitted from JS."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_USERAGENT_SET, "Change useragent of a elm_web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_USERAGENT_GET, "Return current useragent of elm_web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_GET, "Gets the status of the tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_GET, "Get the status of the tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_SET, "Sets whether to use tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_SET, "Sets the URL for the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_GET, "Gets the current URL for the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TITLE_GET, "Gets the current title."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_GET, "Get the current URL for the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TITLE_GET, "Get the current title."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_SET, "Sets the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_GET, "Gets the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_SELECTION_GET, "Gets a copy of the currently selected text."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_GET, "Get the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_SELECTION_GET, "Get a copy of the currently selected text."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_POPUP_SELECTED_SET, "Tells the web object which index in the currently open popup was selected."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_POPUP_DESTROY, "Dismisses an open dropdown popup."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_SEARCH, "Searches the given string in a document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_MARK, "Marks matches of the given string in a document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_UNMARK_ALL, "Clears all marked matches in the document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_SET, "Sets whether to highlight the matched marks."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_GET, "Gets whether highlighting marks is enabled."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_LOAD_PROGRESS_GET, "Gets the overall loading progress of the page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_GET, "Get whether highlighting marks is enabled."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_LOAD_PROGRESS_GET, "Get the overall loading progress of the page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_STOP, "Stops loading the current page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_RELOAD, "Requests a reload of the current document in the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_RELOAD_FULL, "Requests a reload of the current document, avoiding any existing caches."),
@ -2731,16 +2731,16 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BACK_POSSIBLE_GET, "Queries whether it's possible to go back in history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_FORWARD_POSSIBLE_GET, "Queries whether it's possible to go forward in history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_NAVIGATE_POSSIBLE_GET, "Queries whether it's possible to jump the given number of steps."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_GET, "Gets whether browsing history is enabled for the given object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_GET, "Get whether browsing history is enabled for the given object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_SET, "Enables or disables the browsing history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_SET, "Sets the zoom level of the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_GET, "Gets the current zoom level set on the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_GET, "Get the current zoom level set on the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_SET, "Sets the zoom mode to use."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_GET, "Gets the currently set zoom mode."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_GET, "Get the currently set zoom mode."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_REGION_SHOW, "Shows the given region in the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_REGION_BRING_IN, "Brings in the region to the visible area."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_SET, "Sets the default dialogs to use an Inwin instead of a normal window."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_GET, "Gets whether Inwin mode is set for the current object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_GET, "Get whether Inwin mode is set for the current object."),
EO_OP_DESCRIPTION_SENTINEL
};

View File

@ -1371,22 +1371,22 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_CONSOLE_MESSAGE_HOOK_SET, "Sets the function to call when a console message is emitted from JS."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_USERAGENT_SET, "Change useragent of a elm_web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_USERAGENT_GET, "Return current useragent of elm_web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_GET, "Gets the status of the tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_GET, "Get the status of the tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TAB_PROPAGATE_SET, "Sets whether to use tab propagation."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_SET, "Sets the URL for the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_GET, "Gets the current URL for the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TITLE_GET, "Gets the current title."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_URL_GET, "Get the current URL for the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TITLE_GET, "Get the current title."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_SET, "Sets the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_GET, "Gets the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_SELECTION_GET, "Gets a copy of the currently selected text."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BG_COLOR_GET, "Get the background color to be used by the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_SELECTION_GET, "Get a copy of the currently selected text."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_POPUP_SELECTED_SET, "Tells the web object which index in the currently open popup was selected."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_POPUP_DESTROY, "Dismisses an open dropdown popup."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_SEARCH, "Searches the given string in a document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_MARK, "Marks matches of the given string in a document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_UNMARK_ALL, "Clears all marked matches in the document."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_SET, "Sets whether to highlight the matched marks."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_GET, "Gets whether highlighting marks is enabled."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_LOAD_PROGRESS_GET, "Gets the overall loading progress of the page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_TEXT_MATCHES_HIGHLIGHT_GET, "Get whether highlighting marks is enabled."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_LOAD_PROGRESS_GET, "Get the overall loading progress of the page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_STOP, "Stops loading the current page."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_RELOAD, "Requests a reload of the current document in the object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_RELOAD_FULL, "Requests a reload of the current document, avoiding any existing caches."),
@ -1396,16 +1396,16 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_BACK_POSSIBLE_GET, "Queries whether it's possible to go back in history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_FORWARD_POSSIBLE_GET, "Queries whether it's possible to go forward in history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_NAVIGATE_POSSIBLE_GET, "Queries whether it's possible to jump the given number of steps."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_GET, "Gets whether browsing history is enabled for the given object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_GET, "Get whether browsing history is enabled for the given object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_HISTORY_ENABLED_SET, "Enables or disables the browsing history."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_SET, "Sets the zoom level of the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_GET, "Gets the current zoom level set on the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_GET, "Get the current zoom level set on the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_SET, "Sets the zoom mode to use."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_GET, "Gets the currently set zoom mode."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_ZOOM_MODE_GET, "Get the currently set zoom mode."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_REGION_SHOW, "Shows the given region in the web object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_REGION_BRING_IN, "Brings in the region to the visible area."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_SET, "Sets the default dialogs to use an Inwin instead of a normal window."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_GET, "Gets whether Inwin mode is set for the current object."),
EO_OP_DESCRIPTION(ELM_OBJ_WEB_SUB_ID_INWIN_MODE_GET, "Get whether Inwin mode is set for the current object."),
EO_OP_DESCRIPTION_SENTINEL
};

View File

@ -311,7 +311,7 @@ EAPI Evas_Object *elm_web_add(Evas_Object *parent);
EAPI void elm_web_zoom_mode_set(Evas_Object *obj, Elm_Web_Zoom_Mode mode);
/**
* Gets the currently set zoom mode
* Get the currently set zoom mode
*
* @param obj The web object
*
@ -323,7 +323,7 @@ EAPI void elm_web_zoom_mode_set(Evas_Object *obj, Elm_Web_Zoom_Mode
EAPI Elm_Web_Zoom_Mode elm_web_zoom_mode_get(const Evas_Object *obj);
/**
* Gets boolean properties from Elm_Web_Window_Features
* Get boolean properties from Elm_Web_Window_Features
* (such as statusbar, menubar, etc) that are on a window.
*
* @param wf The web window features object

View File

@ -192,7 +192,7 @@ enum
* @def elm_obj_web_tab_propagate_get
* @since 1.8
*
* Gets the status of the tab propagation
* Get the status of the tab propagation
*
* @param[out] ret
*
@ -235,7 +235,7 @@ enum
* @def elm_obj_web_url_get
* @since 1.8
*
* Gets the current URL for the object
* Get the current URL for the object
*
* @param[out] ret
*
@ -249,7 +249,7 @@ enum
* @def elm_obj_web_title_get
* @since 1.8
*
* Gets the current title
* Get the current title
*
* @param[out] ret
*
@ -280,7 +280,7 @@ enum
* @def elm_obj_web_bg_color_get
* @since 1.8
*
* Gets the background color to be used by the web object
* Get the background color to be used by the web object
*
* @param[out] r
* @param[out] g
@ -297,7 +297,7 @@ enum
* @def elm_obj_web_selection_get
* @since 1.8
*
* Gets a copy of the currently selected text
* Get a copy of the currently selected text
*
* @param[out] ret
*
@ -404,7 +404,7 @@ enum
* @def elm_obj_web_text_matches_highlight_get
* @since 1.8
*
* Gets whether highlighting marks is enabled
* Get whether highlighting marks is enabled
*
* @param[out] ret
*
@ -418,7 +418,7 @@ enum
* @def elm_obj_web_load_progress_get
* @since 1.8
*
* Gets the overall loading progress of the page
* Get the overall loading progress of the page
*
* @param[out] ret
*
@ -560,7 +560,7 @@ enum
* @def elm_obj_web_history_enabled_get
* @since 1.8
*
* Gets whether browsing history is enabled for the given object
* Get whether browsing history is enabled for the given object
*
* @param[out] ret
*
@ -602,7 +602,7 @@ enum
* @def elm_obj_web_zoom_get
* @since 1.8
*
* Gets the current zoom level set on the web object
* Get the current zoom level set on the web object
*
* @param[out] ret
*
@ -630,7 +630,7 @@ enum
* @def elm_obj_web_zoom_mode_get
* @since 1.8
*
* Gets the currently set zoom mode
* Get the currently set zoom mode
*
* @param[out] ret
*
@ -692,7 +692,7 @@ enum
* @def elm_obj_web_inwin_mode_get
* @since 1.8
*
* Gets whether Inwin mode is set for the current object
* Get whether Inwin mode is set for the current object
*
* @param[out] ret
*

View File

@ -138,7 +138,7 @@ EAPI void elm_web_useragent_set(Evas_Object *obj, const char *user_agent);
EAPI const char* elm_web_useragent_get(const Evas_Object *obj);
/**
* Gets the status of the tab propagation
* Get the status of the tab propagation
*
* @param obj The web object to query
* @return @c EINA_TRUE if tab propagation is enabled, @c EINA_FALSE otherwise
@ -180,7 +180,7 @@ EAPI void elm_web_tab_propagate_set(Evas_Object *obj, Eina_Bool pro
EAPI Eina_Bool elm_web_url_set(Evas_Object *obj, const char *url);
/**
* Gets the current URL for the object
* Get the current URL for the object
*
* The returned string must not be freed and is guaranteed to be
* stringshared.
@ -212,7 +212,7 @@ EAPI const char *elm_web_url_get(const Evas_Object *obj);
EINA_DEPRECATED EAPI Eina_Bool elm_web_uri_set(Evas_Object *obj, const char *uri);
/**
* Gets the current URI for the object
* Get the current URI for the object
*
* The returned string must not be freed and is guaranteed to be
* stringshared.
@ -230,7 +230,7 @@ EINA_DEPRECATED EAPI Eina_Bool elm_web_uri_set(Evas_Object *obj, const c
EINA_DEPRECATED EAPI const char *elm_web_uri_get(const Evas_Object *obj);
/**
* Gets the current title
* Get the current title
*
* The returned string must not be freed and is guaranteed to be
* stringshared.
@ -260,7 +260,7 @@ EAPI const char *elm_web_title_get(const Evas_Object *obj);
EAPI void elm_web_bg_color_set(Evas_Object *obj, int r, int g, int b, int a);
/**
* Gets the background color to be used by the web object
* Get the background color to be used by the web object
*
* This is the color that will be used by default when the loaded page
* does not set it's own. Color values are pre-multiplied.
@ -276,7 +276,7 @@ EAPI void elm_web_bg_color_set(Evas_Object *obj, int r, int g, int
EAPI void elm_web_bg_color_get(const Evas_Object *obj, int *r, int *g, int *b, int *a);
/**
* Gets a copy of the currently selected text
* Get a copy of the currently selected text
*
* The string returned must be freed by the user when it's done with it.
*
@ -378,7 +378,7 @@ EAPI Eina_Bool elm_web_text_matches_unmark_all(Evas_Object *obj);
EAPI Eina_Bool elm_web_text_matches_highlight_set(Evas_Object *obj, Eina_Bool highlight);
/**
* Gets whether highlighting marks is enabled
* Get whether highlighting marks is enabled
*
* @param obj The web object
*
@ -390,7 +390,7 @@ EAPI Eina_Bool elm_web_text_matches_highlight_set(Evas_Object *obj, Eina
EAPI Eina_Bool elm_web_text_matches_highlight_get(const Evas_Object *obj);
/**
* Gets the overall loading progress of the page
* Get the overall loading progress of the page
*
* Returns the estimated loading progress of the page, with a value between
* 0.0 and 1.0. This is an estimated progress accounting for all the frames
@ -539,7 +539,7 @@ EAPI Eina_Bool elm_web_forward_possible_get(Evas_Object *obj);
EAPI Eina_Bool elm_web_navigate_possible_get(Evas_Object *obj, int steps);
/**
* Gets whether browsing history is enabled for the given object
* Get whether browsing history is enabled for the given object
*
* @param obj The web object
*
@ -575,7 +575,7 @@ EAPI void elm_web_history_enabled_set(Evas_Object *obj, Eina_Bool e
EAPI void elm_web_zoom_set(Evas_Object *obj, double zoom);
/**
* Gets the current zoom level set on the web object
* Get the current zoom level set on the web object
*
* Note that this is the zoom level set on the web object and not that
* of the underlying Webkit one. In the ::ELM_WEB_ZOOM_MODE_MANUAL mode,
@ -635,7 +635,7 @@ EAPI void elm_web_region_bring_in(Evas_Object *obj, int x, int y, i
EAPI void elm_web_inwin_mode_set(Evas_Object *obj, Eina_Bool value);
/**
* Gets whether Inwin mode is set for the current object
* Get whether Inwin mode is set for the current object
*
* @param obj The web object
*

View File

@ -5485,13 +5485,13 @@ static const Eo_Op_Description op_desc[] = {
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_STICKY_SET, "Set the sticky state of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_STICKY_GET, "Get the sticky state of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_MODE_SET, "Sets the keyboard mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_MODE_GET, "Gets the keyboard mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_MODE_GET, "Get the keyboard mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_WIN_SET, "Sets whether the window is a keyboard."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_WIN_GET, "Gets whether the window is a keyboard."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_KEYBOARD_WIN_GET, "Get whether the window is a keyboard."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_MODE_SET, "Sets the indicator mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_MODE_GET, "Gets the indicator mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_MODE_GET, "Get the indicator mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_OPACITY_SET, "Sets the indicator opacity mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_OPACITY_GET, "Gets the indicator opacity mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_INDICATOR_OPACITY_GET, "Get the indicator opacity mode of the window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_SCREEN_POSITION_GET, "Get the screen position of a window."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_FOCUS_GET, "Determine whether a window has focus."),
EO_OP_DESCRIPTION(ELM_OBJ_WIN_SUB_ID_SCREEN_CONSTRAIN_SET, "Constrain the maximum width and height of a window to the width and height of its screen."),

View File

@ -817,7 +817,7 @@ enum
* @def elm_obj_win_keyboard_mode_get
* @since 1.8
*
* Gets the keyboard mode of the window.
* Get the keyboard mode of the window.
*
* @param[out] ret
*
@ -841,7 +841,7 @@ enum
* @def elm_obj_win_keyboard_win_get
* @since 1.8
*
* Gets whether the window is a keyboard.
* Get whether the window is a keyboard.
*
* @param[out] ret
*
@ -865,7 +865,7 @@ enum
* @def elm_obj_win_indicator_mode_get
* @since 1.8
*
* Gets the indicator mode of the window.
* Get the indicator mode of the window.
*
* @param[out] ret
*
@ -889,7 +889,7 @@ enum
* @def elm_obj_win_indicator_opacity_get
* @since 1.8
*
* Gets the indicator opacity mode of the window.
* Get the indicator opacity mode of the window.
*
* @param[out] ret
*

View File

@ -1107,7 +1107,7 @@ EAPI void elm_win_focus_highlight_style_set(Evas_Object *obj, c
/**
* Get the style set for the focus highlight object
*
* Gets the style set for this windows highlight object, or NULL if none
* Get the style set for this windows highlight object, or NULL if none
* is set.
*
* @param obj The window to retrieve the highlights style from
@ -1155,7 +1155,7 @@ EAPI Eina_Bool elm_win_focus_highlight_animate_get(const Evas_Object
EAPI void elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode);
/**
* Gets the keyboard mode of the window.
* Get the keyboard mode of the window.
*
* @param obj The window object
* @return The mode, one of #Elm_Win_Keyboard_Mode
@ -1175,7 +1175,7 @@ EAPI Elm_Win_Keyboard_Mode elm_win_keyboard_mode_get(const Evas_Object *obj);
EAPI void elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard);
/**
* Gets whether the window is a keyboard.
* Get whether the window is a keyboard.
*
* @param obj The window object
* @return If the window is a virtual keyboard
@ -1195,7 +1195,7 @@ EAPI Eina_Bool elm_win_keyboard_win_get(const Evas_Object *obj);
EAPI void elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode);
/**
* Gets the indicator mode of the window.
* Get the indicator mode of the window.
*
* @param obj The window object
* @return The mode, one of #Elm_Win_Indicator_Mode
@ -1215,7 +1215,7 @@ EAPI Elm_Win_Indicator_Mode elm_win_indicator_mode_get(const Evas_Object *obj);
EAPI void elm_win_indicator_opacity_set(Evas_Object *obj, Elm_Win_Indicator_Opacity_Mode mode);
/**
* Gets the indicator opacity mode of the window.
* Get the indicator opacity mode of the window.
*
* @param obj The window object
* @return The mode, one of #Elm_Win_Indicator_Opacity_Mode