elementary/genlist - updated signal callback list in doxygen

SVN revision: 58346
This commit is contained in:
ChunEon Park 2011-04-05 06:01:28 +00:00
parent d95b927bed
commit 880365feee
1 changed files with 29 additions and 25 deletions

View File

@ -191,45 +191,49 @@
* Signals that you can add callbacks for are: * Signals that you can add callbacks for are:
* *
* "clicked,double" - This is called when a user has double-clicked an item. The * "clicked,double" - This is called when a user has double-clicked an item. The
* event_info parameter is the genlist item that was double-clicked. * event_info parameter is the genlist item that was double-c
* licked.
* "selected" - This is called when a user has made an item selected. The * "selected" - This is called when a user has made an item selected. The
* event_info parameter is the genlist item that was selected. * event_info parameter is the genlist item that was selected.
* "unselected" - This is called when a user has made an item unselected. The * "unselected" - This is called when a user has made an item unselected. The
* event_info parameter is the genlist item that was unselected. * event_info parameter is the genlist item that was unselected.
* "expanded" - This is called when elm_genlist_item_expanded_set() is called * "expanded" - This is called when elm_genlist_item_expanded_set() is called
* and the item is now meant to be expanded. The event_info parameter is the * and the item is now meant to be expanded. The event_info
* genlist item that was indicated to expand. It is the job of this callback * parameter is the genlist item that was indicated to expand. It
* to then fill in the child items. * is the job of this callback to then fill in the child items.
* "contracted" - This is called when elm_genlist_item_expanded_set() is called * "contracted" - This is called when elm_genlist_item_expanded_set() is called
* and the item is now meant to be contracted. The event_info parameter is * and the item is now meant to be contracted. The event_info
* the genlist item that was indicated to contract. It is the job of this * parameter is the genlist item that was indicated to contract.
* callback to then delete the child items. * It is the job of this callback to then delete the child items.
* "expand,request" - This is called when a user has indicated they want to * "expand,request" - This is called when a user has indicated they want to
* expand a tree branch item. The callback should decide if the item can * expand a tree branch item. The callback should decide if
* expand (has any children) and then call elm_genlist_item_expanded_set() * the item can expand (has any children) and then call
* appropriately to set the state. The event_info parameter is the genlist * elm_genlist_item_expanded_set() appropriately to set the
* item that was indicated to expand. * state. The event_info parameter is the genlist item that
* was indicated to expand.
* "contract,request" - This is called when a user has indicated they want to * "contract,request" - This is called when a user has indicated they want to
* contract a tree branch item. The callback should decide if the item can * contract a tree branch item. The callback should decide
* contract (has any children) and then call elm_genlist_item_expanded_set() * if the item can contract (has any children) and then
* appropriately to set the state. The event_info parameter is the genlist * call elm_genlist_item_expanded_set() appropriately to
* set the state. The event_info parameter is the genlist
* item that was indicated to contract. * item that was indicated to contract.
* "realized" - This is called when the item in the list is created as a real * "realized" - This is called when the item in the list is created as a real
* evas object. event_info parameter is the genlist item that was created. * evas object. event_info parameter is the genlist item that was
* The object may be deleted at any time, so it is up to the caller to * created. The object may be deleted at any time, so it is up to
* not use the object pointer from elm_genlist_item_object_get() in a way * the caller to not use the object pointer from
* where it may point to freed objects. * elm_genlist_item_object_get() in a way where it may point to
* "unrealized" - This is called just before an item is unrealized. After * freed objects.
* this call icon objects provided will be deleted and the item object * "unrealized" - This is called just before an item is unrealized. After this
* call icon objects provided will be deleted and the item object
* itself delete or be put into a floating cache. * itself delete or be put into a floating cache.
* "drag,start,up" - This is called when the item in the list has been dragged * "drag,start,up" - This is called when the item in the list has been dragged
* (not scrolled) up. * (not scrolled) up.
* "drag,start,down" - This is called when the item in the list has been dragged * "drag,start,down" - This is called when the item in the list has been dragged
* (not scrolled) down. * (not scrolled) down.
* "drag,start,left" - This is called when the item in the list has been dragged i * "drag,start,left" - This is called when the item in the list has been dragged
* (not scrolled) left. * (not scrolled) left.
* "drag,start,right" - This is called when the item in the list has been dragged * "drag,start,right" - This is called when the item in the list has been
* (not scrolled) right. * dragged (not scrolled) right.
* "drag,stop" - This is called when the item in the list has stopped being * "drag,stop" - This is called when the item in the list has stopped being
* dragged. * dragged.
* "drag" - This is called when the item in the list is being dragged. * "drag" - This is called when the item in the list is being dragged.