chiark / gitweb /
Updated for CMUCL 19a and glib-2.4. Lots of improvements
[clg] / gtk / gtkobject.lisp
CommitLineData
560af5c5 1;; Common Lisp bindings for GTK+ v2.0
56460319 2;; Copyright (C) 1999-2001 Espen S. Johnsen <espen@users.sourceforge.org>
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
1047e159 18;; $Id: gtkobject.lisp,v 1.16 2004-10-31 12:05:52 espen Exp $
560af5c5 19
20
21(in-package "GTK")
22
8bf63d9f 23
560af5c5 24;;;; Misc utils
25
f86d391e 26; (defun name-to-string (name)
27; (substitute #\_ #\- (string-downcase (string name))))
560af5c5 28
f86d391e 29; (defun string-to-name (name &optional (package "KEYWORD"))
30; (intern (substitute #\- #\_ (string-upcase name)) package))
560af5c5 31
32
560af5c5 33
34;;;; Superclass for the gtk class hierarchy
35
36(eval-when (:compile-toplevel :load-toplevel :execute)
b030f2d9 37 (init-types-in-library "libgtk-x11-2.0.so"
18eed2a0 38 :ignore ("gtk_window_get_type_hint"))
f86d391e 39
40 (defclass %object (gobject)
560af5c5 41 ()
560af5c5 42 (:metaclass gobject-class)
43 (:alien-name "GtkObject")))
44
45
1047e159 46(defmethod shared-initialize ((object %object) names &rest initargs &key signal)
47 (declare (ignore names signal))
560af5c5 48 (call-next-method)
a236ae95 49 (object-ref object) ; inc ref count before sinking
f86d391e 50 (%object-sink object)
18eed2a0 51 (dolist (signal-definition (get-all initargs :signal))
52 (apply #'signal-connect object signal-definition)))
560af5c5 53
18eed2a0 54(defmethod initialize-proxy ((object %object) &rest initargs)
560af5c5 55 (declare (ignore initargs))
56 (call-next-method)
18eed2a0 57 (%object-sink object))
560af5c5 58
f86d391e 59(defbinding %object-sink () nil
60 (object %object))
560af5c5 61
aace61f5 62;;;; Main loop, timeouts and idle functions
560af5c5 63
64(declaim (inline events-pending-p main-iteration))
65
f86d391e 66(defbinding (events-pending-p "gtk_events_pending") () boolean)
560af5c5 67
f86d391e 68(defbinding get-current-event () gdk:event)
aace61f5 69
f86d391e 70(defbinding main-do-event () nil
560af5c5 71 (event gdk:event))
72
f86d391e 73(defbinding main () nil)
560af5c5 74
f86d391e 75(defbinding main-level () int)
560af5c5 76
f86d391e 77(defbinding main-quit () nil)
560af5c5 78
f86d391e 79(defbinding main-iteration-do (&optional (blocking t)) boolean
560af5c5 80 (blocking boolean))
81
82(defun main-iterate-all (&rest args)
83 (declare (ignore args))
84 (when (events-pending-p)
f86d391e 85 (main-iteration-do nil)
560af5c5 86 (main-iterate-all)))
87
1047e159 88;;;; Initalization
89
90(defbinding (gtk-init "gtk_parse_args") () nil
91 "Initializes the library without opening the display."
92 (nil null)
93 (nil null))
94
95
96(defun clg-init (&optional display)
97 "Initializes the system and starts the event handling"
98 (unless (gdk:display-get-default)
99 (gdk:gdk-init)
100 (gtk-init)
101 (prog1
102 (gdk:display-open display)
103 (system:add-fd-handler
104 (gdk:display-connection-number) :input #'main-iterate-all)
105 (setq lisp::*periodic-polling-function* #'main-iterate-all)
106 (setq lisp::*max-event-to-sec* 0)
107 (setq lisp::*max-event-to-usec* 1000))))
560af5c5 108
109
110
560af5c5 111;;;; Metaclass for child classes
f86d391e 112
113(defvar *container-to-child-class-mappings* (make-hash-table))
560af5c5 114
115(eval-when (:compile-toplevel :load-toplevel :execute)
1047e159 116 (defclass child-class (virtual-slot-class)
117 ())
560af5c5 118
f86d391e 119 (defclass direct-child-slot-definition (direct-virtual-slot-definition)
1047e159 120 ((pname :reader slot-definition-pname :initarg :pname)))
560af5c5 121
1047e159 122 (defclass effective-child-slot-definition (effective-virtual-slot-definition)
123 ((pname :reader slot-definition-pname :initarg :pname)))
560af5c5 124
125
1047e159 126(defmethod shared-initialize ((class child-class) names &key container)
560af5c5 127 (call-next-method)
f86d391e 128 (setf
129 (gethash (find-class (first container)) *container-to-child-class-mappings*)
130 class))
560af5c5 131
1047e159 132;; (defmethod initialize-instance ((slotd direct-child-slot-definition)
133;; &rest initargs &key pname)
134;; (declare (ignore initargs))
135;; (call-next-method)
136;; (if pname
137;; (setf (slot-value slotd 'pname) pname)
138;; ; ???
139;; (error "Need pname for slot with allocation :property")))
560af5c5 140
1047e159 141(defmethod direct-slot-definition-class ((class child-class) &rest initargs)
560af5c5 142 (case (getf initargs :allocation)
18eed2a0 143 (:property (find-class 'direct-child-slot-definition))
560af5c5 144 (t (call-next-method))))
145
1047e159 146(defmethod effective-slot-definition-class ((class child-class) &rest initargs)
560af5c5 147 (case (getf initargs :allocation)
18eed2a0 148 (:property (find-class 'effective-child-slot-definition))
560af5c5 149 (t (call-next-method))))
560af5c5 150
1047e159 151(defmethod compute-effective-slot-definition-initargs ((class child-class) direct-slotds)
152 (if (eq (most-specific-slot-value direct-slotds 'allocation) :property)
153 (nconc
154 (list :pname (most-specific-slot-value direct-slotds 'pname))
155 (call-next-method))
156 (call-next-method)))
157
b030f2d9 158(progn
159 (declaim (optimize (ext:inhibit-warnings 3)))
160 (defun %container-child-get-property (parent child pname gvalue))
161 (defun %container-child-set-property (parent child pname gvalue)))
162
163
1047e159 164(defmethod initialize-internal-slot-functions ((slotd effective-child-slot-definition))
165 (let* ((type (slot-definition-type slotd))
166 (pname (slot-definition-pname slotd))
167 (type-number (find-type-number type)))
168 (unless (slot-boundp slotd 'reader-function)
169 (setf
170 (slot-value slotd 'reader-function)
560af5c5 171 #'(lambda (object)
172 (with-slots (parent child) object
173 (with-gc-disabled
1047e159 174 (let ((gvalue (gvalue-new type-number)))
175 (%container-child-get-property parent child pname gvalue)
176 (unwind-protect
177 (funcall
178 (intern-reader-function type)
179 gvalue +gvalue-value-offset+)
180 (gvalue-free gvalue t))))))))
181
182 (unless (slot-boundp slotd 'writer-function)
183 (setf
184 (slot-value slotd 'writer-function)
560af5c5 185 #'(lambda (value object)
186 (with-slots (parent child) object
187 (with-gc-disabled
1047e159 188 (let ((gvalue (gvalue-new type-number)))
189 (funcall
190 (intern-writer-function type)
191 value gvalue +gvalue-value-offset+)
192 (%container-child-set-property parent child pname gvalue)
193 (funcall
194 (intern-destroy-function type)
195 gvalue +gvalue-value-offset+)
196 (gvalue-free gvalue nil)
197 value))))))
198
199 (unless (slot-boundp slotd 'boundp-function)
200 (setf
201 (slot-value slotd 'boundp-function)
202 #'(lambda (object)
203 (declare (ignore object))
204 t))))
205 (call-next-method)))
560af5c5 206
207
208(defmethod pcl::add-reader-method ((class child-class) generic-function slot-name)
209 (add-method
210 generic-function
211 (make-instance 'standard-method
212 :specializers (list (find-class 'widget))
213 :lambda-list '(widget)
214 :function #'(lambda (args next-methods)
215 (declare (ignore next-methods))
216 (child-slot-value (first args) slot-name)))))
217
218(defmethod pcl::add-writer-method
219 ((class child-class) generic-function slot-name)
220 (add-method
221 generic-function
222 (make-instance 'standard-method
223 :specializers (list (find-class t) (find-class 'widget))
224 :lambda-list '(value widget)
225 :function #'(lambda (args next-methods)
226 (declare (ignore next-methods))
227 (destructuring-bind (value widget) args
228 (setf
229 (child-slot-value widget slot-name)
230 value))))))
231
232
233(defmethod validate-superclass ((class child-class) (super pcl::standard-class))
18eed2a0 234 ;(subtypep (class-name super) 'container-child)
235 t)
560af5c5 236
237
f86d391e 238(defclass container-child ()
239 ((parent :initarg :parent :type container)
240 (child :initarg :child :type widget)))
241
242
243;;;;
244
18eed2a0 245(defbinding %container-class-list-child-properties () pointer
246 (class pointer)
247 (n-properties unsigned-int :out))
f86d391e 248
18eed2a0 249(defun query-container-class-child-properties (type-number)
250 (let ((class (type-class-ref type-number)))
251 (multiple-value-bind (array length)
252 (%container-class-list-child-properties class)
253 (unwind-protect
254 (map-c-array 'list #'identity array 'param length)
255 (deallocate-memory array)))))
f86d391e 256
257(defun default-container-child-name (container-class)
258 (intern (format nil "~A-CHILD" container-class)))
259
1047e159 260(defun expand-container-type (type &optional options)
261 (let* ((class (type-from-number type))
262 (super (supertype type))
263 (child-class (default-container-child-name class)))
18eed2a0 264 `(progn
1047e159 265 ,(expand-gobject-type type options)
266 (defclass ,child-class (,(default-container-child-name super))
267 ,(slot-definitions child-class
268 (query-container-class-child-properties type) nil)
18eed2a0 269 (:metaclass child-class)
270 (:container ,class)))))
271
1047e159 272
18eed2a0 273(register-derivable-type 'container "GtkContainer" 'expand-container-type)