toolbar: updated documentations.

1. elm/toolbar/more/default edc.
2. elm_toolbar_more_item_get() API
This commit is contained in:
Daniel Juyung Seo 2013-04-26 00:04:53 +09:00
parent f64c5ecc9b
commit 6940c8bc10
2 changed files with 10 additions and 3 deletions

View File

@ -213,6 +213,11 @@ group { name: "elm/toolbar/base/default";
}
}
/* this style is used for toolbar more layout background.
* how to test:
* elementary_test -> toolbar 8 -> click 'open'
* the whole expanded layout is elm/toolbar/more/default layout.
*/
group { name: "elm/toolbar/more/default";
images {
image: "toolbar_separator_h.png" COMP;

View File

@ -469,13 +469,15 @@ EAPI void elm_toolbar_item_selected_set(Elm_Object_Item
EAPI Elm_Object_Item *elm_toolbar_selected_item_get(const Evas_Object *obj);
/**
* Get the more item.
* Get the more item which is auto-generated by toolbar.
*
* @param obj The toolbar object.
* @return The toolbar more item.
*
* The more item can be changed with function
* elm_object_item_text_set() and elm_object_item_content_set.
* Toolbar generates 'more' item when there is no more space to fit items in
* and toolbar is in ELM_TOOLBAR_SHRINK_MENU or ELM_TOOLBAR_SHRINK_EXPAND mode.
* The more item can be manipulated by elm_object_item_text_set() and
* elm_object_item_content_set.
*
* @ingroup Toolbar
*/