[JungWooHyun] doing merge job ~
[framework/uifw/elementary.git] / src / examples / anchorblock_example_01.c
index 628319e..06440c5 100644 (file)
@@ -57,7 +57,7 @@ elm_main(int argc __UNUSED__, char *argv[] __UNUSED__)
    o = elm_anchorblock_add(win);
    elm_anchorblock_hover_style_set(o, "popout");
    elm_anchorblock_hover_parent_set(o, win);
-   elm_anchorblock_text_set(o, anchortext);
+   elm_object_text_set(o, anchortext);
    evas_object_smart_callback_add(o, "anchor,clicked", _anchorblock_clicked_cb,
                                   NULL);
    evas_object_show(o);
@@ -73,7 +73,7 @@ elm_main(int argc __UNUSED__, char *argv[] __UNUSED__)
    o = elm_anchorview_add(win);
    elm_anchorview_hover_parent_set(o, frame);
    elm_anchorview_bounce_set(o, EINA_FALSE, EINA_TRUE);
-   elm_anchorview_text_set(o, anchortext);
+   elm_object_text_set(o, anchortext);
    evas_object_smart_callback_add(o, "anchor,clicked", _anchorview_clicked_cb,
                                   NULL);
    evas_object_show(o);
@@ -118,7 +118,7 @@ _anchorview_clicked_cb(void *data __UNUSED__, Evas_Object *obj, void *event_info
 static void
 _btn_clicked_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
 {
-   const char *lbl = elm_button_label_get(obj);
+   const char *lbl = elm_object_text_get(obj);
    printf("%s: %s\n", lbl, (char *)data);
    eina_stringshare_del(data);
 }
@@ -138,7 +138,7 @@ _anchor_buttons_create(Evas_Object *ao, Elm_Entry_Anchorblock_Info *info, Evas_S
      {
         elm_object_text_set(btn, "Nothing to see here");
         evas_object_smart_callback_add(btn, "clicked", btn_end_cb, ao);
-        elm_hover_content_set(info->hover, "middle", btn);
+        elm_object_part_content_set(info->hover, "middle", btn);
         return;
      }
 
@@ -230,14 +230,14 @@ _anchor_buttons_create(Evas_Object *ao, Elm_Entry_Anchorblock_Info *info, Evas_S
 
    evas_object_smart_callback_add(btn, "clicked", btn_end_cb, ao);
    evas_object_smart_callback_add(btn, "clicked", _btn_clicked_cb, str);
-   elm_hover_content_set(info->hover, "middle", btn);
+   elm_object_part_content_set(info->hover, "middle", btn);
 
    if (secondary)
      {
         if (info->hover_right)
-          elm_hover_content_set(info->hover, "right", secondary);
+          elm_object_part_content_set(info->hover, "right", secondary);
         else if (info->hover_left)
-          elm_hover_content_set(info->hover, "left", secondary);
+          elm_object_part_content_set(info->hover, "left", secondary);
         else
           evas_object_del(secondary);
      }
@@ -245,9 +245,9 @@ _anchor_buttons_create(Evas_Object *ao, Elm_Entry_Anchorblock_Info *info, Evas_S
    if (box)
      {
         if (info->hover_bottom)
-          elm_hover_content_set(info->hover, "bottom", box);
+          elm_object_part_content_set(info->hover, "bottom", box);
         else if (info->hover_top)
-          elm_hover_content_set(info->hover, "top", box);
+          elm_object_part_content_set(info->hover, "top", box);
         else
           evas_object_del(box);
      }