Added finalizing of all gtk+ classes at the end of compilation
[cl-gtk2.git] / gdk / gdk.images.lisp
blobac31245d42399331fdf580ff533b5a0cc95e0e19
1 (in-package :gdk)
3 (defcfun (gdk-image-new "gdk_image_new") (g-object gdk-image :already-referenced)
4 (type gdk-image-type)
5 (visual (g-object visual))
6 (width :int)
7 (height :int))
9 (export 'gdk-image-new)
11 ;; deprecated:
12 ;; GdkImage* gdk_image_new_bitmap (GdkVisual *visual,
13 ;; gpointer data,
14 ;; gint width,
15 ;; gint height);
16 ;; GdkImage* gdk_image_get (GdkDrawable *drawable,
17 ;; gint x,
18 ;; gint y,
19 ;; gint width,
20 ;; gint height);
21 ;; GdkImage * gdk_image_ref (GdkImage *image);
22 ;; void gdk_image_unref (GdkImage *image);
23 ;; #define gdk_image_destroy
26 (defcfun (gdk-image-put-pixel "gdk_image_put_pixel") :void
27 (image (g-object gdk-image))
28 (x :int)
29 (y :int)
30 (pixel :uint32))
32 (export 'gdk-image-put-pixel)
34 (defcfun (gdk-image-get-pixel "gdk_image_get_pixel") :uint32
35 (image (g-object gdk-image))
36 (x :int)
37 (y :int))
39 (export 'gdk-image-get-pixel)