3 (defcfun gtk-box-pack-start
:void
5 (child (g-object widget
))
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
17 (child (g-object widget
))
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
32 (export 'box-reorder-child
)