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.
79 lines
1.7 KiB
79 lines
1.7 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_box; |
|
}; |
|
|
|
static void _e_wid_del_hook(Evas_Object *obj); |
|
|
|
/* local subsystem functions */ |
|
|
|
/* externally accessible functions */ |
|
Evas_Object * |
|
e_widget_list_add(Evas *evas, int homogenous, int horiz) |
|
{ |
|
Evas_Object *obj, *o; |
|
E_Widget_Data *wd; |
|
|
|
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 = e_box_add(evas); |
|
wd->o_box = o; |
|
e_box_orientation_set(o, horiz); |
|
e_box_homogenous_set(o, homogenous); |
|
evas_object_show(o); |
|
e_widget_sub_object_add(obj, o); |
|
e_widget_resize_object_set(obj, o); |
|
|
|
return obj; |
|
} |
|
|
|
void |
|
e_widget_list_object_append(Evas_Object *obj, Evas_Object *sobj, int fill, int expand, double align) |
|
{ |
|
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); |
|
if (e_box_orientation_get(wd->o_box) == 1) |
|
e_box_pack_options_set(sobj, |
|
1, fill, /* fill */ |
|
0, expand, /* expand */ |
|
0.5, align, /* align */ |
|
mw, mh, /* min */ |
|
99999, 99999 /* max */ |
|
); |
|
else |
|
e_box_pack_options_set(sobj, |
|
fill, 1, /* fill */ |
|
expand, 0, /* expand */ |
|
align, 0.5, /* align */ |
|
mw, mh, /* min */ |
|
99999, 99999 /* max */ |
|
); |
|
e_box_min_size_get(wd->o_box, &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); |
|
}
|
|
|