|
|
|
@ -9,15 +9,7 @@ struct _E_Widget_Data |
|
|
|
|
|
|
|
|
|
static void _e_wid_del_hook(Evas_Object *obj); |
|
|
|
|
static void _e_wid_disable_hook(Evas_Object *obj); |
|
|
|
|
static void |
|
|
|
|
_size_hint(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED) |
|
|
|
|
{ |
|
|
|
|
int w, h; |
|
|
|
|
E_Widget_Data *wd = data; |
|
|
|
|
|
|
|
|
|
edje_object_size_min_calc(wd->o_frame, &w, &h); |
|
|
|
|
e_widget_size_min_set(wd->obj, w, h); |
|
|
|
|
} |
|
|
|
|
/* local subsystem functions */ |
|
|
|
|
|
|
|
|
|
/* externally accessible functions */ |
|
|
|
@ -26,7 +18,6 @@ e_widget_frametable_add(Evas *evas, const char *label, int homogenous) |
|
|
|
|
{ |
|
|
|
|
Evas_Object *obj, *o; |
|
|
|
|
E_Widget_Data *wd; |
|
|
|
|
Evas_Coord mw, mh; |
|
|
|
|
|
|
|
|
|
obj = e_widget_add(evas); |
|
|
|
|
|
|
|
|
@ -36,26 +27,20 @@ e_widget_frametable_add(Evas *evas, const char *label, int homogenous) |
|
|
|
|
e_widget_data_set(obj, wd); |
|
|
|
|
wd->obj = obj; |
|
|
|
|
|
|
|
|
|
o = edje_object_add(e_win_evas_win_get(evas)); |
|
|
|
|
o = elm_frame_add(e_win_evas_win_get(evas)); |
|
|
|
|
wd->o_frame = o; |
|
|
|
|
e_theme_edje_object_set(o, "base/theme/widgets", |
|
|
|
|
"e/widgets/frame"); |
|
|
|
|
edje_object_part_text_set(o, "e.text.label", label); |
|
|
|
|
elm_object_text_set(o, label); |
|
|
|
|
evas_object_show(o); |
|
|
|
|
e_widget_sub_object_add(obj, o); |
|
|
|
|
e_widget_resize_object_set(obj, o); |
|
|
|
|
|
|
|
|
|
o = elm_table_add(e_win_evas_win_get(evas)); |
|
|
|
|
evas_object_event_callback_add(o, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _size_hint, wd); |
|
|
|
|
wd->o_table = o; |
|
|
|
|
elm_table_homogeneous_set(o, homogenous); |
|
|
|
|
edje_object_part_swallow(wd->o_frame, "e.swallow.content", o); |
|
|
|
|
elm_object_content_set(wd->o_frame, o); |
|
|
|
|
e_widget_sub_object_add(obj, o); |
|
|
|
|
evas_object_show(o); |
|
|
|
|
|
|
|
|
|
edje_object_size_min_calc(wd->o_frame, &mw, &mh); |
|
|
|
|
e_widget_size_min_set(obj, mw, mh); |
|
|
|
|
|
|
|
|
|
return obj; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -69,7 +54,6 @@ EAPI void |
|
|
|
|
e_widget_frametable_object_append_full(Evas_Object *obj, Evas_Object *sobj, int col, int row, int colspan, int rowspan, int fill_w, int fill_h, int expand_w, int expand_h, double align_x, double align_y, Evas_Coord min_w, Evas_Coord min_h, Evas_Coord max_w, Evas_Coord max_h) |
|
|
|
|
{ |
|
|
|
|
E_Widget_Data *wd = e_widget_data_get(obj); |
|
|
|
|
Evas_Coord mw = 0, mh = 0; |
|
|
|
|
|
|
|
|
|
if ((min_w > 0) || (min_h > 0)) |
|
|
|
|
evas_object_size_hint_min_set(sobj, min_w, min_h); |
|
|
|
@ -80,31 +64,17 @@ e_widget_frametable_object_append_full(Evas_Object *obj, Evas_Object *sobj, int |
|
|
|
|
E_ALIGN(sobj, align_x, align_y); |
|
|
|
|
E_WEIGHT(sobj, expand_w, expand_h); |
|
|
|
|
elm_table_pack(wd->o_table, sobj, col, row, colspan, rowspan); |
|
|
|
|
evas_object_smart_need_recalculate_set(wd->o_table, 1); |
|
|
|
|
evas_object_smart_calculate(wd->o_table); |
|
|
|
|
edje_object_part_swallow(wd->o_frame, "e.swallow.content", wd->o_table); |
|
|
|
|
edje_object_size_min_calc(wd->o_frame, &mw, &mh); |
|
|
|
|
e_widget_size_min_set(obj, mw, mh); |
|
|
|
|
e_widget_sub_object_add(obj, sobj); |
|
|
|
|
evas_object_show(sobj); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
EAPI void |
|
|
|
|
e_widget_frametable_object_repack(Evas_Object *obj, Evas_Object *sobj, int col, int row, int colspan, int rowspan, int fill_w, int fill_h, int expand_w, int expand_h) |
|
|
|
|
e_widget_frametable_object_repack(Evas_Object *obj EINA_UNUSED, Evas_Object *sobj, int col, int row, int colspan, int rowspan, int fill_w, int fill_h, int expand_w, int expand_h) |
|
|
|
|
{ |
|
|
|
|
E_Widget_Data *wd; |
|
|
|
|
Evas_Coord mw = 0, mh = 0; |
|
|
|
|
|
|
|
|
|
wd = e_widget_data_get(obj); |
|
|
|
|
|
|
|
|
|
if (fill_w || fill_h) |
|
|
|
|
E_ALIGN(sobj, fill_w ? -1 : 0.5, fill_h ? -1 : 0.5); |
|
|
|
|
E_WEIGHT(sobj, expand_w, expand_h); |
|
|
|
|
elm_table_pack_set(sobj, col, row, colspan, rowspan); |
|
|
|
|
evas_object_smart_need_recalculate_set(wd->o_table, 1); |
|
|
|
|
evas_object_smart_calculate(wd->o_table); |
|
|
|
|
edje_object_size_min_calc(wd->o_frame, &mw, &mh); |
|
|
|
|
e_widget_size_min_set(obj, mw, mh); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
EAPI void |
|
|
|
|