comparison console/libgnt/gntbox.h @ 13853:bbf0470cb348

[gaim-migrate @ 16312] Improvement/fixing of GntTree. Do the scrolling and stuff without 'reliably'. committer: Tailor Script <tailor@pidgin.im>
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Fri, 23 Jun 2006 00:45:45 +0000
parents 0e1e59770cb0
children c1e3f7c75c3f
comparison
equal deleted inserted replaced
13852:d95e5e0e29b9 13853:bbf0470cb348
21 gboolean vertical; 21 gboolean vertical;
22 gboolean homogeneous; 22 gboolean homogeneous;
23 GList *list; /* List of widgets */ 23 GList *list; /* List of widgets */
24 24
25 GList *active; 25 GList *active;
26 int pad; /* Number of spaces to use between widgets */
26 27
27 char *title; 28 char *title;
28 29
29 void (*gnt_reserved1)(void); 30 void (*gnt_reserved1)(void);
30 void (*gnt_reserved2)(void); 31 void (*gnt_reserved2)(void);
50 51
51 void gnt_box_add_widget(GntBox *box, GntWidget *widget); 52 void gnt_box_add_widget(GntBox *box, GntWidget *widget);
52 53
53 void gnt_box_set_title(GntBox *box, const char *title); 54 void gnt_box_set_title(GntBox *box, const char *title);
54 55
56 void gnt_box_set_pad(GntBox *box, int pad);
57
55 G_END_DECLS 58 G_END_DECLS
56 59
57 #endif /* GNT_BOX_H */ 60 #endif /* GNT_BOX_H */
58 61