efl/legacy/elementary/src/lib/elm_list.eo

664 lines
25 KiB
Plaintext
Raw Normal View History

import elm_general;
enum Elm.List.Mode
{
[[
@addtogroup List
Set list's resizing behavior, transverse axis scrolling and items
cropping. See each mode's description for more details.
@note Default value is #ELM_LIST_SCROLL.
Values here @b don't work as bitmasks -- only one can be chosen at
a time.
@see elm_list_mode_set()
@see elm_list_mode_get()
]]
legacy: elm_list;
compress = 0, [[The list @b won't set any of its size hints to inform how a possible container should resize it. Then, if it's not created as a "resize object", it might end with zeroed dimensions. The list will respect the container's geometry and, if any of its items won't fit into its @b transverse axis, one won't be able to scroll it in that direction.]]
scroll, [[Default value. This is the same as #ELM_LIST_COMPRESS, with the exception that if any of its items won't fit into its transverse axis, one @b will be able to scroll it in that direction.]]
limit, [[Sets a minimum size hint on the list object, so that containers may respect it (and resize itself to fit the child properly). More specifically, a @b minimum size hint will be set for its @b transverse axis, so that the @b largest item in that direction fits well. This is naturally bound by the list object's maximum size hints, set externally.]]
expand, [[Besides setting a minimum size on the transverse axis, just like on #ELM_LIST_LIMIT, the list will set a minimum size on the @b longitudinal axis, trying to reserve space to all its children to be visible at a time. . This is naturally bound by the list object's maximum size hints, set externally.]]
last [[Indicates error if returned by elm_list_mode_get().]]
}
class Elm.List (Elm.Layout, Elm_Interface_Scrollable,
Elm_Interface_Atspi_Widget_Action, Elm_Interface_Atspi_Selection,
Evas.Clickable_Interface, Evas.Selectable_Interface)
2014-03-31 05:59:55 -07:00
{
eo_prefix: elm_obj_list;
2015-05-07 09:32:53 -07:00
methods {
@property horizontal {
2014-03-31 05:59:55 -07:00
set {
/*@
Enable or disable horizontal mode on the list object.
@note Vertical mode is set by default.
On horizontal mode items are displayed on list from left to right,
instead of from top to bottom. Also, the list will scroll horizontally.
Each item will presents left icon on top and right icon, or end, at
the bottom.
@see elm_list_horizontal_get()
@ingroup List */
}
get {
/*@
Get a value whether horizontal mode is enabled or not.
@return @c EINA_TRUE means horizontal mode selection is enabled.
@c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
@c EINA_FALSE is returned.
@see elm_list_horizontal_set() for details.
@ingroup List */
}
values {
horizontal: bool; /*@ @c EINA_TRUE to enable horizontal or @c EINA_FALSE to
2014-03-31 05:59:55 -07:00
disable it, i.e., to enable vertical mode. */
}
}
2015-05-07 09:32:53 -07:00
@property select_mode {
2014-03-31 05:59:55 -07:00
set {
/*@
Set the list select mode.
elm_list_select_mode_set() changes item select mode in the list widget.
- #ELM_OBJECT_SELECT_MODE_DEFAULT : Items will only call their selection func and
2014-03-31 05:59:55 -07:00
callback when first becoming selected. Any further clicks will
do nothing, unless you set always select mode.
- #ELM_OBJECT_SELECT_MODE_ALWAYS : This means that, even if selected,
2014-03-31 05:59:55 -07:00
every click will make the selected callbacks be called.
- #ELM_OBJECT_SELECT_MODE_NONE : This will turn off the ability to select items
2014-03-31 05:59:55 -07:00
entirely and they will neither appear selected nor call selected
callback functions.
@see elm_list_select_mode_get()
@ingroup List */
}
get {
/*@
Get the list select mode.
@return The select mode
2015-02-05 22:15:44 -08:00
(If getting mode fails, it returns #ELM_OBJECT_SELECT_MODE_MAX)
2014-03-31 05:59:55 -07:00
@see elm_list_select_mode_set()
@ingroup List */
}
values {
mode: Elm.Object.Select_Mode(Elm.Object.Select_Mode.max); /*@ The select mode */
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property focus_on_selection {
2014-03-31 05:59:55 -07:00
set {
/*@
Set focus upon items selection mode
When enabled, every selection of an item inside the genlist will automatically set focus to
its first focusable widget from the left. This is true of course if the selection was made by
clicking an unfocusable area in an item or selecting it with a key movement. Clicking on a
focusable widget inside an item will couse this particular item to get focus as usual.
@ingroup List */
}
get {
/*@
Get whether focus upon item's selection mode is enabled.
@return The tree effect status
(EINA_TRUE = enabled, EINA_FALSE = disabled)
@ingroup List */
}
values {
enabled: bool; /*@ The tree effect status
2014-03-31 05:59:55 -07:00
(EINA_TRUE = enabled, EINA_FALSE = disabled) */
}
}
2015-05-07 09:32:53 -07:00
@property multi_select {
2014-03-31 05:59:55 -07:00
set {
/*@
Enable or disable multiple items selection on the list object.
Disabled by default. If disabled, the user can select a single item of
the list each time. Selected items are highlighted on list.
If enabled, many items can be selected.
If a selected item is selected again, it will be unselected.
@see elm_list_multi_select_get()
@ingroup List */
}
get {
/*@
Get a value whether multiple items selection is enabled or not.
@see elm_list_multi_select_set() for details.
@return @c EINA_TRUE means multiple items selection is enabled.
@c EINA_FALSE indicates it's disabled. If @p obj is @c NULL,
@c EINA_FALSE is returned.
@ingroup List */
}
values {
multi: bool; /*@ @c EINA_TRUE to enable multi selection or @c EINA_FALSE to
2014-03-31 05:59:55 -07:00
disable it. */
}
}
2015-05-07 09:32:53 -07:00
@property multi_select_mode {
2014-03-31 05:59:55 -07:00
set {
/*@
Set the list multi select mode.
- #ELM_OBJECT_MULTI_SELECT_MODE_DEFAULT : select/unselect items whenever each
2014-03-31 05:59:55 -07:00
item is clicked.
- #ELM_OBJECT_MULTI_SELECT_MODE_WITH_CONTROL : Only one item will be selected
2014-03-31 05:59:55 -07:00
although multi-selection is enabled, if clicked without pressing control
key. This mode is only available with multi-selection.
@see elm_list_multi_select_set()
@see elm_list_multi_select_mode_get()
@ingroup List
@since 1.8 */
}
get {
/*@
Get the list multi select mode.
@return The multi select mode
2015-02-05 22:15:44 -08:00
(If getting mode fails, it returns #ELM_OBJECT_MULTI_SELECT_MODE_MAX)
2014-03-31 05:59:55 -07:00
@see elm_list_multi_select_set()
@see elm_list_multi_select_mode_set()
@ingroup List
@since 1.8 */
}
values {
mode: Elm.Object.Multi_Select_Mode(Elm.Object.Multi_Select_Mode.max); /*@ The multi select mode */
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property mode {
2014-03-31 05:59:55 -07:00
set {
/*@
Set which mode to use for the list object.
Set list's resize behavior, transverse axis scroll and
items cropping. See each mode's description for more details.
@note Default value is #ELM_LIST_SCROLL.
Only one mode at a time can be set. If a previous one was set, it
will be changed by the new mode after this call. Bitmasks won't
work here as well.
@warning This function's behavior will clash with those of
elm_scroller_content_min_limit(), so use either one of them, but
not both.
@see elm_list_mode_get()
@ingroup List */
}
get {
/*@
Get the mode the list is at.
@return One of #Elm_List_Mode: #ELM_LIST_COMPRESS, #ELM_LIST_SCROLL, #ELM_LIST_LIMIT, #ELM_LIST_EXPAND or #ELM_LIST_LAST on errors.
@note see elm_list_mode_set() for more information.
@ingroup List */
}
values {
mode: Elm.List.Mode(Elm.List.Mode.last); /*@ One of #Elm_List_Mode: #ELM_LIST_COMPRESS,
2014-03-31 05:59:55 -07:00
#ELM_LIST_SCROLL, #ELM_LIST_LIMIT or #ELM_LIST_EXPAND. */
}
}
2015-05-07 09:32:53 -07:00
@property selected_item {
2014-03-31 05:59:55 -07:00
get {
/*@
Get the selected item.
@return The selected list item.
The selected item can be unselected with function
elm_list_item_selected_set().
The selected item always will be highlighted on list.
@see elm_list_selected_items_get()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property items {
2014-03-31 05:59:55 -07:00
get {
/*@
Get a list of all the list items.
@return A @c list of list items, #Elm_Object_Item,
2014-03-31 05:59:55 -07:00
or @c NULL on failure.
@see elm_list_item_append()
@see elm_object_item_del()
@see elm_list_clear()
@ingroup List */
return: const(list<Elm_Object_Item *>)*;
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property first_item {
2014-03-31 05:59:55 -07:00
get {
/*@
Get the first item in the list
This returns the first item in the list.
@return The first item, or NULL if none
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property selected_items {
2014-03-31 05:59:55 -07:00
get {
/*@
Return a list of the currently selected list items.
@return An @c list of list items, #Elm_Object_Item,
2014-03-31 05:59:55 -07:00
or @c NULL on failure.
Multiple items can be selected if multi select is enabled. It can be
done with elm_list_multi_select_set().
@see elm_list_selected_item_get()
@see elm_list_multi_select_set()
@ingroup List */
return: const(list<Elm_Object_Item *>)*;
2014-03-31 05:59:55 -07:00
}
}
2015-05-07 09:32:53 -07:00
@property last_item {
2014-03-31 05:59:55 -07:00
get {
/*@
Get the last item in the list
This returns the last item in the list.
@return The last item, or NULL if none
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
}
}
item_insert_before {
/*@
Insert a new item into the list object before item @p before.
@return The created item or @c NULL upon failure.
A new item will be created and added to the list. Its position in
this list will be just before item @p before.
Items created with this method can be deleted with elm_object_item_del().
Associated @p data can be properly freed when item is deleted if a
callback function is set with elm_object_item_del_cb_set().
If a function is passed as argument, it will be called every time this item
is selected, i.e., the user clicks over an unselected item.
If always select is enabled it will call this function every time
user clicks over an item (already selected or not).
If such function isn't needed, just passing
@c NULL as @p func is enough. The same should be done for @p data.
@note Remember that the label parameter is copied inside the list. So if an
application dynamically allocated the label, the application should free the
label after this call.
@see elm_list_item_append() for a simple code example.
@see elm_list_select_mode_set()
@see elm_object_item_del()
@see elm_object_item_del_cb_set()
@see elm_list_clear()
@see elm_icon_add()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in before: Elm_Object_Item *; /*@ The list item to insert before. */
@in label: const(char)*; /*@ The label of the list item. */
@in icon: Evas.Object * @optional; /*@ The icon object to use for the left side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object, but usually it is an icon created
with elm_icon_add(). */
@in end: Evas.Object * @optional; /*@ The icon object to use for the right side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object. */
@in func: Evas_Smart_Cb @optional; /*@ The function to call when the item is clicked. */
@in data: const(void)* @optional; /*@ The data to associate with the item for related callbacks. */
2014-03-31 05:59:55 -07:00
}
}
go {
/*@
Starts the list.
@note Call before running show() on the list object.
@warning If not called, it won't display the list properly.
@code
li = elm_list_add(win);
elm_list_item_append(li, "First", NULL, NULL, NULL, NULL);
elm_list_item_append(li, "Second", NULL, NULL, NULL, NULL);
elm_list_go(li);
evas_object_show(li);
@endcode
@ingroup List */
}
item_insert_after {
/*@
Insert a new item into the list object after item @p after.
@return The created item or @c NULL upon failure.
A new item will be created and added to the list. Its position in
this list will be just after item @p after.
Items created with this method can be deleted with elm_object_item_del().
Associated @p data can be properly freed when item is deleted if a
callback function is set with elm_object_item_del_cb_set().
If a function is passed as argument, it will be called every time this item
is selected, i.e., the user clicks over an unselected item.
If always select is enabled it will call this function every time
user clicks over an item (already selected or not).
If such function isn't needed, just passing
@c NULL as @p func is enough. The same should be done for @p data.
@note Remember that the label parameter is copied inside the list. So if an
application dynamically allocated the label, the application should free the
label after this call.
@see elm_list_item_append() for a simple code example.
@see elm_list_select_mode_set()
@see elm_object_item_del()
@see elm_object_item_del_cb_set()
@see elm_list_clear()
@see elm_icon_add()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in after: Elm_Object_Item *; /*@ The list item to insert after. */
@in label: const(char)*; /*@ The label of the list item. */
@in icon: Evas.Object * @optional; /*@ The icon object to use for the left side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object, but usually it is an icon created
with elm_icon_add(). */
@in end: Evas.Object * @optional; /*@ The icon object to use for the right side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object. */
@in func: Evas_Smart_Cb @optional; /*@ The function to call when the item is clicked. */
@in data: const(void)* @optional; /*@ The data to associate with the item for related callbacks. */
2014-03-31 05:59:55 -07:00
}
}
2014-07-22 09:13:52 -07:00
at_xy_item_get @const {
2014-03-31 05:59:55 -07:00
/*@
Get the item that is at the x, y canvas coords.
@return The item at the coordinates or NULL if none
This returns the item at the given coordinates (which are canvas
relative, not object-relative). If an item is at that coordinate,
that item handle is returned, and if @p posret is not NULL, the
integer pointed to is set to a value of -1, 0 or 1, depending if
the coordinate is on the upper portion of that item (-1), on the
middle section (0) or on the lower part (1). If NULL is returned as
an item (no item found there), then posret may indicate -1 or 1
based if the coordinate is above or below all items respectively in
the list.
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in x: Evas.Coord; /*@ The input x coordinate */
@in y: Evas.Coord; /*@ The input y coordinate */
@out posret: int; /*@ The position relative to the item returned here */
2014-03-31 05:59:55 -07:00
}
}
item_append {
/*@
Append a new item to the list object.
@return The created item or @c NULL upon failure.
A new item will be created and appended to the list, i.e., will
be set as @b last item.
Items created with this method can be deleted with elm_object_item_del().
Associated @p data can be properly freed when item is deleted if a
callback function is set with elm_object_item_del_cb_set().
If a function is passed as argument, it will be called every time this item
is selected, i.e., the user clicks over an unselected item.
If always select is enabled it will call this function every time
user clicks over an item (already selected or not).
If such function isn't needed, just passing
@c NULL as @p func is enough. The same should be done for @p data.
@note Remember that the label parameter is copied inside the list. So if an
application dynamically allocated the label, the application should free the
label after this call.
Simple example (with no function callback or data associated):
@code
li = elm_list_add(win);
ic = elm_icon_add(win);
elm_image_file_set(ic, "path/to/image", NULL);
elm_icon_resizable_set(ic, EINA_TRUE, EINA_TRUE);
elm_list_item_append(li, "label", ic, NULL, NULL, NULL);
elm_list_go(li);
evas_object_show(li);
@endcode
@see elm_list_select_mode_set()
@see elm_object_item_del()
@see elm_object_item_del_cb_set()
@see elm_list_clear()
@see elm_icon_add()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in label: const(char)*; /*@ The label of the list item. */
@in icon: Evas.Object * @optional; /*@ The icon object to use for the left side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object, but usually it is an icon created
with elm_icon_add(). */
@in end: Evas.Object * @optional; /*@ The icon object to use for the right side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object. */
@in func: Evas_Smart_Cb @optional; /*@ The function to call when the item is clicked. */
@in data: const(void)* @optional; /*@ The data to associate with the item for related callbacks. */
2014-03-31 05:59:55 -07:00
}
}
item_prepend {
/*@
Prepend a new item to the list object.
@return The created item or @c NULL upon failure.
A new item will be created and prepended to the list, i.e., will
be set as @b first item.
Items created with this method can be deleted with elm_object_item_del().
Associated @p data can be properly freed when item is deleted if a
callback function is set with elm_object_item_del_cb_set().
If a function is passed as argument, it will be called every time this item
is selected, i.e., the user clicks over an unselected item.
If always select is enabled it will call this function every time
user clicks over an item (already selected or not).
If such function isn't needed, just passing
@c NULL as @p func is enough. The same should be done for @p data.
@note Remember that the label parameter is copied inside the list. So if an
application dynamically allocated the label, the application should free the
label after this call.
@see elm_list_item_append() for a simple code example.
@see elm_list_select_mode_set()
@see elm_object_item_del()
@see elm_object_item_del_cb_set()
@see elm_list_clear()
@see elm_icon_add()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in label: const(char)*; /*@ The label of the list item. */
@in icon: Evas.Object * @optional; /*@ The icon object to use for the left side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object, but usually it is an icon created
with elm_icon_add(). */
@in end: Evas.Object * @optional; /*@ The icon object to use for the right side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object. */
@in func: Evas_Smart_Cb @optional; /*@ The function to call when the item is clicked. */
@in data: const(void)* @optional; /*@ The data to associate with the item for related callbacks. */
2014-03-31 05:59:55 -07:00
}
}
clear {
/*@
Remove all list's items.
@see elm_object_item_del()
@see elm_list_item_append()
@ingroup List */
}
item_sorted_insert {
/*@
Insert a new item into the sorted list object.
@return The created item or @c NULL upon failure.
@note This function inserts values into a list object assuming it was
sorted and the result will be sorted.
A new item will be created and added to the list. Its position in
this list will be found comparing the new item with previously inserted
items using function @p cmp_func.
Items created with this method can be deleted with elm_object_item_del().
Associated @p data can be properly freed when item is deleted if a
callback function is set with elm_object_item_del_cb_set().
If a function is passed as argument, it will be called every time this item
is selected, i.e., the user clicks over an unselected item.
If always select is enabled it will call this function every time
user clicks over an item (already selected or not).
If such function isn't needed, just passing
@c NULL as @p func is enough. The same should be done for @p data.
@note Remember that the label parameter is copied inside the list. So if an
application dynamically allocated the label, the application should free the
label after this call.
@see elm_list_item_append() for a simple code example.
@see elm_list_select_mode_set()
@see elm_object_item_del()
@see elm_object_item_del_cb_set()
@see elm_list_clear()
@see elm_icon_add()
@ingroup List */
return: Elm_Object_Item *;
2014-03-31 05:59:55 -07:00
params {
@in label: const(char)*; /*@ The label of the list item. */
@in icon: Evas.Object * @optional; /*@ The icon object to use for the left side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object, but usually it is an icon created
with elm_icon_add(). */
@in end: Evas.Object * @optional; /*@ The icon object to use for the right side of the item. An
2014-03-31 05:59:55 -07:00
icon can be any Evas object. */
@in func: Evas_Smart_Cb @optional; /*@ The function to call when the item is clicked. */
@in data: const(void)* @optional; /*@ The data to associate with the item for related callbacks. */
@in cmp_func: Eina_Compare_Cb; /*@ The comparing function to be used to sort list
2014-03-31 05:59:55 -07:00
items <b>by #Elm_Object_Item item handles</b>. This function will
receive two items and compare them, returning a non-negative integer
if the second item should be place after the first, or negative value
if should be placed before. */
}
}
}
implements {
class.constructor;
Eo.Base.constructor;
Evas.Object_Smart.member_add;
Evas.Object_Smart.move;
Evas.Object_Smart.add;
Evas.Object_Smart.del;
Evas.Object_Smart.resize;
Elm.Widget.theme_apply;
Elm.Widget.focus_next_manager_is;
Elm.Widget.focus_direction_manager_is;
Elm.Widget.access;
Elm.Widget.focus_highlight_geometry_get;
Elm.Widget.focus_next;
Elm.Widget.disable;
Elm.Widget.on_focus;
Elm.Widget.translate;
Elm.Widget.sub_object_del;
Elm.Widget.event;
Elm.Widget.focused_item.get;
Elm.Widget.item_loop_enabled.set;
Elm.Widget.item_loop_enabled.get;
Elm.Layout.sizing_eval;
Elm_Interface_Scrollable.policy.set;
Elm_Interface_Atspi_Widget_Action.elm_actions.get;
Elm_Interface_Atspi_Accessible.children.get;
Elm_Interface_Atspi_Selection.selected_children_count.get;
Elm_Interface_Atspi_Selection.selected_child.get;
Elm_Interface_Atspi_Selection.selected_child_deselect;
Elm_Interface_Atspi_Selection.child_select;
Elm_Interface_Atspi_Selection.child_deselect;
Elm_Interface_Atspi_Selection.is_child_selected;
Elm_Interface_Atspi_Selection.all_children_select;
Elm_Interface_Atspi_Selection.clear;
2014-03-31 05:59:55 -07:00
}
events {
activated;
edge,top;
edge,bottom;
edge,left;
edge,right;
swipe;
highlighted;
unhighlighted;
item,focused;
item,unfocused;
item,reorder,anim,start;
item,reorder,anim,stop;
2014-03-31 05:59:55 -07:00
language,changed;
access,changed;
}
}