Gdk depends on Pango and not the other way around
[clg] / gdk / gdktypes.lisp
CommitLineData
560af5c5 1;; Common Lisp bindings for GTK+ v2.0
e34e751a 2;; Copyright (C) 1999-2001 Espen S. Johnsen <esj@stud.cs.uit.no>
560af5c5 3;;
4;; This library is free software; you can redistribute it and/or
5;; modify it under the terms of the GNU Lesser General Public
6;; License as published by the Free Software Foundation; either
7;; version 2 of the License, or (at your option) any later version.
8;;
9;; This library is distributed in the hope that it will be useful,
10;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12;; Lesser General Public License for more details.
13;;
14;; You should have received a copy of the GNU Lesser General Public
15;; License along with this library; if not, write to the Free Software
16;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
9adccb27 18;; $Id: gdktypes.lisp,v 1.8 2004-11-06 21:39:58 espen Exp $
560af5c5 19
20(in-package "GDK")
21
5681ca3c 22(eval-when (:compile-toplevel :load-toplevel :execute)
9adccb27 23 (init-types-in-library #.(concatenate 'string
24 (pkg-config:pkg-variable "gtk+-2.0" "libdir")
25 "/libgdk-x11-2.0.so") :prefix "gdk_")
26 (init-types-in-library #.(concatenate 'string
27 (pkg-config:pkg-variable "gtk+-2.0" "libdir")
28 "/libgdk-x11-2.0.so") :prefix "_gdk_")
29 (init-types-in-library #.(concatenate 'string
30 (pkg-config:pkg-variable "gtk+-2.0" "libdir")
31 "/libgdk_pixbuf-2.0.so") :prefix "gdk_"))
32
560af5c5 33
e34e751a 34(defclass color (boxed)
560af5c5 35 ((pixel
36 :allocation :alien
37 :type unsigned-long)
38 (red
39 :allocation :alien
40 :accessor color-red
41 :type unsigned-short)
42 (green
43 :allocation :alien
ceebb351 44 :accessor color-green
560af5c5 45 :type unsigned-short)
46 (blue
47 :allocation :alien
48 :accessor color-blue
49 :type unsigned-short))
5681ca3c 50 (:metaclass boxed-class)
51 (:alien-name "GdkColor"))
560af5c5 52
53
5681ca3c 54(eval-when (:compile-toplevel :load-toplevel :execute)
55 (define-types-by-introspection "Gdk"
56 ("GdkFunction" :type gc-function)
57 ("GdkGC" :type gc)
58 ("GdkDrawableImplX11" :ignore t)
59 ("GdkWindowImplX11" :ignore t)
60 ("GdkPixmapImplX11" :ignore t)
61 ("GdkGCX11" :ignore t)
62 ("GdkColor" :ignore t)
63 ("GdkEvent" :ignore t)))
560af5c5 64
560af5c5 65
e34e751a 66(deftype bitmap () 'pixmap)
560af5c5 67
e34e751a 68(defclass cursor (struct)
560af5c5 69 ((type
70 :allocation :alien
71 :accessor cursor-type
72 :initarg :type
73 :type cursor-type))
9adccb27 74 (:metaclass struct-class))
4fc1b6fe 75
e34e751a 76(defclass device (struct)
4fc1b6fe 77 ()
9adccb27 78 (:metaclass struct-class))