chiark / gitweb /
Bug fix
[clg] / glib / ginterface.lisp
CommitLineData
55212af1 1;; Common Lisp bindings for GTK+ v2.x
2;; Copyright 2001-2005 Espen S. Johnsen <espen@users.sf.net>
24af32f5 3;;
55212af1 4;; Permission is hereby granted, free of charge, to any person obtaining
5;; a copy of this software and associated documentation files (the
6;; "Software"), to deal in the Software without restriction, including
7;; without limitation the rights to use, copy, modify, merge, publish,
8;; distribute, sublicense, and/or sell copies of the Software, and to
9;; permit persons to whom the Software is furnished to do so, subject to
10;; the following conditions:
24af32f5 11;;
55212af1 12;; The above copyright notice and this permission notice shall be
13;; included in all copies or substantial portions of the Software.
24af32f5 14;;
55212af1 15;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17;; MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18;; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19;; CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
956f82a4 23;; $Id: ginterface.lisp,v 1.18 2006/04/26 21:00:22 espen Exp $
24af32f5 24
25(in-package "GLIB")
26
27(use-prefix "g")
28
956f82a4 29;;;; Superclass for interfaces
24af32f5 30
956f82a4 31(defclass interface ()
935a783c 32 ())
24af32f5 33
956f82a4 34
24af32f5 35;;;; Metaclass for interfaces
36
37(eval-when (:compile-toplevel :load-toplevel :execute)
956f82a4 38 (defclass interface-class (virtual-slots-class)
935a783c 39 ()))
24af32f5 40
956f82a4 41(defmethod direct-slot-definition-class ((class interface-class) &rest initargs)
b7833c4c 42 (case (getf initargs :allocation)
43 (:property (find-class 'direct-property-slot-definition))
44 (t (call-next-method))))
45
956f82a4 46(defmethod effective-slot-definition-class ((class interface-class) &rest initargs)
b7833c4c 47 (case (getf initargs :allocation)
48 (:property (find-class 'effective-property-slot-definition))
49 (t (call-next-method))))
50
956f82a4 51(defmethod compute-effective-slot-definition-initargs ((class interface-class) direct-slotds)
c23cc486 52 (if (eq (slot-definition-allocation (first direct-slotds)) :property)
b7833c4c 53 (nconc
54 (list :pname (signal-name-to-string
55 (most-specific-slot-value direct-slotds 'pname))
56 :readable (most-specific-slot-value direct-slotds 'readable)
57 :writable (most-specific-slot-value direct-slotds 'writable)
f9364484 58 :construct-only (most-specific-slot-value direct-slotds 'construct))
b7833c4c 59 (call-next-method))
60 (call-next-method)))
61
24af32f5 62
956f82a4 63(defmethod shared-initialize ((class interface-class) names &key name gtype)
dcb31db6 64 (declare (ignore names))
b8211bee 65 (let* ((class-name (or name (class-name class)))
66 (type-number
67 (or
68 (find-type-number class-name)
69 (register-type class-name
70 (or (first gtype) (default-type-init-name class-name))))))
71 (type-default-interface-ref type-number))
24af32f5 72 (call-next-method))
73
74
956f82a4 75(defmethod validate-superclass ((class interface-class) (super standard-class))
76 (subtypep (class-name super) 'interface))
24af32f5 77
78
956f82a4 79(define-type-method alien-type ((type interface))
4d1fea77 80 (declare (ignore type))
6baf860c 81 (alien-type 'gobject))
82
956f82a4 83(define-type-method size-of ((type interface) &key inlined)
4b2f29e4 84 (assert-not-inlined type inlined)
6baf860c 85 (size-of 'gobject))
86
956f82a4 87(define-type-method from-alien-form ((type interface) location &key (ref :copy))
4d1fea77 88 (declare (ignore type))
4b2f29e4 89 (from-alien-form 'gobject location :ref ref))
6baf860c 90
956f82a4 91(define-type-method from-alien-function ((type interface) &key (ref :copy))
4d1fea77 92 (declare (ignore type))
4b2f29e4 93 (from-alien-function 'gobject :ref ref))
6baf860c 94
956f82a4 95(define-type-method to-alien-form ((type interface) instance &optional copy-p)
4d1fea77 96 (declare (ignore type))
4b2f29e4 97 (to-alien-form 'gobject instance copy-p))
6baf860c 98
956f82a4 99(define-type-method to-alien-function ((type interface) &optional copy-p)
4d1fea77 100 (declare (ignore type))
4b2f29e4 101 (to-alien-function 'gobject copy-p))
6baf860c 102
956f82a4 103(define-type-method reader-function ((type interface) &key ref inlined)
4b2f29e4 104 (assert-not-inlined type inlined)
105 (reader-function 'gobject :ref ref))
17731c75 106
956f82a4 107(define-type-method writer-function ((type interface) &key temp inlined)
4b2f29e4 108 (assert-not-inlined type inlined)
109 (writer-function 'gobject :temp temp))
17731c75 110
956f82a4 111(define-type-method destroy-function ((type interface) &key temp inlined)
4b2f29e4 112 (assert-not-inlined type inlined)
113 (destroy-function 'gobject :temp temp))
17731c75 114
6baf860c 115
24af32f5 116;;;;
117
b7833c4c 118
119(defbinding type-default-interface-ref (type) pointer
120 ((find-type-number type t) type-number))
121
b8211bee 122(defbinding type-default-interface-unref () nil
123 (iface pointer))
b7833c4c 124
125(defbinding type-default-interface-peek (type) pointer
126 ((find-type-number type t) type-number))
127
128(defbinding %object-interface-list-properties () pointer
129 (iface pointer)
130 (n-properties unsigned-int :out))
131
132(defun query-object-interface-properties (type &optional inherited-p)
133 (let* ((type-number (find-type-number type))
134 (iface (type-default-interface-ref type-number)))
135 (unwind-protect
136 (multiple-value-bind (array length)
137 (%object-interface-list-properties iface)
6556dccd 138 (unless (null-pointer-p array)
139 (unwind-protect
140 (%map-params array length type-number inherited-p)
141 (deallocate-memory array))))
b8211bee 142 (type-default-interface-unref iface))))
b7833c4c 143
144
956f82a4 145(defun expand-interface-type (type forward-p options &rest args)
24af32f5 146 (declare (ignore args))
b7833c4c 147 (let ((class (type-from-number type))
e9934f39 148 (slots (getf options :slots)))
b7833c4c 149 `(defclass ,class (,(supertype type))
e9934f39 150 ,(unless forward-p
151 (slot-definitions class (query-object-interface-properties type) slots))
956f82a4 152 (:metaclass interface-class)
80031aba 153 (:gtype ,(register-type-as type)))))
24af32f5 154
956f82a4 155(defun interface-dependencies (type options)
6556dccd 156 (delete-duplicates
157 (cons
158 (supertype type)
4b2f29e4 159 (append
160 (mapcar #'param-value-type (query-object-interface-properties type))
161 (loop
162 for slot in (getf options :slots)
163 as type = (getf (rest slot) :type)
164 when (and type (symbolp type) (find-type-number type))
165 collect (find-type-number type))))))
166
24af32f5 167
956f82a4 168(register-derivable-type 'interface "GInterface" 'expand-interface-type 'interface-dependencies)