To support such as quickpanel to rotate based Window manager,
[platform/core/uifw/e17.git] / src / bin / e_table.h
1 #ifdef E_TYPEDEFS
2 #else
3 #ifndef E_TABLE_H
4 #define E_TABLE_H
5
6 EAPI Evas_Object *e_table_add               (Evas *evas);
7 EAPI int          e_table_freeze            (Evas_Object *obj);
8 EAPI int          e_table_thaw              (Evas_Object *obj);
9 EAPI void         e_table_homogenous_set    (Evas_Object *obj, int homogenous);
10 EAPI void         e_table_pack              (Evas_Object *obj, Evas_Object *child, int col, int row, int colspan, int rowspan);
11 EAPI void         e_table_pack_options_set  (Evas_Object *obj, 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);
12 EAPI void         e_table_unpack            (Evas_Object *obj);
13 EAPI void         e_table_col_row_size_get  (Evas_Object *obj, int *cols, int *rows);
14 EAPI void         e_table_size_min_get      (Evas_Object *obj, Evas_Coord *minw, Evas_Coord *minh);
15 EAPI void         e_table_size_max_get      (Evas_Object *obj, Evas_Coord *maxw, Evas_Coord *maxh);
16 EAPI void         e_table_align_get         (Evas_Object *obj, double *ax, double *ay);
17 EAPI void         e_table_align_set         (Evas_Object *obj, double ax, double ay);
18
19 #endif
20 #endif