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