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