Added finalizing of all gtk+ classes at the end of compilation
[cl-gtk2.git] / gtk / gtk.box.lisp
blobc0b29ac14fc4de802266e9593f6d76209f5f3625
1 (in-package :gtk)
3 (defcfun gtk-box-pack-start :void
4 (box (g-object box))
5 (child (g-object widget))
6 (expand :boolean)
7 (fill :boolean)
8 (padding :uint))
10 (defun box-pack-start (box child &key (expand t) (fill t) (padding 0))
11 (gtk-box-pack-start box child expand fill padding))
13 (export 'box-pack-start)
15 (defcfun gtk-box-pack-end :void
16 (box (g-object box))
17 (child (g-object widget))
18 (expand :boolean)
19 (fill :boolean)
20 (padding :uint))
22 (defun box-pack-end (box child &key (expand t) (fill t) (padding 0))
23 (gtk-box-pack-end box child expand fill padding))
25 (export 'box-pack-end)
27 (defcfun (box-reorder-child "gtk_box_reorder_child") :void
28 (box g-object)
29 (child g-object)
30 (position :int))
32 (export 'box-reorder-child)