1.[E_BORDER] Change code to hide the client window in _e_border_cb_window_hide().
[platform/core/uifw/e17.git] / src / bin / e_box.h
1 #ifdef E_TYPEDEFS
2 #else
3 #ifndef E_BOX_H
4 #define E_BOX_H
5
6 EAPI Evas_Object *e_box_add               (Evas *evas);
7 EAPI int          e_box_freeze            (Evas_Object *obj);
8 EAPI int          e_box_thaw              (Evas_Object *obj);
9 EAPI void         e_box_orientation_set   (Evas_Object *obj, int horizontal);
10 EAPI int          e_box_orientation_get   (Evas_Object *obj);
11 EAPI void         e_box_homogenous_set    (Evas_Object *obj, int homogenous);
12 EAPI int          e_box_pack_start        (Evas_Object *obj, Evas_Object *child);
13 EAPI int          e_box_pack_end          (Evas_Object *obj, Evas_Object *child);
14 EAPI int          e_box_pack_before       (Evas_Object *obj, Evas_Object *child, Evas_Object *before);
15 EAPI int          e_box_pack_after        (Evas_Object *obj, Evas_Object *child, Evas_Object *after);
16 EAPI int          e_box_pack_count_get    (Evas_Object *obj);
17 EAPI Evas_Object *e_box_pack_object_nth   (Evas_Object *obj, int n);
18 EAPI Evas_Object *e_box_pack_object_first (Evas_Object *obj);
19 EAPI Evas_Object *e_box_pack_object_last  (Evas_Object *obj);
20 EAPI void         e_box_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);
21 EAPI void         e_box_unpack            (Evas_Object *obj);
22 EAPI void         e_box_size_min_get      (Evas_Object *obj, Evas_Coord *minw, Evas_Coord *minh);
23 EAPI void         e_box_size_max_get      (Evas_Object *obj, Evas_Coord *maxw, Evas_Coord *maxh);
24 EAPI void         e_box_align_get         (Evas_Object *obj, double *ax, double *ay);
25 EAPI void         e_box_align_set         (Evas_Object *obj, double ax, double ay);
26 EAPI void         e_box_align_pixel_offset_get (Evas_Object *obj, int *x, int *y);
27
28 #endif
29 #endif