elementary - added convenient macros elm_object_translatable_part_text_set(), elm_object_item_translatable_part_text_get()

This commit is contained in:
ChunEon Park 2013-04-01 21:38:50 +09:00
parent 1d3d93741a
commit 2e3fad1466
4 changed files with 10 additions and 0 deletions

View File

@ -1199,3 +1199,8 @@
* Add the repeat_events_set/get for blocking the events of content objects.
This feature is useful to the access.
2013-04-01 ChunEon Park (Hermet)
* Add convenient macros - elm_object_translatable_part_text_set(), elm_object_item_translatable_part_text_set().

View File

@ -56,6 +56,7 @@ Additions:
* Add APIs - elm_entry_input_panel_layout_variation_set/get
* Add elm_map smart callback - "language,changed".
* Add the repeat_events_set/get for blocking the events of content objects.
* Add convenient macros - elm_object_translatable_part_text_set(), elm_object_item_translatable_part_text_set().
Improvements:

View File

@ -59,6 +59,8 @@ EAPI void elm_object_domain_translatable_part_text_set(Evas_Object *obj, co
#define elm_object_translatable_text_set(obj, text) elm_object_domain_translatable_part_text_set((obj), NULL, NULL, (text))
#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
*

View File

@ -150,6 +150,8 @@ EAPI void elm_object_item_domain_translatable_part_text_set(Elm_Object_Item
#define elm_object_item_translatable_text_set(it, text) elm_object_item_domain_translatable_part_text_set((it), NULL, NULL, (text))
#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.
*