chiark / gitweb /
Path argument to the toggle signal for cell-renderer-toggle convertet from string...
[clg] / gtk / gtkwidget.lisp
CommitLineData
55212af1 1;; Common Lisp bindings for GTK+ v2.x
aa032564 2;; Copyright 2000-2006 Espen S. Johnsen <espen@users.sf.net>
0d07716f 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:
0d07716f 11;;
55212af1 12;; The above copyright notice and this permission notice shall be
13;; included in all copies or substantial portions of the Software.
0d07716f 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.
0d07716f 22
aa032564 23;; $Id: gtkwidget.lisp,v 1.23 2006/04/26 12:11:21 espen Exp $
0d07716f 24
25(in-package "GTK")
26
27
7af3f90b 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"
aa032564 35 (widget-name widget) (pointer-address (foreign-location widget))))
7af3f90b 36 (call-next-method)))
37
d0cc9e86 38(defmethod shared-initialize ((widget widget) names &key (visible nil visible-p))
aa032564 39 (declare (ignore names))
d0cc9e86 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))
dd392521 47
9d5e4733 48(defmethod shared-initialize :after ((widget widget) names &key parent visible)
d0cc9e86 49 (declare (ignore names))
9d5e4733 50 (when visible
51 (widget-show widget))
d0cc9e86 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))))
0d07716f 57
03272be4 58(defmethod slot-unbound ((class gobject-class) (object widget)
59 (slot (eql 'child-properties)))
0d07716f 60 (cond
03272be4 61 ((slot-boundp object 'parent)
c66e7b94 62 (with-slots (parent child-properties) object
03272be4 63 (setf child-properties
64 (make-instance
65 (gethash (class-of parent) *container-to-child-class-mappings*)
0d07716f 66 :parent parent :child object))))
03272be4 67 ((call-next-method))))
68
0d07716f 69
d0cc9e86 70(defmethod compute-signal-function ((widget widget) signal function object)
aa032564 71 (declare (ignore signal))
d0cc9e86 72 (if (eq object :parent)
2519d4ca 73 #'(lambda (&rest args)
74 (if (slot-boundp widget 'parent)
75 (apply function (widget-parent widget) (rest args))
03272be4 76 ;; Delay until parent is set
2519d4ca 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
c66e7b94 89(defun child-property-value (widget slot)
90 (slot-value (widget-child-properties widget) slot))
0d07716f 91
c66e7b94 92(defun (setf child-property-value) (value widget slot)
93 (setf (slot-value (widget-child-properties widget) slot) value))
0d07716f 94
c66e7b94 95(defmacro with-child-properties (slots widget &body body)
96 `(with-slots ,slots (widget-child-properties ,widget)
0d07716f 97 ,@body))
98
860e6a2e 99
860e6a2e 100;;; Bindings
101
08aad4db 102(defbinding widget-destroy () nil
0d07716f 103 (widget widget))
104
08aad4db 105(defbinding widget-unparent () nil
0d07716f 106 (widget widget))
107
08aad4db 108(defbinding widget-show () nil
0d07716f 109 (widget widget))
110
08aad4db 111(defbinding widget-show-now () nil
0d07716f 112 (widget widget))
113
08aad4db 114(defbinding widget-hide () nil
0d07716f 115 (widget widget))
116
d0cc9e86 117(defun widget-hidden-p (widget)
118 "Return T if WIDGET has been explicit hidden during construction."
119 (user-data widget 'hidden-p))
120
08aad4db 121(defbinding widget-show-all () nil
0d07716f 122 (widget widget))
123
08aad4db 124(defbinding widget-hide-all () nil
0d07716f 125 (widget widget))
126
08aad4db 127(defbinding widget-map () nil
0d07716f 128 (widget widget))
129
08aad4db 130(defbinding widget-unmap () nil
0d07716f 131 (widget widget))
132
08aad4db 133(defbinding widget-realize () nil
0d07716f 134 (widget widget))
135
08aad4db 136(defbinding widget-unrealize () nil
0d07716f 137 (widget widget))
138
860e6a2e 139(defbinding widget-queue-draw () nil
140 (widget widget))
141
142(defbinding widget-queue-resize () nil
143 (widget widget))
144
03272be4 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
860e6a2e 150 (widget widget)
aa032564 151 (requisition requisition :in/return))
860e6a2e 152
03272be4 153(defbinding widget-get-child-requisition
154 (widget &optional (requisition (make-instance 'requisition))) nil
860e6a2e 155 (widget widget)
aa032564 156 (requisition requisition :in/return))
860e6a2e 157
158(defbinding widget-size-allocate () nil
159 (widget widget)
160 (allocation allocation))
161
08aad4db 162(defbinding widget-add-accelerator
0d07716f 163 (widget signal accel-group key modifiers flags) nil
164 (widget widget)
7af3f90b 165 ((signal-name-to-string signal) string)
0d07716f 166 (accel-group accel-group)
167 ((gdk:keyval-from-name key) unsigned-int)
168 (modifiers gdk:modifier-type)
169 (flags accel-flags))
170
08aad4db 171(defbinding widget-remove-accelerator
0d07716f 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
03272be4 178(defbinding widget-set-accel-path () nil
0d07716f 179 (widget widget)
860e6a2e 180 (accel-path string)
181 (accel-group accel-group))
0d07716f 182
03272be4 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
0d07716f 191 (widget widget)
192 (event gdk:event))
193
08aad4db 194(defbinding widget-activate () boolean
0d07716f 195 (widget widget))
196
08aad4db 197(defbinding widget-reparent () nil
0d07716f 198 (widget widget)
199 (new-parent widget))
200
860e6a2e 201(defbinding %widget-intersect () boolean
202 (widget widget)
203 (area gdk:rectangle)
ecdb2ae2 204 (intersection (or null gdk:rectangle)))
0d07716f 205
860e6a2e 206(defun widget-intersection (widget area)
207 (let ((intersection (make-instance 'gdk:rectangle)))
208 (when (%widget-intersect widget area intersection)
209 intersection)))
0d07716f 210
860e6a2e 211(defun widget-intersect-p (widget area)
ecdb2ae2 212 (%widget-intersect widget area nil))
13148f19 213
860e6a2e 214(defbinding widget-grab-focus () nil
13148f19 215 (widget widget))
216
860e6a2e 217(defbinding widget-grab-default () nil
218 (widget widget))
0d07716f 219
08aad4db 220(defbinding widget-add-events () nil
0d07716f 221 (widget widget)
222 (events gdk:event-mask))
223
860e6a2e 224(defbinding widget-get-toplevel () widget
0d07716f 225 (widget widget))
226
860e6a2e 227(defbinding widget-get-ancestor (widget type) widget
0d07716f 228 (widget widget)
229 ((find-type-number type) type-number))
230
860e6a2e 231(defbinding widget-get-pointer () nil
0d07716f 232 (widget widget)
233 (x int :out)
234 (y int :out))
235
03272be4 236(defbinding widget-is-ancestor-p () boolean
0d07716f 237 (widget widget)
238 (ancestor widget))
239
860e6a2e 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
03272be4 248signal on a WINDOW. The function calls WIDGET-HIDE on its
860e6a2e 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
08aad4db 257(defbinding widget-ensure-style () nil
0d07716f 258 (widget widget))
259
08aad4db 260(defbinding widget-reset-rc-styles () nil
0d07716f 261 (widget widget))
262
08aad4db 263(defbinding widget-push-colormap () nil
0d07716f 264 (colormap gdk:colormap))
265
08aad4db 266(defbinding widget-pop-colormap () nil)
0d07716f 267
03272be4 268(defbinding %widget-set-default-colormap () nil
0d07716f 269 (colormap gdk:colormap))
270
03272be4 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)
0d07716f 276
03272be4 277(defbinding (widget-default-colromap "gtk_widget_get_default_colormap")
278 () gdk:colormap)
0d07716f 279
03272be4 280(defbinding (widget-default-visual "gtk_widget_get_default_visual")
281 () gdk:visual)
860e6a2e 282
03272be4 283(defbinding (widget-default-direction "gtk_widget_get_default_direction")
284 () text-direction)
860e6a2e 285
03272be4 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)
860e6a2e 292
08aad4db 293(defbinding widget-shape-combine-mask () nil
0d07716f 294 (widget widget)
03272be4 295 (shape-mask (or null gdk:bitmap))
0d07716f 296 (x-offset int)
297 (y-offset int))
298
860e6a2e 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
03272be4 315(defbinding widget-get-modifier-style () rc-style
860e6a2e 316 (widget widget))
317
03272be4 318(defbinding widget-modify-fg () nil
860e6a2e 319 (widget widget)
320 (state state-type)
321 (color gdk:color))
322
03272be4 323(defbinding widget-modify-bg () nil
860e6a2e 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
b22f5374 338(defbinding widget-modify-font (widget font-desc) nil
860e6a2e 339 (widget widget)
b22f5374 340 ((etypecase font-desc
341 (pango:font-description font-desc)
342 (string (pango:font-description-from-string font-desc)))
343 pango:font-description))
860e6a2e 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
03272be4 355(defbinding widget-render-icon (widget stock-id &optional size detail)
356 gdk:pixbuf
860e6a2e 357 (widget widget)
358 (stock-id string)
03272be4 359 ((or size -1) (or icon-size int))
360 (detail (or null string)))
860e6a2e 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
03272be4 373;; (defbinding widget-set-double-buffered () nil
374;; (widget widget)
375;; (double-buffered boolean))
860e6a2e 376
03272be4 377;; (defbinding widget-set-redraw-on-allocate () nil
378;; (widget widget)
379;; (redraw-on-allocate boolean))
860e6a2e 380
381(defbinding widget-set-scroll-adjustments () boolean
382 (widget widget)
03272be4 383 (hadjustment (or null adjustment))
384 (vadjustment (or null adjustment)))
860e6a2e 385
386(defbinding widget-mnemonic-activate () boolean
387 (widget widget)
388 (group-cycling boolean))
389
03272be4 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
860e6a2e 399(defbinding widget-region-intersect () pointer ;gdk:region
400 (widget widget)
401 (region pointer)) ;gdk:region))
402
03272be4 403(defbinding widget-send-expose () boolean
860e6a2e 404 (widget widget)
405 (event gdk:event))
406
03272be4 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
860e6a2e 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
03272be4 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
860e6a2e 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)
6baf860c 457 (values (unless (= width -1) width) (unless (= height -1) height))))
860e6a2e 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
03272be4 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
860e6a2e 478
479;;; Additional bindings and functions
480
ecdb2ae2 481(defbinding (widget-mapped-p "gtk_widget_mapped_p") () boolean
0d07716f 482 (widget widget))
483
860e6a2e 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)
6091b3e8 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)))
03272be4 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)))