chiark / gitweb /
Added PRINT-OBJECT method for widget class and a small bug fix
[clg] / gtk / gtkwidget.lisp
1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 2000-2005 Espen S. Johnsen <espen@users.sf.net>
3 ;;
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:
11 ;;
12 ;; The above copyright notice and this permission notice shall be
13 ;; included in all copies or substantial portions of the Software.
14 ;;
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
23 ;; $Id: gtkwidget.lisp,v 1.20 2006-02-26 15:24:46 espen Exp $
24
25 (in-package "GTK")
26
27
28 #-debug-ref-counting
29 (defmethod print-object ((widget widget) stream)
30   (if (and 
31        (proxy-valid-p widget) 
32        (slot-boundp widget 'name) (not (zerop (length (widget-name widget)))))
33       (print-unreadable-object (widget stream :type t :identity nil)
34         (format stream "~S at 0x~X" 
35          (widget-name widget) (sap-int (foreign-location widget))))
36     (call-next-method)))
37
38 (defmethod shared-initialize ((widget widget) names &key (visible nil visible-p))
39   (when (and visible-p (not visible)) ; widget explicit set as not visible
40     (setf (user-data widget 'hidden-p) t)
41     (signal-connect widget 'show 
42      #'(lambda () 
43          (unset-user-data widget 'hidden-p))
44      :remove t))
45   (call-next-method))
46
47 (defmethod shared-initialize :after ((widget widget) names &key parent visible)
48   (declare (ignore names))
49   (when visible
50     (widget-show widget))
51   (when parent
52     (when (slot-boundp widget 'parent)
53       (container-remove (widget-parent widget) widget))
54     (destructuring-bind (parent &rest args)  (mklist parent)
55       (apply #'container-add parent widget args))))
56
57 (defmethod slot-unbound ((class gobject-class) (object widget) 
58                          (slot (eql 'child-properties)))
59   (cond
60    ((slot-boundp object 'parent)
61     (with-slots (parent child-properties) object
62       (setf child-properties
63        (make-instance 
64         (gethash (class-of parent) *container-to-child-class-mappings*)
65         :parent parent :child object))))
66    ((call-next-method))))
67
68
69 (defmethod compute-signal-function ((widget widget) signal function object)
70   (if (eq object :parent)
71       #'(lambda (&rest args)
72           (if (slot-boundp widget 'parent)
73               (apply function (widget-parent widget) (rest args))
74             ;; Delay until parent is set
75             (signal-connect widget 'parent-set
76              #'(lambda (old-parent)
77                  (declare (ignore old-parent))
78                  (let ((*signal-stop-emission* 
79                         #'(lambda ()
80                             (warn "Ignoring emission stop in delayed signal handler"))))
81                    (apply function (widget-parent widget) (rest args))))
82              :remove t)
83 ;           (warn "Widget has no parent -- ignoring signal")
84             ))
85     (call-next-method)))
86       
87 (defun child-property-value (widget slot)
88   (slot-value (widget-child-properties widget) slot))
89
90 (defun (setf child-property-value) (value widget slot)
91   (setf (slot-value (widget-child-properties widget) slot) value))
92
93 (defmacro with-child-properties (slots widget &body body)
94   `(with-slots ,slots (widget-child-properties ,widget)
95      ,@body))
96
97
98 ;;; Bindings
99
100 (defbinding widget-destroy () nil
101   (widget widget))
102
103 (defbinding widget-unparent () nil
104   (widget widget))
105
106 (defbinding widget-show () nil
107   (widget widget))
108
109 (defbinding widget-show-now () nil
110   (widget widget))
111
112 (defbinding widget-hide () nil
113   (widget widget))
114
115 (defun widget-hidden-p (widget)
116   "Return T if WIDGET has been explicit hidden during construction."
117   (user-data widget 'hidden-p))
118
119 (defbinding widget-show-all () nil
120   (widget widget))
121
122 (defbinding widget-hide-all () nil
123   (widget widget))
124
125 (defbinding widget-map () nil
126   (widget widget))
127
128 (defbinding widget-unmap () nil
129   (widget widget))
130
131 (defbinding widget-realize () nil
132   (widget widget))
133
134 (defbinding widget-unrealize () nil
135   (widget widget))
136
137 (defbinding widget-queue-draw () nil
138   (widget widget))
139
140 (defbinding widget-queue-resize () nil
141   (widget widget))
142
143 (defbinding widget-queue-resize-no-redraw () nil
144   (widget widget))
145
146 (defbinding widget-size-request
147     (widget &optional (requisition (make-instance 'requisition))) nil
148   (widget widget)
149   (requisition requisition :return))
150
151 (defbinding widget-get-child-requisition 
152     (widget &optional (requisition (make-instance 'requisition))) nil
153   (widget widget)
154   (requisition requisition :return))
155
156 (defbinding widget-size-allocate () nil
157   (widget widget)
158   (allocation allocation))
159
160 (defbinding widget-add-accelerator
161     (widget signal accel-group key modifiers flags) nil
162   (widget widget)
163   ((signal-name-to-string signal) string)
164   (accel-group accel-group)
165   ((gdk:keyval-from-name key) unsigned-int)
166   (modifiers gdk:modifier-type)
167   (flags accel-flags))
168
169 (defbinding widget-remove-accelerator
170     (widget accel-group key modifiers) nil
171   (widget widget)
172   (accel-group accel-group)
173   ((gdk:keyval-from-name key) unsigned-int)
174   (modifiers gdk:modifier-type))
175
176 (defbinding widget-set-accel-path () nil
177   (widget widget)
178   (accel-path string)
179   (accel-group accel-group))
180
181 (defbinding widget-list-accel-closures () (glist pointer)
182   (widget widget))
183
184 (defbinding widget-can-activate-accel-p () boolean
185   (widget widget)
186   (signal-id unsigned-int))
187
188 (defbinding widget-event () boolean
189   (widget widget)
190   (event gdk:event))
191
192 (defbinding widget-activate () boolean
193   (widget widget))
194
195 (defbinding widget-reparent () nil
196   (widget widget)
197   (new-parent widget))
198
199 (defbinding %widget-intersect () boolean
200   (widget widget)
201   (area gdk:rectangle)
202   (intersection (or null gdk:rectangle)))
203
204 (defun widget-intersection (widget area)
205   (let ((intersection (make-instance 'gdk:rectangle)))
206     (when (%widget-intersect widget area intersection)
207       intersection)))
208
209 (defun widget-intersect-p (widget area)
210   (%widget-intersect widget area nil))
211
212 (defbinding widget-grab-focus () nil
213   (widget widget))
214
215 (defbinding widget-grab-default () nil
216   (widget widget))
217
218 (defbinding widget-add-events () nil
219   (widget widget)
220   (events gdk:event-mask))
221
222 (defbinding widget-get-toplevel () widget
223   (widget widget))
224
225 (defbinding widget-get-ancestor (widget type) widget
226   (widget widget)
227   ((find-type-number type) type-number))
228
229 (defbinding widget-get-pointer () nil
230   (widget widget)
231   (x int :out)
232   (y int :out))
233
234 (defbinding widget-is-ancestor-p () boolean
235   (widget widget)
236   (ancestor widget))
237
238 (defbinding widget-translate-coordinates () boolean
239   (src-widget widget)
240   (dest-widget widget)
241   (src-x int) (src-y int)
242   (set-x int :out) (dest-y int :out))
243
244 (defun widget-hide-on-delete (widget)
245   "Utility function; intended to be connected to the DELETE-EVENT
246 signal on a WINDOW. The function calls WIDGET-HIDE on its
247 argument, then returns T. If connected to DELETE-EVENT, the
248 result is that clicking the close button for a window (on the window
249 frame, top right corner usually) will hide but not destroy the
250 window. By default, GTK+ destroys windows when DELETE-EVENT is
251 received."
252   (widget-hide widget)
253   t)
254   
255 (defbinding widget-ensure-style () nil
256   (widget widget))
257
258 (defbinding widget-reset-rc-styles () nil
259   (widget widget))
260
261 (defbinding widget-push-colormap () nil
262   (colormap gdk:colormap))
263
264 (defbinding widget-pop-colormap () nil)
265
266 (defbinding %widget-set-default-colormap () nil
267   (colormap gdk:colormap))
268
269 (defun (setf widget-default-colormap) (colormap)
270   (%widget-set-default-colormap colormap)
271   colormap)
272
273 (defbinding (widget-default-style "gtk_widget_get_default_style") () style)
274
275 (defbinding (widget-default-colromap "gtk_widget_get_default_colormap") 
276     () gdk:colormap)
277
278 (defbinding (widget-default-visual "gtk_widget_get_default_visual") 
279     () gdk:visual)
280
281 (defbinding (widget-default-direction "gtk_widget_get_default_direction")
282     () text-direction)
283
284 (defbinding %widget-set-default-direction () nil
285   (direction text-direction))
286
287 (defun (setf widget-default-direction) (direction)
288   (%widget-set-default-direction direction)
289   direction)
290
291 (defbinding widget-shape-combine-mask () nil
292   (widget widget)
293   (shape-mask (or null gdk:bitmap))
294   (x-offset int)
295   (y-offset int))
296
297 (defbinding widget-path () nil
298   (widget widget)
299   (path-length int :out)
300   (path string :out)
301   (reverse-path string :out))
302
303 (defbinding widget-class-path () nil
304   (widget widget)
305   (path-length int :out)
306   (path string :out)
307   (reverse-path string :out))
308
309 (defbinding widget-modify-style () nil
310   (widget widget)
311   (style rc-style))
312
313 (defbinding widget-get-modifier-style () rc-style
314   (widget widget))
315
316 (defbinding widget-modify-fg () nil
317   (widget widget)
318   (state state-type)
319   (color gdk:color))
320
321 (defbinding widget-modify-bg () nil
322   (widget widget)
323   (state state-type)
324   (color gdk:color))
325
326 (defbinding widget-modify-text () nil
327   (widget widget)
328   (state state-type)
329   (color gdk:color))
330
331 (defbinding widget-modify-base () nil
332   (widget widget)
333   (state state-type)
334   (color gdk:color))
335
336 (defbinding widget-modify-font () nil
337   (widget widget)
338   (state state-type)
339   (font-desc pango:font-description))
340
341 (defbinding widget-create-pango-context () pango:context
342   (widget widget))
343
344 (defbinding widget-get-pango-context () pango:context
345   (widget widget))
346
347 (defbinding widget-create-pango-layout (widget &optional text) pango:layout
348   (widget widget)
349   (text (or string null)))
350
351 (defbinding widget-render-icon (widget stock-id &optional size detail) 
352     gdk:pixbuf
353   (widget widget)
354   (stock-id string)
355   ((or size -1) (or icon-size int))
356   (detail (or null string)))
357
358 (defbinding widget-push-composite-child () nil)
359
360 (defbinding widget-pop-composite-child () nil)
361
362 (defbinding widget-queue-draw-area () nil
363   (widget widget)
364   (x int) (y int) (width int) (height int))
365
366 (defbinding widget-reset-shapes () nil
367   (widget widget))
368
369 ;; (defbinding widget-set-double-buffered () nil
370 ;;   (widget widget)
371 ;;   (double-buffered boolean))
372
373 ;; (defbinding widget-set-redraw-on-allocate () nil
374 ;;   (widget widget)
375 ;;   (redraw-on-allocate boolean))
376
377 (defbinding widget-set-scroll-adjustments () boolean
378   (widget widget)
379   (hadjustment (or null adjustment))
380   (vadjustment (or null adjustment)))
381
382 (defbinding widget-mnemonic-activate () boolean
383   (widget widget)
384   (group-cycling boolean))
385
386 (defbinding widget-class-find-style-property (class name) param
387   ((type-class-peek class) pointer)
388   (name string))
389
390 (defbinding widget-class-list-style-properties (class)
391     (vector (copy-of param) n-properties)
392   ((type-class-peek class) pointer)
393   (n-properties unsigned-int :out))
394
395 (defbinding widget-region-intersect () pointer ;gdk:region
396   (widget widget)
397   (region pointer)) ;gdk:region))
398
399 (defbinding widget-send-expose () boolean
400   (widget widget)
401   (event gdk:event))
402
403 (defbinding %widget-style-get-property () nil
404   (widget widget)
405   (name string)
406   (value gvalue))
407
408 (defun style-property-value (widget style)
409   (let* ((name (string-downcase style))
410          (param (widget-class-find-style-property (class-of widget) name)))
411     (if (not param)
412         (error "~A has no such style property: ~A" widget style)
413       (with-gvalue (gvalue (param-value-type param))
414         (%widget-style-get-property widget (string-downcase style) gvalue)))))
415
416 (defbinding widget-get-accessible () atk:object
417   (widget widget))
418
419 (defbinding widget-child-focus () boolean
420   (widget widget)
421   (direction direction-type))
422
423 (defbinding widget-child-notify () nil
424   (widget widget)
425   (child-property string))
426
427 (defbinding widget-freeze-child-notify () nil
428   (widget widget))
429
430 (defbinding widget-get-clipboard () clipboard
431   (widget widget)
432   (selection int #|gdk:atom|#))
433
434 (defbinding widget-get-display () gdk:display
435   (widget widget))
436
437 (defbinding widget-get-root-window () gdk:window
438   (widget widget))
439
440 (defbinding widget-get-screen () gdk:screen
441   (widget widget))
442
443 (defbinding widget-has-screen-p () boolean
444   (widget widget))
445
446 (defbinding %widget-get-size-request () nil
447   (widget widget)
448   (width int :out)
449   (height int :out))
450
451 (defun widget-get-size-request (widget)
452   (multiple-value-bind (width height) (%widget-get-size-request widget)
453      (values (unless (= width -1) width) (unless (= height -1) height))))
454
455 (defbinding widget-set-size-request (widget width height) nil
456   (widget widget)
457   ((or width -1) int)
458   ((or height -1) int))
459
460 (defbinding widget-thaw-child-notify () nil
461   (widget widget))
462
463 (defbinding widget-list-mnemonic-labels () (glist widget)
464   (widget widget))
465
466 (defbinding widget-add-mnemonic-label () nil
467   (widget widget)
468   (label widget))
469
470 (defbinding widget-remove-mnemonic-label () nil
471   (widget widget)
472   (label widget))
473
474
475 ;;; Additional bindings and functions
476
477 (defbinding (widget-mapped-p "gtk_widget_mapped_p") () boolean
478   (widget widget))
479
480 (defbinding widget-get-size-allocation () nil
481   (widget widget)
482   (width int :out)
483   (height int :out))
484
485 (defbinding get-event-widget () widget
486   (event gdk:event))
487
488 (defun (setf widget-cursor) (cursor-type widget)
489   (let ((cursor (make-instance 'gdk:cursor :type cursor-type)))
490     (gdk:window-set-cursor (widget-window widget) cursor)))
491
492 (defbinding %widget-get-parent-window () gdk:window
493   (widget widget))
494
495 (defun %widget-parent-window (widget)
496   (when (slot-boundp widget 'parent)
497     (%widget-get-parent-window widget)))