bin/live_edit: improve ui.

reposition info text and update guide text.
This commit is contained in:
ChunEon Park 2015-02-25 22:03:55 +09:00
parent e858f46c0b
commit dd91efdc3d
1 changed files with 5 additions and 5 deletions

View File

@ -121,18 +121,18 @@ info_text_update(live_data *ld)
//Rel1
evas_object_geometry_get(ld->ctrl_pt[Ctrl_Pt_Rel1], &rx, &ry, &rw, &rh);
evas_object_geometry_get(ld->info_text[Info_Text_Rel1], NULL, NULL, &w, &h);
x = rx - w;
x = (rx + rw);
y = ry - h;
if (x < lx) x = (rx + rw);
if ((x + w) > (lx + lw)) x = (rx - w);
if (y < ly) y = (ry + rh);
evas_object_move(ld->info_text[Info_Text_Rel1], x, y);
//Rel2
evas_object_geometry_get(ld->ctrl_pt[Ctrl_Pt_Rel2], &rx, &ry, &rw, &rh);
evas_object_geometry_get(ld->info_text[Info_Text_Rel2], NULL, NULL, &w, &h);
x = (rx + rw);
x = (rx - w);
y = (ry + rh);
if ((x + w) > (lx + lw)) x = (rx - w);
if (x < lx) x = (rx + rw);
if ((y + h) > (ly + lh)) y = (ry - h);
evas_object_move(ld->info_text[Info_Text_Rel2], x, y);
@ -820,7 +820,7 @@ ctxpopup_it_selected_cb(void *data, Evas_Object *obj, void *event_info)
elm_ctxpopup_dismiss(obj);
stats_info_msg_update("Click and drag the mouse in the Live View.");
stats_info_msg_update("Double click the part to confirm.");
}
static void