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.
15 lines
636 B
15 lines
636 B
/* |
|
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
|
*/ |
|
#ifdef E_TYPEDEFS |
|
#else |
|
#ifndef E_WIDGET_TABLE_H |
|
#define E_WIDGET_TABLE_H |
|
|
|
EAPI Evas_Object *e_widget_table_add(Evas *evas, int homogenous); |
|
EAPI void e_widget_table_object_append(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); |
|
EAPI void e_widget_table_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); |
|
EAPI void e_widget_table_unpack(Evas_Object *obj, Evas_Object *sobj); |
|
|
|
#endif |
|
#endif
|
|
|