live_edit: adjust text ui.

This commit is contained in:
Hermet Park 2016-08-12 12:28:41 +09:00
parent 498782167f
commit 8f7c61df8b
2 changed files with 8 additions and 8 deletions

View File

@ -316,8 +316,8 @@ info_text_update(live_data *ld)
evas_object_move(ld->info_text[Info_Text_Rel1], x, y);
//Rel1 BG
evas_object_move(ld->info_text_bg[Info_Text_Rel1], x, y);
evas_object_resize(ld->info_text_bg[Info_Text_Rel1], w, h);
evas_object_move(ld->info_text_bg[Info_Text_Rel1], x - 2, y);
evas_object_resize(ld->info_text_bg[Info_Text_Rel1], w + 4, h);
//Rel2
evas_object_geometry_get(ld->ctrl_pt[Ctrl_Pt_Rel2], &rx, &ry, &rw, &rh);
@ -329,8 +329,8 @@ info_text_update(live_data *ld)
evas_object_move(ld->info_text[Info_Text_Rel2], x, y);
//rel2 BG
evas_object_move(ld->info_text_bg[Info_Text_Rel2], x, y);
evas_object_resize(ld->info_text_bg[Info_Text_Rel2], w, h);
evas_object_move(ld->info_text_bg[Info_Text_Rel2], x - 2, y);
evas_object_resize(ld->info_text_bg[Info_Text_Rel2], w + 4, h);
//Size
Evas_Coord layout_x, layout_y, layout_w, layout_h;
@ -346,8 +346,8 @@ info_text_update(live_data *ld)
evas_object_move(ld->info_text[Info_Text_Size], x, y);
//Size BG
evas_object_move(ld->info_text_bg[Info_Text_Size], x, y);
evas_object_resize(ld->info_text_bg[Info_Text_Size], w, h);
evas_object_move(ld->info_text_bg[Info_Text_Size], x - 2, y);
evas_object_resize(ld->info_text_bg[Info_Text_Size], w + 4, h);
}
static void
@ -1975,7 +1975,7 @@ info_text_init(live_data *ld)
Evas_Object *rect = evas_object_rectangle_add(e);
view_obj_member_add(ld, rect);
evas_object_pass_events_set(rect, EINA_TRUE);
evas_object_color_set(rect, 0, 0, 0, 77);
evas_object_color_set(rect, 0, 0, 0, 125);
evas_object_show(rect);
ld->info_text_bg[i] = rect;

View File

@ -1,7 +1,7 @@
#define LIVE_EDIT_REL1 0.25
#define LIVE_EDIT_REL2 0.75
#define LIVE_EDIT_FONT "Sans"
#define LIVE_EDIT_FONT_SIZE 12
#define LIVE_EDIT_FONT_SIZE 10
#define LIVE_EDIT_MAX_DIST 999999
#define LIVE_EDIT_AUTO_ALIGN_DIST 10