You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.1 KiB
85 lines
2.1 KiB
/* |
|
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
|
*/ |
|
#include "e.h" |
|
|
|
typedef struct _E_Widget_Data E_Widget_Data; |
|
struct _E_Widget_Data |
|
{ |
|
Evas_Object *o_frame, *o_box; |
|
}; |
|
|
|
static void _e_wid_del_hook(Evas_Object *obj); |
|
static void _e_wid_signal_cb1(void *data, Evas_Object *obj, const char *emission, const char *source); |
|
/* local subsystem functions */ |
|
|
|
/* externally accessible functions */ |
|
Evas_Object * |
|
e_widget_framelist_add(Evas *evas, char *label, int horiz) |
|
{ |
|
Evas_Object *obj, *o; |
|
E_Widget_Data *wd; |
|
Evas_Coord mw, mh; |
|
|
|
obj = e_widget_add(evas); |
|
|
|
e_widget_del_hook_set(obj, _e_wid_del_hook); |
|
wd = calloc(1, sizeof(E_Widget_Data)); |
|
e_widget_data_set(obj, wd); |
|
|
|
o = edje_object_add(evas); |
|
wd->o_frame = o; |
|
e_theme_edje_object_set(o, "base/theme/widgets", |
|
"widgets/frame"); |
|
edje_object_part_text_set(o, "label", label); |
|
e_widget_sub_object_add(obj, o); |
|
e_widget_resize_object_set(obj, o); |
|
|
|
o = e_box_add(evas); |
|
wd->o_box = o; |
|
e_box_orientation_set(o, horiz); |
|
e_box_homogenous_set(o, 0); |
|
edje_object_part_swallow(o, "items", wd->o_box); |
|
e_widget_sub_object_add(obj, o); |
|
evas_object_show(o); |
|
|
|
edje_object_size_min_calc(wd->o_frame, &mw, &mh); |
|
e_widget_min_size_set(obj, mw, mh); |
|
|
|
return obj; |
|
} |
|
|
|
void |
|
e_widget_framelist_object_append(Evas_Object *obj, Evas_Object *sobj) |
|
{ |
|
E_Widget_Data *wd; |
|
Evas_Coord mw, mh; |
|
|
|
wd = e_widget_data_get(obj); |
|
|
|
e_box_pack_end(wd->o_box, sobj); |
|
e_widget_min_size_get(sobj, &mw, &mh); |
|
e_box_pack_options_set(sobj, |
|
1, 1, /* fill */ |
|
1, 0, /* expand */ |
|
0.5, 0.5, /* align */ |
|
mw, mh, /* min */ |
|
99999, 99999 /* max */ |
|
); |
|
e_box_min_size_get(wd->o_box, &mw, &mh); |
|
edje_extern_object_min_size_set(wd->o_box, mw, mh); |
|
edje_object_part_swallow(wd->o_frame, "items", wd->o_box); |
|
edje_object_size_min_calc(wd->o_frame, &mw, &mh); |
|
e_widget_min_size_set(obj, mw, mh); |
|
e_widget_sub_object_add(obj, sobj); |
|
evas_object_show(sobj); |
|
} |
|
|
|
static void |
|
_e_wid_del_hook(Evas_Object *obj) |
|
{ |
|
E_Widget_Data *wd; |
|
|
|
wd = e_widget_data_get(obj); |
|
free(wd); |
|
}
|
|
|