comparison console/libgnt/gntbox.h @ 13953:8b2306c64efa

[gaim-migrate @ 16501] Minor adjustments to the packing of child widgets in a box. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Mon, 17 Jul 2006 04:30:50 +0000
parents 25be562aaca8
children 27182f83b79b
comparison
equal deleted inserted replaced
13952:841a5ffbfee4 13953:8b2306c64efa
31 { 31 {
32 GntWidget parent; 32 GntWidget parent;
33 33
34 gboolean vertical; 34 gboolean vertical;
35 gboolean homogeneous; 35 gboolean homogeneous;
36 gboolean fill;
36 GList *list; /* List of widgets */ 37 GList *list; /* List of widgets */
37 38
38 GntWidget *active; 39 GntWidget *active;
39 int pad; /* Number of spaces to use between widgets */ 40 int pad; /* Number of spaces to use between widgets */
40 GntAlignment alignment; /* How are the widgets going to be aligned? */ 41 GntAlignment alignment; /* How are the widgets going to be aligned? */
83 84
84 void gnt_box_remove_all(GntBox *box); /* Removes AND destroys all the widgets in it */ 85 void gnt_box_remove_all(GntBox *box); /* Removes AND destroys all the widgets in it */
85 86
86 void gnt_box_readjust(GntBox *box); 87 void gnt_box_readjust(GntBox *box);
87 88
89 void gnt_box_set_fill(GntBox *box, gboolean fill);
90
88 G_END_DECLS 91 G_END_DECLS
89 92
90 #endif /* GNT_BOX_H */ 93 #endif /* GNT_BOX_H */
91 94