chiark / gitweb /
Added bindigns to GdkAtom
[clg] / gtk / gtkobject.lisp
CommitLineData
0d07716f 1;; Common Lisp bindings for GTK+ v2.0
8b69b878 2;; Copyright (C) 1999-2001 Espen S. Johnsen <espen@users.sourceforge.org>
0d07716f 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
c66e7b94 18;; $Id: gtkobject.lisp,v 1.21 2004/12/20 20:09:53 espen Exp $
0d07716f 19
20
21(in-package "GTK")
22
aa1ae3a5 23
0d07716f 24;;;; Misc utils
25
6d27e76c 26; (defun name-to-string (name)
27; (substitute #\_ #\- (string-downcase (string name))))
0d07716f 28
6d27e76c 29; (defun string-to-name (name &optional (package "KEYWORD"))
30; (intern (substitute #\- #\_ (string-upcase name)) package))
0d07716f 31
32
0d07716f 33
34;;;; Superclass for the gtk class hierarchy
35
36(eval-when (:compile-toplevel :load-toplevel :execute)
6baf860c 37 (init-types-in-library
38 #.(concatenate 'string (pkg-config:pkg-variable "gtk+-2.0" "libdir")
39 "/libgtk-x11-2.0.so")
fb449127 40 :ignore ("gtk_window_get_type_hint"))
6d27e76c 41
42 (defclass %object (gobject)
0d07716f 43 ()
0d07716f 44 (:metaclass gobject-class)
45 (:alien-name "GtkObject")))
46
47
6baf860c 48(defmethod initialize-instance ((object %object) &rest initargs &key signal)
49 (declare (ignore signal))
0d07716f 50 (call-next-method)
6baf860c 51 (reference-foreign (class-of object) (proxy-location object))
fb449127 52 (dolist (signal-definition (get-all initargs :signal))
53 (apply #'signal-connect object signal-definition)))
0d07716f 54
6baf860c 55(defmethod initialize-instance :around ((object %object) &rest initargs)
0d07716f 56 (declare (ignore initargs))
57 (call-next-method)
fb449127 58 (%object-sink object))
0d07716f 59
6d27e76c 60(defbinding %object-sink () nil
61 (object %object))
0d07716f 62
13148f19 63;;;; Main loop, timeouts and idle functions
0d07716f 64
65(declaim (inline events-pending-p main-iteration))
66
6d27e76c 67(defbinding (events-pending-p "gtk_events_pending") () boolean)
0d07716f 68
6d27e76c 69(defbinding get-current-event () gdk:event)
13148f19 70
6d27e76c 71(defbinding main-do-event () nil
0d07716f 72 (event gdk:event))
73
6d27e76c 74(defbinding main () nil)
0d07716f 75
6d27e76c 76(defbinding main-level () int)
0d07716f 77
6d27e76c 78(defbinding main-quit () nil)
0d07716f 79
6d27e76c 80(defbinding main-iteration-do (&optional (blocking t)) boolean
0d07716f 81 (blocking boolean))
82
83(defun main-iterate-all (&rest args)
84 (declare (ignore args))
85 (when (events-pending-p)
6d27e76c 86 (main-iteration-do nil)
0d07716f 87 (main-iterate-all)))
88
0d07716f 89
0d07716f 90;;;; Metaclass for child classes
6d27e76c 91
92(defvar *container-to-child-class-mappings* (make-hash-table))
0d07716f 93
94(eval-when (:compile-toplevel :load-toplevel :execute)
6baf860c 95 (defclass child-class (virtual-slots-class)
eb4f580c 96 ())
0d07716f 97
6d27e76c 98 (defclass direct-child-slot-definition (direct-virtual-slot-definition)
eb4f580c 99 ((pname :reader slot-definition-pname :initarg :pname)))
0d07716f 100
eb4f580c 101 (defclass effective-child-slot-definition (effective-virtual-slot-definition)
102 ((pname :reader slot-definition-pname :initarg :pname)))
0d07716f 103
104
eb4f580c 105(defmethod shared-initialize ((class child-class) names &key container)
0d07716f 106 (call-next-method)
6d27e76c 107 (setf
108 (gethash (find-class (first container)) *container-to-child-class-mappings*)
109 class))
0d07716f 110
eb4f580c 111(defmethod direct-slot-definition-class ((class child-class) &rest initargs)
0d07716f 112 (case (getf initargs :allocation)
fb449127 113 (:property (find-class 'direct-child-slot-definition))
0d07716f 114 (t (call-next-method))))
115
eb4f580c 116(defmethod effective-slot-definition-class ((class child-class) &rest initargs)
0d07716f 117 (case (getf initargs :allocation)
fb449127 118 (:property (find-class 'effective-child-slot-definition))
0d07716f 119 (t (call-next-method))))
0d07716f 120
eb4f580c 121(defmethod compute-effective-slot-definition-initargs ((class child-class) direct-slotds)
122 (if (eq (most-specific-slot-value direct-slotds 'allocation) :property)
123 (nconc
124 (list :pname (most-specific-slot-value direct-slotds 'pname))
125 (call-next-method))
126 (call-next-method)))
127
201c9293 128(progn
129 (declaim (optimize (ext:inhibit-warnings 3)))
130 (defun %container-child-get-property (parent child pname gvalue))
131 (defun %container-child-set-property (parent child pname gvalue)))
132
133
eb4f580c 134(defmethod initialize-internal-slot-functions ((slotd effective-child-slot-definition))
135 (let* ((type (slot-definition-type slotd))
136 (pname (slot-definition-pname slotd))
137 (type-number (find-type-number type)))
0493e5f0 138 (setf
139 (slot-value slotd 'getter)
140 #'(lambda (object)
141 (with-slots (parent child) object
142 (let ((gvalue (gvalue-new type-number)))
143 (%container-child-get-property parent child pname gvalue)
144 (unwind-protect
145 (funcall (reader-function type) gvalue +gvalue-value-offset+)
146 (gvalue-free gvalue t))))))
eb4f580c 147
0493e5f0 148 (setf
149 (slot-value slotd 'setter)
150 #'(lambda (value object)
151 (with-slots (parent child) object
152 (let ((gvalue (gvalue-new type-number)))
153 (funcall (writer-function type) value gvalue +gvalue-value-offset+)
154 (%container-child-set-property parent child pname gvalue)
155 (gvalue-free gvalue t)
156 value)))))
157
eb4f580c 158 (call-next-method)))
0d07716f 159
160
161(defmethod pcl::add-reader-method ((class child-class) generic-function slot-name)
162 (add-method
163 generic-function
164 (make-instance 'standard-method
c66e7b94 165 :specializers (list (find-class 'widget))
166 :lambda-list '(widget)
167 :function #'(lambda (args next-methods)
168 (declare (ignore next-methods))
169 (child-property-value (first args) slot-name)))))
0d07716f 170
171(defmethod pcl::add-writer-method
172 ((class child-class) generic-function slot-name)
173 (add-method
174 generic-function
175 (make-instance 'standard-method
c66e7b94 176 :specializers (list (find-class t) (find-class 'widget))
177 :lambda-list '(value widget)
178 :function #'(lambda (args next-methods)
179 (declare (ignore next-methods))
180 (destructuring-bind (value widget) args
181 (setf (child-property-value widget slot-name) value))))))
0d07716f 182
183
184(defmethod validate-superclass ((class child-class) (super pcl::standard-class))
fb449127 185 ;(subtypep (class-name super) 'container-child)
186 t)
0d07716f 187
188
6d27e76c 189(defclass container-child ()
190 ((parent :initarg :parent :type container)
191 (child :initarg :child :type widget)))
192
193
194;;;;
195
fb449127 196(defbinding %container-class-list-child-properties () pointer
197 (class pointer)
198 (n-properties unsigned-int :out))
6d27e76c 199
fb449127 200(defun query-container-class-child-properties (type-number)
201 (let ((class (type-class-ref type-number)))
202 (multiple-value-bind (array length)
203 (%container-class-list-child-properties class)
204 (unwind-protect
6baf860c 205 (map-c-vector 'list #'identity array 'param length)
fb449127 206 (deallocate-memory array)))))
6d27e76c 207
208(defun default-container-child-name (container-class)
209 (intern (format nil "~A-CHILD" container-class)))
210
eb4f580c 211(defun expand-container-type (type &optional options)
212 (let* ((class (type-from-number type))
213 (super (supertype type))
214 (child-class (default-container-child-name class)))
fb449127 215 `(progn
eb4f580c 216 ,(expand-gobject-type type options)
217 (defclass ,child-class (,(default-container-child-name super))
218 ,(slot-definitions child-class
219 (query-container-class-child-properties type) nil)
fb449127 220 (:metaclass child-class)
221 (:container ,class)))))
222
eb4f580c 223
fb449127 224(register-derivable-type 'container "GtkContainer" 'expand-container-type)