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.
14 lines
1014 B
14 lines
1014 B
#ifdef E_TYPEDEFS |
|
#else |
|
#ifndef E_WIDGET_FRAMETABLE_H |
|
#define E_WIDGET_FRAMETABLE_H |
|
|
|
E_API Evas_Object *e_widget_frametable_add(Evas *evas, const char *label, int homogenous); |
|
E_API void e_widget_frametable_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); |
|
E_API 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_API 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_API void e_widget_frametable_content_align_set(Evas_Object *obj, double halign, double valign); |
|
E_API void e_widget_frametable_label_set(Evas_Object *obj, const char *label); |
|
|
|
#endif |
|
#endif
|
|
|