Added finalizing of all gtk+ classes at the end of compilation
[cl-gtk2.git] / gtk / gtk.image.lisp
blobf56283edf60830af9ebbb3295dcf0cd1057382a2
1 (in-package :gtk)
3 (defcfun gtk-image-get-animation (g-object pixbuf-animation)
4 (image (g-object image)))
6 (defcfun gtk-image-set-from-animation :void
7 (image (g-object image))
8 (animation (g-object pixbuf-animation)))
10 (defun image-animation (image)
11 (gtk-image-get-animation image))
13 (defun (setf image-animation) (animation image)
14 (gtk-image-set-from-animation image animation))
16 (export 'image-animation)