Dialog widget updated
[clg] / gtk / gtk.lisp
1 ;; Common Lisp bindings for GTK+ v2.0
2 ;; Copyright (C) 1999-2001 Espen S. Johnsen <esj@stud.cs.uit.no>
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
18 ;; $Id: gtk.lisp,v 1.25 2004-12-20 23:19:19 espen Exp $
19
20
21 (in-package "GTK")
22
23 ;;; Gtk version
24
25 (defbinding check-version () (copy-of string)
26 (required-major unsigned-int)
27 (required-minor unsigned-int)
28 (required-micro unsigned-int))
29
30 (defbinding query-version () nil
31 (major unsigned-int :out)
32 (minor unsigned-int :out)
33 (micro unsigned-int :out))
34
35 (defun gtk-version ()
36 (multiple-value-bind (major minor micro)
37 (query-version)
38 (if (zerop micro)
39 (format nil "Gtk+ v~A.~A" major minor)
40 (format nil "Gtk+ v~A.~A.~A" major minor micro))))
41
42 (defbinding get-default-language () (copy-of pango:language))
43
44
45 ;;;; Initalization
46
47 (defbinding (gtk-init "gtk_parse_args") () nil
48 "Initializes the library without opening the display."
49 (nil null)
50 (nil null))
51
52 (defun clg-init (&optional display)
53 "Initializes the system and starts the event handling"
54 (unless (gdk:display-get-default)
55 (gdk:gdk-init)
56 (gtk-init)
57 (prog1
58 (gdk:display-open display)
59 (system:add-fd-handler
60 (gdk:display-connection-number) :input #'main-iterate-all)
61 (setq lisp::*periodic-polling-function* #'main-iterate-all)
62 (setq lisp::*max-event-to-sec* 0)
63 (setq lisp::*max-event-to-usec* 1000))))
64
65
66 ;;; Acccel group
67
68
69
70 ;;; Acccel label
71
72 (defbinding accel-label-refetch () boolean
73 (accel-label accel-label))
74
75
76 ;;; Adjustment
77
78 (defmethod shared-initialize ((adjustment adjustment) names &key value)
79 (prog1
80 (call-next-method)
81 ;; we need to make sure that the value is set last, otherwise it
82 ;; may be outside current limits
83 (when value
84 (setf (slot-value adjustment 'value) value))))
85
86
87 (defbinding adjustment-changed () nil
88 (adjustment adjustment))
89
90 (defbinding adjustment-value-changed () nil
91 (adjustment adjustment))
92
93 (defbinding adjustment-clamp-page () nil
94 (adjustment adjustment)
95 (lower single-float)
96 (upper single-float))
97
98
99 ;;; Arrow -- no functions
100
101
102
103 ;;; Aspect frame
104
105
106 ;;; Bin
107
108 (defun (setf bin-child) (child bin)
109 (when-bind (current-child (bin-child bin))
110 (container-remove bin current-child))
111 (container-add bin child)
112 child)
113
114
115 ;;; Binding
116
117
118
119 ;;; Box
120
121 (defbinding box-pack-start () nil
122 (box box)
123 (child widget)
124 (expand boolean)
125 (fill boolean)
126 (padding unsigned-int))
127
128 (defbinding box-pack-end () nil
129 (box box)
130 (child widget)
131 (expand boolean)
132 (fill boolean)
133 (padding unsigned-int))
134
135 (defun box-pack (box child &key end expand fill (padding 0))
136 (if end
137 (box-pack-end box child expand fill padding)
138 (box-pack-start box child expand fill padding)))
139
140 (defbinding box-reorder-child () nil
141 (box box)
142 (child widget)
143 (position int))
144
145 (defbinding box-query-child-packing () nil
146 (box box)
147 (child widget)
148 (expand boolean :out)
149 (fill boolean :out)
150 (padding unsigned-int :out)
151 (pack-type pack-type :out))
152
153 (defbinding box-set-child-packing () nil
154 (box box)
155 (child widget)
156 (expand boolean)
157 (fill boolean)
158 (padding unsigned-int)
159 (pack-type pack-type))
160
161
162
163 ;;; Button
164
165 (defbinding button-pressed () nil
166 (button button))
167
168 (defbinding button-released () nil
169 (button button))
170
171 (defbinding button-clicked () nil
172 (button button))
173
174 (defbinding button-enter () nil
175 (button button))
176
177 (defbinding button-leave () nil
178 (button button))
179
180
181
182 ;;; Calendar
183
184 (defbinding calendar-select-month () int
185 (calendar calendar)
186 (month unsigned-int)
187 (year unsigned-int))
188
189 (defbinding calendar-select-day () nil
190 (calendar calendar)
191 (day unsigned-int))
192
193 (defbinding calendar-mark-day () int
194 (calendar calendar)
195 (day unsigned-int))
196
197 (defbinding calendar-unmark-day () int
198 (calendar calendar)
199 (day unsigned-int))
200
201 (defbinding calendar-clear-marks () nil
202 (calendar calendar))
203
204 (defbinding calendar-display-options () nil
205 (calendar calendar)
206 (options calendar-display-options))
207
208 (defbinding (calendar-date "gtk_calendar_get_date") () nil
209 (calendar calendar)
210 (year unsigned-int :out)
211 (month unsigned-int :out)
212 (day unsigned-int :out))
213
214 (defbinding calendar-freeze () nil
215 (calendar calendar))
216
217 (defbinding calendar-thaw () nil
218 (calendar calendar))
219
220
221
222 ;;; Cell editable
223
224
225
226 ;;; Cell renderer
227
228
229
230 ;;; Cell renderer pixbuf -- no functions
231
232
233
234 ;;; Cell renderer text
235
236
237
238 ;;; Cell renderer toggle -- no functions
239
240
241
242 ;;; Check button -- no functions
243
244
245
246 ;;; Check menu item
247
248 (defbinding check-menu-item-toggled () nil
249 (check-menu-item check-menu-item))
250
251
252
253 ;;; Clipboard
254
255
256 ;;; Color selection
257
258 (defbinding (color-selection-is-adjusting-p
259 "gtk_color_selection_is_adjusting") () boolean
260 (colorsel color-selection))
261
262
263
264 ;;; Color selection dialog -- no functions
265
266
267
268 ;;;; Combo Box
269
270 (defmethod shared-initialize ((combo-box combo-box) names &key model content)
271 (unless model
272 (setf
273 (combo-box-model combo-box)
274 (make-instance 'list-store :column-types '(string)))
275 (unless (typep combo-box 'combo-box-entry)
276 (let ((cell (make-instance 'cell-renderer-text)))
277 (cell-layout-pack combo-box cell :expand t)
278 (cell-layout-add-attribute combo-box cell :text 0)))
279 (when content
280 (map 'nil #'(lambda (text)
281 (combo-box-append-text combo-box text))
282 content)))
283 (call-next-method))
284
285 ;; (defmethod shared-initialize :after ((combo-box combo-box) names &key active)
286 ;; (when active
287 ;; (signal-emit combo-box 'changed)))
288
289 (defbinding combo-box-append-text () nil
290 (combo-box combo-box)
291 (text string))
292
293 (defbinding combo-box-insert-text () nil
294 (combo-box combo-box)
295 (position int)
296 (text string))
297
298 (defbinding combo-box-prepend-text () nil
299 (combo-box combo-box)
300 (text string))
301
302 #+gtk2.6
303 (defbinding combo-box-get-active-text () string
304 (combo-box combo-box))
305
306 (defbinding combo-box-popup () nil
307 (combo-box combo-box))
308
309 (defbinding combo-box-popdown () nil
310 (combo-box combo-box))
311
312
313
314 ;;;; Combo Box Entry
315
316 (defmethod shared-initialize ((combo-box-entry combo-box-entry) names &key model)
317 (call-next-method)
318 (unless model
319 (setf (combo-box-entry-text-column combo-box-entry) 0)))
320
321
322 ;;;; Dialog
323
324 (defmethod shared-initialize ((dialog dialog) names &rest initargs
325 &key button buttons)
326 (declare (ignore button buttons))
327 (prog1
328 (call-next-method)
329 (initial-apply-add dialog #'dialog-add-button initargs :button :buttons)))
330
331
332 (defun %dialog-find-response-id-num (dialog id &optional create-p error-p)
333 (or
334 (cadr (assoc id (rest (type-expand-1 'response-type))))
335 (let ((response-ids (object-data dialog 'response-id-key)))
336 (cond
337 ((and response-ids (position id response-ids :test #'equal)))
338 (create-p
339 (cond
340 (response-ids
341 (vector-push-extend id response-ids)
342 (1- (length response-ids)))
343 (t
344 (setf
345 (object-data dialog 'response-id-key)
346 (make-array 1 :adjustable t :fill-pointer t :initial-element id))
347 0)))
348 (error-p
349 (error "Invalid response: ~A" id))))))
350
351 (defun %dialog-find-response-id (dialog response-id-num)
352 (if (< response-id-num 0)
353 (car
354 (rassoc
355 (list response-id-num)
356 (rest (type-expand-1 'response-type)) :test #'equal))
357 (aref (object-data dialog 'response-id-key) response-id-num )))
358
359
360 (defmethod signal-connect ((dialog dialog) signal function &key object after)
361 (let ((response-id-num (%dialog-find-response-id-num dialog signal)))
362 (cond
363 (response-id-num
364 (call-next-method
365 dialog 'response
366 #'(lambda (dialog id)
367 (when (= id response-id-num)
368 (cond
369 ((eq object t) (funcall function dialog))
370 (object (funcall function object))
371 (t (funcall function)))))
372 :object t :after after))
373 ((call-next-method)))))
374
375
376 (defbinding dialog-run () nil
377 (dialog dialog))
378
379 (defbinding dialog-response (dialog response-id) nil
380 (dialog dialog)
381 ((%dialog-find-response-id-num dialog response-id nil t) int))
382
383
384 (defbinding %dialog-add-button () button
385 (dialog dialog)
386 (text string)
387 (response-id-num int))
388
389 (defun dialog-add-button (dialog label &optional (response label)
390 &key default object after)
391 "Adds a button to the dialog."
392 (let* ((id (if (functionp response)
393 label
394 response))
395 (id-num (%dialog-find-response-id-num dialog id t))
396 (button (%dialog-add-button dialog label id-num)))
397 (when (functionp response)
398 (signal-connect dialog id response :object object :after after))
399 (when default
400 (%dialog-set-default-response dialog id-num))
401 button))
402
403
404 (defbinding %dialog-add-action-widget () button
405 (dialog dialog)
406 (action-widget widget)
407 (response-id-num int))
408
409 (defun dialog-add-action-widget (dialog widget &optional (response widget)
410 &key default object after)
411 (let* ((id (if (functionp response)
412 widget
413 response))
414 (id-num (%dialog-find-response-id-num dialog id t)))
415 (%dialog-add-action-widget dialog widget id-num)
416 (when (functionp response)
417 (signal-connect dialog id response :object object :after after))
418 (when default
419 (%dialog-set-default-response dialog id-num))
420 widget))
421
422
423 (defbinding %dialog-set-default-response () nil
424 (dialog dialog)
425 (response-id-num int))
426
427 (defun dialog-set-default-response (dialog response-id)
428 (%dialog-set-default-response
429 dialog (%dialog-find-response-id-num dialog response-id nil t)))
430
431 (defbinding dialog-set-response-sensitive (dialog response-id sensitive) nil
432 (dialog dialog)
433 ((%dialog-find-response-id-num dialog response-id nil t) int)
434 (sensitive boolean))
435
436 #+gtk2.6
437 (defbinding alternative-dialog-button-order-p(&optional screen)
438 (screen (or null screen)))
439
440 #+gtk2.6
441 (defbinding (dialog-set-alternative-button-order
442 "gtk_dialog_set_alternative_button_order_from_array")
443 (dialog new-order)
444 (dialog dialog)
445 ((length new-order) int)
446 ((map 'vector #'(lambda (id)
447 (%dialog-find-response-id-num dialog id nil t))
448 new-order) (vector int)))
449
450
451 (defmethod container-add ((dialog dialog) (child widget) &rest args)
452 (apply #'container-add (dialog-vbox dialog) child args))
453
454 (defmethod container-remove ((dialog dialog) (child widget))
455 (container-remove (dialog-vbox dialog) child))
456
457 (defmethod container-children ((dialog dialog))
458 (container-children (dialog-vbox dialog)))
459
460 (defmethod (setf container-children) (children (dialog dialog))
461 (setf (container-children (dialog-vbox dialog)) children))
462
463
464
465 ;;; Drawing area
466
467 (defbinding drawing-area-get-size () nil
468 (drawing-area drawing-area)
469 (width int :out)
470 (height int :out))
471
472
473 ;;; Entry
474
475 (defbinding entry-get-layout () pango:layout
476 (entry entry))
477
478 (defbinding entry-get-layout-offsets () nil
479 (entry entry)
480 (x int :out)
481 (y int :out))
482
483
484 ;;; Entry Completion
485
486 (def-callback-marshal %entry-completion-match-func
487 (boolean entry-completion string (copy-of tree-iter)))
488
489 (defbinding entry-completion-set-match-func (completion function) nil
490 (completion entry-completion)
491 ((callback %entry-completion-match-func) pointer)
492 ((register-callback-function function) unsigned-int)
493 ((callback %destroy-user-data) pointer))
494
495 (defbinding entry-completion-complete () nil
496 (completion entry-completion))
497
498 #+gtk2.6
499 (defbinding entry-completion-insert-prefix () nil
500 (completion entry-completion))
501
502 (defbinding entry-completion-insert-action-text () nil
503 (completion entry-completion)
504 (index int)
505 (text string))
506
507 (defbinding entry-completion-insert-action-markup () nil
508 (completion entry-completion)
509 (index int)
510 (markup string))
511
512 (defbinding entry-completion-delete-action () nil
513 (completion entry-completion)
514 (index int))
515
516
517 ;;; Image
518
519 (defbinding image-set-from-file () nil
520 (image image)
521 (filename pathname))
522
523 (defbinding image-set-from-pixmap () nil
524 (image image)
525 (pixmap gdk:pixmap)
526 (mask gdk:bitmap))
527
528 (defbinding image-set-from-stock () nil
529 (image image)
530 (stock-id string)
531 (icon-size icon-size))
532
533 (defun image-set-from-pixmap-data (image pixmap-data)
534 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap-data)
535 (image-set-from-pixmap image pixmap mask)))
536
537 (defun image-set-from-source (image source)
538 (etypecase source
539 (pathname (image-set-from-file image source))
540 (string (if (stock-lookup source)
541 (setf (image-stock image) source)
542 (image-set-from-file image source)))
543 (vector (image-set-from-pixmap-data image source))))
544
545
546 (defmethod shared-initialize ((image image) names &rest initargs
547 &key file pixmap source)
548 (prog1
549 (if (vectorp pixmap)
550 (progn
551 (remf initargs :pixmap)
552 (apply #'call-next-method image names initargs))
553 (call-next-method))
554 (cond
555 (file (image-set-from-file image file))
556 ((vectorp pixmap) (image-set-from-pixmap-data image pixmap))
557 (source (image-set-from-source image source)))))
558
559
560 ;;; Label
561
562 (defbinding label-get-layout-offsets () nil
563 (label label)
564 (x int :out)
565 (y int :out))
566
567 (defbinding label-select-region () nil
568 (label label)
569 (start int)
570 (end int))
571
572 (defbinding label-get-text () string
573 (label label))
574
575 (defbinding label-get-layout () pango:layout
576 (label label))
577
578 (defbinding label-get-selection-bounds () boolean
579 (label label)
580 (start int :out)
581 (end int :out))
582
583
584
585 ;;; Radio button
586
587 (defbinding %radio-button-get-group () pointer
588 (radio-button radio-button))
589
590 (defbinding %radio-button-set-group () nil
591 (radio-button radio-button)
592 (group pointer))
593
594 (defun radio-button-add-to-group (button1 button2)
595 "Add BUTTON1 to the group which BUTTON2 belongs to."
596 (%radio-button-set-group button1 (%radio-button-get-group button2)))
597
598
599 (defmethod initialize-instance ((button radio-button)
600 &rest initargs &key group-with)
601 (declare (ignore initargs))
602 (call-next-method)
603 (when group-with
604 (radio-button-add-to-group button group-with)))
605
606
607 ;;; Item
608
609 (defbinding item-select () nil
610 (item item))
611
612 (defbinding item-deselect () nil
613 (item item))
614
615 (defbinding item-toggle () nil
616 (item item))
617
618
619
620 ;;; Menu item
621
622 (defun (setf menu-item-label) (label menu-item)
623 (make-instance 'accel-label
624 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
625 :visible t :parent menu-item)
626 label)
627
628 (defun menu-item-label (menu-item)
629 (with-slots (child) menu-item
630 (when (typep child 'label)
631 (label-label child))))
632
633 (defbinding %menu-item-set-submenu () nil
634 (menu-item menu-item)
635 (submenu menu))
636
637 (defbinding %menu-item-remove-submenu () nil
638 (menu-item menu-item))
639
640 (defun (setf menu-item-submenu) (submenu menu-item)
641 (if (not submenu)
642 (%menu-item-remove-submenu menu-item)
643 (%menu-item-set-submenu menu-item submenu))
644 submenu)
645
646 (defbinding menu-item-set-accel-path () nil
647 (menu-item menu-item)
648 (accel-path string))
649
650 (defbinding menu-item-select () nil
651 (menu-item menu-item))
652
653 (defbinding menu-item-deselect () nil
654 (menu-item menu-item))
655
656 (defbinding menu-item-activate () nil
657 (menu-item menu-item))
658
659 (defbinding menu-item-toggle-size-request () nil
660 (menu-item menu-item)
661 (requisition int :out))
662
663 (defbinding menu-item-toggle-size-allocate () nil
664 (menu-item menu-item)
665 (allocation int))
666
667
668
669 ;;; Radio menu item
670
671 (defbinding %radio-menu-item-get-group () pointer
672 (radio-menu-item radio-menu-item))
673
674 (defbinding %radio-menu-item-set-group () nil
675 (radio-menu-item radio-menu-item)
676 (group pointer))
677
678 (defun radio-menu-item-add-to-group (item1 item2)
679 "Add ITEM1 to the group which ITEM2 belongs to."
680 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
681
682 (defmethod initialize-instance ((item radio-menu-item)
683 &rest initargs &key group-with)
684 (declare (ignore initargs))
685 (prog1
686 (call-next-method)
687 (when group-with
688 (radio-menu-item-add-to-group item group-with))))
689
690
691
692 ;;; Toggle button
693
694 (defbinding toggle-button-toggled () nil
695 (toggle-button toggle-button))
696
697
698
699 ;;; Window
700
701 (defmethod initialize-instance ((window window) &rest initargs
702 &key accel-group accel-groups)
703 (declare (ignore accel-group accel-groups))
704 (prog1
705 (call-next-method)
706 (initial-add window #'window-add-accel-group
707 initargs :accel-group :accel-groups)))
708
709
710 (defbinding window-set-wmclass () nil
711 (window window)
712 (wmclass-name string)
713 (wmclass-class string))
714
715 (defbinding window-add-accel-group () nil
716 (window window)
717 (accel-group accel-group))
718
719 (defbinding window-remove-accel-group () nil
720 (window window)
721 (accel-group accel-group))
722
723 (defbinding window-activate-focus () int
724 (window window))
725
726 (defbinding window-activate-default () int
727 (window window))
728
729 (defbinding window-set-default-size (window width height) int
730 (window window)
731 ((or width -1) int)
732 ((or height -1) int))
733
734 ;(defbinding window-set-geometry-hints)
735
736 (defbinding window-list-toplevels () (glist (copy-of window))
737 "Returns a list of all existing toplevel windows.")
738
739 (defbinding window-add-mnemonic (window key target) nil
740 (window window)
741 ((gdk:keyval-from-name key) unsigned-int)
742 (target widget))
743
744 (defbinding window-remove-mnemonic (window key target) nil
745 (window window)
746 ((gdk:keyval-from-name key) unsigned-int)
747 (target widget))
748
749 (defbinding window-mnemonic-activate (window key modifier) nil
750 (window window)
751 ((gdk:keyval-from-name key) unsigned-int)
752 (modifier gdk:modifier-type))
753
754 (defbinding window-present () nil
755 (window window))
756
757 (defbinding window-iconify () nil
758 (window window))
759
760 (defbinding window-deiconify () nil
761 (window window))
762
763 (defbinding window-stick () nil
764 (window window))
765
766 (defbinding window-unstick () nil
767 (window window))
768
769 (defbinding window-maximize () nil
770 (window window))
771
772 (defbinding window-unmaximize () nil
773 (window window))
774
775 (defbinding window-begin-resize-drag () nil
776 (window window)
777 (edge gdk:window-edge)
778 (button int)
779 (root-x int) (root-y int)
780 (timestamp unsigned-int))
781
782 (defbinding window-begin-move-drag () nil
783 (window window)
784 (edge gdk:window-edge)
785 (button int)
786 (root-x int) (root-y int)
787 (timestamp unsigned-int))
788
789 (defbinding window-set-frame-dimensions () nil
790 (window window)
791 (left int) (top int) (rigth int) (bottom int))
792
793 (defbinding (window-default-icons "gtk_window_get_default_icon_list")
794 () (glist gdk:pixbuf))
795
796 (defbinding %window-get-default-size () nil
797 (window window)
798 (width int :out)
799 (height int :out))
800
801 (defun window-get-default-size (window)
802 (multiple-value-bind (width height) (%window-get-default-size window)
803 (values (unless (= width -1) width) (unless (= height -1) height))))
804
805 (defbinding window-get-frame-dimensions () nil
806 (window window)
807 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
808
809 (defbinding %window-get-icon-list () (glist gdk:pixbuf)
810 (window window))
811
812 (defmethod window-icon ((window window))
813 (let ((icon-list (%window-get-icon-list window)))
814 (if (endp (rest icon-list))
815 (first icon-list)
816 icon-list)))
817
818 (defbinding window-get-position () nil
819 (window window)
820 (root-x int :out)
821 (root-y int :out))
822
823 (defbinding window-get-size () nil
824 (window window)
825 (width int :out)
826 (height int :out))
827
828 (defbinding window-move () nil
829 (window window)
830 (x int)
831 (y int))
832
833 (defbinding window-parse-geometry () boolean
834 (window window)
835 (geometry string))
836
837 (defbinding window-reshow-with-initial-size () nil
838 (window window))
839
840 (defbinding window-resize () nil
841 (window window)
842 (width int)
843 (heigth int))
844
845 (defbinding %window-set-icon-list () nil
846 (window window)
847 (icon-list (glist gdk:pixbuf)))
848
849 (defmethod (setf window-icon) (icon (window window))
850 (%window-set-icon-list window (mklist icon)))
851
852
853
854
855 ;;; File chooser
856
857
858
859
860 ;;; Scrolled window
861
862 (defun (setf scrolled-window-scrollbar-policy) (policy window)
863 (setf (scrolled-window-hscrollbar-policy window) policy)
864 (setf (scrolled-window-vscrollbar-policy window) policy))
865
866 (defbinding scrolled-window-add-with-viewport () nil
867 (scrolled-window scrolled-window)
868 (child widget))
869
870
871
872
873
874
875
876 ;;; Statusbar
877
878 (defbinding (statusbar-context-id "gtk_statusbar_get_context_id")
879 () unsigned-int
880 (statusbar statusbar)
881 (context-description string))
882
883 (defbinding statusbar-push () unsigned-int
884 (statusbar statusbar)
885 (context-id unsigned-int)
886 (text string))
887
888 (defbinding statusbar-pop () nil
889 (statusbar statusbar)
890 (context-id unsigned-int))
891
892 (defbinding statusbar-remove () nil
893 (statusbar statusbar)
894 (context-id unsigned-int)
895 (message-id unsigned-int))
896
897
898
899 ;;; Fixed
900
901 (defbinding fixed-put () nil
902 (fixed fixed)
903 (widget widget)
904 (x int) (y int))
905
906 (defbinding fixed-move () nil
907 (fixed fixed)
908 (widget widget)
909 (x int) (y int))
910
911
912
913 ;;; Notebook
914
915 (defun %notebook-position (notebook page)
916 (etypecase page
917 (int page)
918 (keyword (case page
919 (:first 0)
920 (:last -1)
921 (t (error "Invalid position keyword: ~A" page))))
922 (widget (notebook-page-num notebook page t))))
923
924 (defun %notebook-child (notebook position)
925 (typecase position
926 (widget position)
927 (t (notebook-nth-page-child notebook position))))
928
929
930 (defbinding (notebook-insert "gtk_notebook_insert_page_menu")
931 (notebook position child tab-label &optional menu-label) nil
932 (notebook notebook)
933 (child widget)
934 ((if (stringp tab-label)
935 (make-instance 'label :label tab-label)
936 tab-label) widget)
937 ((if (stringp menu-label)
938 (make-instance 'label :label menu-label)
939 menu-label) (or null widget))
940 ((%notebook-position notebook position) int))
941
942 (defun notebook-append (notebook child tab-label &optional menu-label)
943 (notebook-insert notebook :last child tab-label menu-label))
944
945 (defun notebook-prepend (notebook child tab-label &optional menu-label)
946 (notebook-insert notebook :first child tab-label menu-label))
947
948 (defbinding notebook-remove-page (notebook page) nil
949 (notebook notebook)
950 ((%notebook-position notebook page) int))
951
952 (defbinding %notebook-page-num () int
953 (notebook notebook)
954 (child widget))
955
956 (defun notebook-page-num (notebook child &optional error-p)
957 (let ((page-num (%notebook-page-num notebook child)))
958 (if (= page-num -1)
959 (when error-p
960 (error "~A is not a child of ~A" child notebook))
961 page-num)))
962
963 (defbinding notebook-next-page () nil
964 (notebook notebook))
965
966 (defbinding notebook-prev-page () nil
967 (notebook notebook))
968
969 (defbinding notebook-reorder-child (notebook child position) nil
970 (notebook notebook)
971 (child widget)
972 ((%notebook-position notebook position) int))
973
974 (defbinding notebook-popup-enable () nil
975 (notebook notebook))
976
977 (defbinding notebook-popup-disable () nil
978 (notebook notebook))
979
980 (defbinding (notebook-nth-page-child "gtk_notebook_get_nth_page")
981 (notebook page) widget
982 (notebook notebook)
983 ((case page
984 (:first 0)
985 (:last -1)
986 (t page)) int))
987
988
989 (defbinding %notebook-get-current-page () int
990 (notebook notebook))
991
992 (defun notebook-current-page-num (notebook)
993 (let ((num (%notebook-get-current-page notebook)))
994 (when (>= num 0)
995 num)))
996
997 (defun notebook-current-page (notebook)
998 (let ((page-num (notebook-current-page-num notebook)))
999 (when page-num
1000 (notebook-nth-page-child notebook page-num))))
1001
1002 (defbinding %notebook-set-current-page () nil
1003 (notebook notebook)
1004 (page-num int))
1005
1006 (defun (setf notebook-current-page) (page notebook)
1007 (%notebook-set-current-page notebook (%notebook-position notebook page))
1008 page)
1009
1010
1011 (defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1012 (notebook page) widget
1013 (notebook notebook)
1014 ((%notebook-child notebook page) widget))
1015
1016 (defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
1017 (notebook page) (copy-of string)
1018 (notebook notebook)
1019 ((%notebook-child notebook page) widget))
1020
1021 (defbinding %notebook-set-tab-label () nil
1022 (notebook notebook)
1023 (page widget)
1024 (tab-label widget))
1025
1026 (defun (setf notebook-tab-label) (tab-label notebook page)
1027 (let ((widget (if (stringp tab-label)
1028 (make-instance 'label :label tab-label)
1029 tab-label)))
1030 (%notebook-set-tab-label notebook (%notebook-child notebook page) widget)
1031 widget))
1032
1033
1034 (defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1035 (notebook page) widget
1036 (notebook notebook)
1037 ((%notebook-child notebook page) widget))
1038
1039 (defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
1040 (notebook page) (copy-of string)
1041 (notebook notebook)
1042 ((%notebook-child notebook page) widget))
1043
1044 (defbinding %notebook-set-menu-label () nil
1045 (notebook notebook)
1046 (page widget)
1047 (menu-label widget))
1048
1049 (defun (setf notebook-menu-label) (menu-label notebook page)
1050 (let ((widget (if (stringp menu-label)
1051 (make-instance 'label :label menu-label)
1052 menu-label)))
1053 (%notebook-set-menu-label notebook (%notebook-child notebook page) widget)
1054 widget))
1055
1056
1057 (defbinding notebook-query-tab-label-packing (notebook page) nil
1058 (notebook notebook)
1059 ((%notebook-child notebook page) widget)
1060 (expand boolean :out)
1061 (fill boolean :out)
1062 (pack-type pack-type :out))
1063
1064 (defbinding notebook-set-tab-label-packing
1065 (notebook page expand fill pack-type) nil
1066 (notebook notebook)
1067 ((%notebook-child notebook page) widget)
1068 (expand boolean)
1069 (fill boolean)
1070 (pack-type pack-type))
1071
1072
1073
1074 ;;; Paned
1075
1076 (defbinding paned-pack1 () nil
1077 (paned paned)
1078 (child widget)
1079 (resize boolean)
1080 (shrink boolean))
1081
1082 (defbinding paned-pack2 () nil
1083 (paned paned)
1084 (child widget)
1085 (resize boolean)
1086 (shrink boolean))
1087
1088
1089 ;;; Layout
1090
1091 (defbinding layout-put () nil
1092 (layout layout)
1093 (widget widget)
1094 (x int)
1095 (y int))
1096
1097 (defbinding layout-move () nil
1098 (layout layout)
1099 (widget widget)
1100 (x int)
1101 (y int))
1102
1103
1104
1105 ;;; Menu shell
1106
1107 (defbinding menu-shell-insert (menu-shell menu-item position) nil
1108 (menu-shell menu-shell)
1109 (menu-item menu-item)
1110 ((case position
1111 (:first 0)
1112 (:last -1)
1113 (t position)) int))
1114
1115 (defun menu-shell-append (menu-shell menu-item)
1116 (menu-shell-insert menu-shell menu-item :last))
1117
1118 (defun menu-shell-prepend (menu-shell menu-item)
1119 (menu-shell-insert menu-shell menu-item :fisrt))
1120
1121 (defbinding menu-shell-deactivate () nil
1122 (menu-shell menu-shell))
1123
1124 (defbinding menu-shell-select-item () nil
1125 (menu-shell menu-shell)
1126 (menu-item menu-item))
1127
1128 (defbinding menu-shell-deselect () nil
1129 (menu-shell menu-shell))
1130
1131 (defbinding menu-shell-activate-item () nil
1132 (menu-shell menu-shell)
1133 (menu-item menu-item)
1134 (fore-deactivate boolean))
1135
1136
1137
1138 ;;; Menu
1139
1140 (defun %menu-position (menu child)
1141 (etypecase child
1142 (int child)
1143 (keyword (case child
1144 (:first 0)
1145 (:last -1)
1146 (t (error "Invalid position keyword: ~A" child))))
1147 (widget (menu-child-position menu child))))
1148
1149
1150 (defbinding menu-reorder-child (menu menu-item position) nil
1151 (menu menu)
1152 (menu-item menu-item)
1153 ((%menu-position menu position) int))
1154
1155 (def-callback-marshal %menu-popup-callback (nil (x int) (y int) (push-in boolean)))
1156
1157 (defbinding %menu-popup () nil
1158 (menu menu)
1159 (parent-menu-shell (or null menu-shell))
1160 (parent-menu-item (or null menu-item))
1161 (callback-func (or null pointer))
1162 (callback-id unsigned-int)
1163 (button unsigned-int)
1164 (activate-time (unsigned 32)))
1165
1166 (defun menu-popup (menu button activate-time &key callback parent-menu-shell
1167 parent-menu-item)
1168 (if callback
1169 (with-callback-function (id callback)
1170 (%menu-popup
1171 menu parent-menu-shell parent-menu-item
1172 (callback %menu-popup-callback) id button activate-time))
1173 (%menu-popup
1174 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
1175
1176 (defbinding menu-set-accel-path () nil
1177 (menu menu)
1178 (accel-path string))
1179
1180 (defbinding menu-reposition () nil
1181 (menu menu))
1182
1183 (defbinding menu-popdown () nil
1184 (menu menu))
1185
1186 (defun menu-child-position (menu child)
1187 (position child (container-children menu)))
1188
1189 (defun menu-active-num (menu)
1190 (menu-child-position menu (menu-active menu)))
1191
1192 (defbinding %menu-set-active () nil
1193 (menu menu)
1194 (index unsigned-int))
1195
1196 (defun (setf menu-active) (menu child)
1197 (%menu-set-active menu (%menu-position menu child))
1198 child)
1199
1200
1201
1202 ;;; Table
1203
1204 (defbinding table-resize () nil
1205 (table table)
1206 (rows unsigned-int)
1207 (columns unsigned-int))
1208
1209 (defbinding table-attach (table child left right top bottom
1210 &key options x-options y-options
1211 (x-padding 0) (y-padding 0)) nil
1212 (table table)
1213 (child widget)
1214 (left unsigned-int)
1215 (right unsigned-int)
1216 (top unsigned-int)
1217 (bottom unsigned-int)
1218 ((append (mklist options) (mklist x-options)) attach-options)
1219 ((append (mklist options) (mklist y-options)) attach-options)
1220 (x-padding unsigned-int)
1221 (y-padding unsigned-int))
1222
1223
1224 (defbinding %table-set-row-spacing () nil
1225 (table table)
1226 (row unsigned-int)
1227 (spacing unsigned-int))
1228
1229 (defbinding %table-set-row-spacings () nil
1230 (table table)
1231 (spacing unsigned-int))
1232
1233 (defun (setf table-row-spacing) (spacing table &optional row)
1234 (if row
1235 (%table-set-row-spacing table row spacing)
1236 (%table-set-row-spacings table spacing))
1237 spacing)
1238
1239 (defbinding %table-get-row-spacing () unsigned-int
1240 (table table)
1241 (row unsigned-int))
1242
1243 (defbinding %table-get-default-row-spacing () unsigned-int
1244 (table table))
1245
1246 (defun table-row-spacing (table &optional row)
1247 (if row
1248 (%table-get-row-spacing table row)
1249 (%table-get-default-row-spacing table)))
1250
1251
1252 (defbinding %table-set-col-spacing () nil
1253 (table table)
1254 (col unsigned-int)
1255 (spacing unsigned-int))
1256
1257 (defbinding %table-set-col-spacings () nil
1258 (table table)
1259 (spacing unsigned-int))
1260
1261 (defun (setf table-col-spacing) (spacing table &optional col)
1262 (if col
1263 (%table-set-col-spacing table col spacing)
1264 (%table-set-col-spacings table spacing))
1265 spacing)
1266
1267 (defbinding %table-get-col-spacing () unsigned-int
1268 (table table)
1269 (col unsigned-int))
1270
1271 (defbinding %table-get-default-col-spacing () unsigned-int
1272 (table table))
1273
1274 (defun table-col-spacing (table &optional col)
1275 (if col
1276 (%table-get-col-spacing table col)
1277 (%table-get-default-col-spacing table)))
1278
1279
1280
1281 ;;; Toolbar
1282
1283 (defbinding %toolbar-insert-element () widget
1284 (toolbar toolbar)
1285 (type toolbar-child-type)
1286 (widget (or null widget))
1287 (text string)
1288 (tooltip-text string)
1289 (tooltip-private-text string)
1290 (icon (or null widget))
1291 (nil null)
1292 (nil null)
1293 (position int))
1294
1295 (defbinding %toolbar-insert-stock () widget
1296 (toolbar toolbar)
1297 (stock-id string)
1298 (tooltip-text string)
1299 (tooltip-private-text string)
1300 (nil null)
1301 (nil null)
1302 (position int))
1303
1304 (defun toolbar-insert (toolbar position element
1305 &key tooltip-text tooltip-private-text
1306 type icon group callback object)
1307 (let* ((numpos (case position
1308 (:first -1)
1309 (:last 0)
1310 (t position)))
1311 (widget
1312 (cond
1313 ((or
1314 (eq type :space)
1315 (and (not type) (eq element :space)))
1316 (%toolbar-insert-element
1317 toolbar :space nil nil
1318 tooltip-text tooltip-private-text nil numpos))
1319 ((or
1320 (eq type :widget)
1321 (and (not type) (typep element 'widget)))
1322 (%toolbar-insert-element
1323 toolbar :widget element nil
1324 tooltip-text tooltip-private-text nil numpos))
1325 ((or
1326 (eq type :stock)
1327 (and
1328 (not type)
1329 (typep element 'string)
1330 (stock-lookup element)))
1331 (%toolbar-insert-stock
1332 toolbar element tooltip-text tooltip-private-text numpos))
1333 ((typep element 'string)
1334 (%toolbar-insert-element
1335 toolbar (or type :button) (when (eq type :radio-button) group)
1336 element tooltip-text tooltip-private-text
1337 (etypecase icon
1338 (null nil)
1339 (widget icon)
1340 ((or pathname string vector)
1341 (make-instance 'image
1342 :source icon ; :icon-size (toolbar-icon-size toolbar)
1343 )))
1344 numpos))
1345 ((error "Invalid element type: ~A" element)))))
1346 (when callback
1347 (signal-connect widget 'clicked callback :object object))
1348 widget))
1349
1350 (defun toolbar-append (toolbar element &key tooltip-text tooltip-private-text
1351 type icon group callback object)
1352 (toolbar-insert
1353 toolbar :first element :type type :icon icon :group group
1354 :tooltip-text tooltip-text :tooltip-private-text tooltip-private-text
1355 :callback callback :object object))
1356
1357 (defun toolbar-prepend (toolbar element &key tooltip-text tooltip-private-text
1358 type icon group callback object)
1359 (toolbar-insert
1360 toolbar :last element :type type :icon icon :group group
1361 :tooltip-text tooltip-text :tooltip-private-text tooltip-private-text
1362 :callback callback :object object))
1363
1364
1365 (defun toolbar-insert-space (toolbar position)
1366 (toolbar-insert toolbar position :space))
1367
1368 (defun toolbar-append-space (toolbar)
1369 (toolbar-append toolbar :space))
1370
1371 (defun toolbar-prepend-space (toolbar)
1372 (toolbar-prepend toolbar :space))
1373
1374
1375 (defun toolbar-enable-tooltips (toolbar)
1376 (setf (toolbar-tooltips-p toolbar) t))
1377
1378 (defun toolbar-disable-tooltips (toolbar)
1379 (setf (toolbar-tooltips-p toolbar) nil))
1380
1381
1382 (defbinding toolbar-remove-space () nil
1383 (toolbar toolbar)
1384 (position int))
1385
1386 (defbinding toolbar-unset-icon-size () nil
1387 (toolbar toolbar))
1388
1389 (defbinding toolbar-unset-style () nil
1390 (toolbar toolbar))
1391
1392
1393 ;;; Editable
1394
1395 (defbinding editable-select-region (editable &optional (start 0) end) nil
1396 (editable editable)
1397 (start int)
1398 ((or end -1) int))
1399
1400 (defbinding editable-get-selection-bounds (editable) nil
1401 (editable editable)
1402 (start int :out)
1403 (end int :out))
1404
1405 (defbinding editable-insert-text
1406 (editable text &optional (position 0)) nil
1407 (editable editable)
1408 (text string)
1409 ((length text) int)
1410 ((or position -1) int :in-out))
1411
1412 (defun editable-append-text (editable text)
1413 (editable-insert-text editable text nil))
1414
1415 (defun editable-prepend-text (editable text)
1416 (editable-insert-text editable text 0))
1417
1418 (defbinding editable-delete-text (editable &optional (start 0) end) nil
1419 (editable editable)
1420 (start int)
1421 ((or end -1) int))
1422
1423 (defbinding (editable-text "gtk_editable_get_chars")
1424 (editable &optional (start 0) end) string
1425 (editable editable)
1426 (start int)
1427 ((or end -1) int))
1428
1429 (defun (setf editable-text) (text editable)
1430 (if text
1431 (editable-delete-text
1432 editable
1433 (editable-insert-text editable text))
1434 (editable-delete-text editable))
1435 text)
1436
1437 (defbinding editable-cut-clipboard () nil
1438 (editable editable))
1439
1440 (defbinding editable-copy-clipboard () nil
1441 (editable editable))
1442
1443 (defbinding editable-paste-clipboard () nil
1444 (editable editable))
1445
1446 (defbinding editable-delete-selection () nil
1447 (editable editable))
1448
1449
1450
1451 ;;; Spin button
1452
1453 (defun spin-button-value-as-int (spin-button)
1454 (round (spin-button-value spin-button)))
1455
1456 (defbinding spin-button-spin () nil
1457 (spin-button spin-button)
1458 (direction spin-type)
1459 (increment single-float))
1460
1461 (defbinding spin-button-update () nil
1462 (spin-button spin-button))
1463
1464
1465
1466 ; ;;; Ruler
1467
1468 (defbinding ruler-set-range () nil
1469 (ruler ruler)
1470 (lower single-float)
1471 (upper single-float)
1472 (position single-float)
1473 (max-size single-float))
1474
1475 (defbinding ruler-draw-ticks () nil
1476 (ruler ruler))
1477
1478 (defbinding ruler-draw-pos () nil
1479 (ruler ruler))
1480
1481
1482
1483 ;;; Range
1484
1485 (defun range-lower (range)
1486 (adjustment-lower (range-adjustment range)))
1487
1488 (defun range-upper (range)
1489 (adjustment-upper (range-adjustment range)))
1490
1491 (defun (setf range-lower) (value range)
1492 (setf (adjustment-lower (range-adjustment range)) value))
1493
1494 (defun (setf range-upper) (value range)
1495 (setf (adjustment-upper (range-adjustment range)) value))
1496
1497 (defun range-page-increment (range)
1498 (adjustment-page-increment (range-adjustment range)))
1499
1500 (defun range-step-increment (range)
1501 (adjustment-step-increment (range-adjustment range)))
1502
1503 (defun (setf range-page-increment) (value range)
1504 (setf (adjustment-page-increment (range-adjustment range)) value))
1505
1506 (defun (setf range-step-increment) (value range)
1507 (setf (adjustment-step-increment (range-adjustment range)) value))
1508
1509 (defbinding range-set-range () nil
1510 (range range)
1511 (lower double-float)
1512 (upper double-float))
1513
1514 (defbinding range-set-increments () nil
1515 (range range)
1516 (step double-float)
1517 (page double-float))
1518
1519
1520 ;;; Scale
1521
1522 ; (defbinding scale-draw-value () nil
1523 ; (scale scale))
1524
1525
1526
1527 ;;; Progress bar
1528
1529 (defbinding progress-bar-pulse () nil
1530 (progress-bar progress-bar))
1531
1532
1533 ;;; Size group
1534
1535 (defmethod initialize-instance ((size-group size-group) &rest initargs
1536 &key widget widgets)
1537 (declare (ignore widget widgets))
1538 (prog1
1539 (call-next-method)
1540 (initial-add size-group #'size-group-add-widget
1541 initargs :widget :widgets)))
1542
1543
1544 (defbinding size-group-add-widget () nil
1545 (size-group size-group)
1546 (widget widget))
1547
1548 (defbinding size-group-remove-widget () nil
1549 (size-group size-group)
1550 (widget widget))
1551
1552
1553 ;;; Stock items
1554
1555 (defbinding %stock-item-copy () pointer
1556 (location pointer))
1557
1558 (defbinding %stock-item-free () nil
1559 (location pointer))
1560
1561 (defmethod reference-foreign ((class (eql (find-class 'stock-item))) location)
1562 (%stock-item-copy location))
1563
1564 (defmethod unreference-foreign ((class (eql (find-class 'stock-item))) location)
1565 (%stock-item-free location))
1566
1567 (defbinding stock-add (stock-item) nil
1568 (stock-item stock-item)
1569 (1 unsigned-int))
1570
1571 (defbinding stock-list-ids () (gslist string))
1572
1573 (defbinding %stock-lookup () boolean
1574 (stock-id string)
1575 (location pointer))
1576
1577 (defun stock-lookup (stock-id)
1578 (let ((location
1579 (allocate-memory (proxy-instance-size (find-class 'stock-item)))))
1580 (unwind-protect
1581 (when (%stock-lookup stock-id location)
1582 (ensure-proxy-instance 'stock-item (%stock-item-copy location)))
1583 (deallocate-memory location))))
1584
1585
1586 ;;; Tooltips
1587
1588 (defbinding tooltips-enable () nil
1589 (tooltips tooltips))
1590
1591 (defbinding tooltips-disable () nil
1592 (tooltips tooltips))
1593
1594 (defun (setf tooltips-enabled-p) (enable tooltips)
1595 (if enable
1596 (tooltips-enable tooltips)
1597 (tooltips-disable tooltips)))
1598
1599 (defbinding tooltips-set-tip () nil
1600 (tooltips tooltips)
1601 (widget widget)
1602 (tip-text string)
1603 (tip-private string))
1604
1605 (defbinding tooltips-force-window () nil
1606 (tooltips tooltips))
1607
1608
1609
1610 ;;; Rc
1611
1612 (defbinding rc-add-default-file (filename) nil
1613 ((namestring (truename filename)) string))
1614
1615 (defbinding rc-parse (filename) nil
1616 ((namestring (truename filename)) string))
1617
1618 (defbinding rc-parse-string () nil
1619 (rc-string string))
1620
1621 (defbinding rc-reparse-all () nil)
1622
1623 (defbinding rc-get-style () style
1624 (widget widget))
1625
1626
1627
1628 ;;; Accelerator Groups
1629 #|
1630 (defbinding accel-group-activate (accel-group key modifiers) boolean
1631 (accel-group accel-group)
1632 ((gdk:keyval-from-name key) unsigned-int)
1633 (modifiers gdk:modifier-type))
1634
1635 (defbinding accel-groups-activate (object key modifiers) boolean
1636 (object object)
1637 ((gdk:keyval-from-name key) unsigned-int)
1638 (modifiers gdk:modifier-type))
1639
1640 (defbinding accel-group-attach () nil
1641 (accel-group accel-group)
1642 (object object))
1643
1644 (defbinding accel-group-detach () nil
1645 (accel-group accel-group)
1646 (object object))
1647
1648 (defbinding accel-group-lock () nil
1649 (accel-group accel-group))
1650
1651 (defbinding accel-group-unlock () nil
1652 (accel-group accel-group))
1653
1654
1655 ;;; Accelerator Groups Entries
1656
1657 (defbinding accel-group-get-entry (accel-group key modifiers) accel-entry
1658 (accel-group accel-group)
1659 ((gdk:keyval-from-name key) unsigned-int)
1660 (modifiers gdk:modifier-type))
1661
1662 (defbinding accel-group-lock-entry (accel-group key modifiers) nil
1663 (accel-group accel-group)
1664 ((gdk:keyval-from-name key) unsigned-int)
1665 (modifiers gdk:modifier-type))
1666
1667 (defbinding accel-group-unlock-entry (accel-group key modifiers) nil
1668 (accel-group accel-group)
1669 ((gdk:keyval-from-name key) unsigned-int)
1670 (modifiers gdk:modifier-type))
1671
1672 (defbinding accel-group-add
1673 (accel-group key modifiers flags object signal) nil
1674 (accel-group accel-group)
1675 ((gdk:keyval-from-name key) unsigned-int)
1676 (modifiers gdk:modifier-type)
1677 (flags accel-flags)
1678 (object object)
1679 ((name-to-string signal) string))
1680
1681 (defbinding accel-group-add (accel-group key modifiers object) nil
1682 (accel-group accel-group)
1683 ((gdk:keyval-from-name key) unsigned-int)
1684 (modifiers gdk:modifier-type)
1685 (object object))
1686
1687
1688 ;;; Accelerator Signals
1689
1690 (defbinding accel-group-handle-add
1691 (object signal-id accel-group key modifiers flags) nil
1692 (object object)
1693 (signal-id unsigned-int)
1694 (accel-group accel-group)
1695 ((gdk:keyval-from-name key) unsigned-int)
1696 (modifiers gdk:modifier-type)
1697 (flags accel-flags))
1698
1699 (defbinding accel-group-handle-remove
1700 (object accel-group key modifiers) nil
1701 (object object)
1702 (accel-group accel-group)
1703 ((gdk:keyval-from-name key) unsigned-int)
1704 (modifiers gdk:modifier-type))
1705 |#