1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 1999-2006 Espen S. Johnsen <espen@users.sf.net>
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:
12 ;; The above copyright notice and this permission notice shall be
13 ;; included in all copies or substantial portions of the Software.
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.
23 ;; $Id: gtk.lisp,v 1.78 2007/07/10 08:45:06 espen Exp $
30 (defbinding check-version () (copy-of string)
31 (required-major unsigned-int)
32 (required-minor unsigned-int)
33 (required-micro unsigned-int))
35 (defbinding query-version () nil
36 (major unsigned-int :out)
37 (minor unsigned-int :out)
38 (micro unsigned-int :out))
41 (multiple-value-bind (major minor micro)
44 (format nil "Gtk+ v~A.~A" major minor)
45 (format nil "Gtk+ v~A.~A.~A" major minor micro))))
51 ;;;; Initalization and display handling
53 (defparameter *event-poll-interval* 10000) ; in microseconds
56 (defbinding (gtk-init "gtk_parse_args") () boolean
57 "Initializes the library without opening the display."
61 (defun clg-init (&optional display multi-threading-p)
62 "Initializes the system and starts event handling."
63 (unless (gdk:display-get-default)
64 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
66 #+sbcl(sb-int:set-floating-point-modes :traps nil)
67 #+cmu(ext:set-floating-point-modes :traps nil))
71 (error "Initialization of GTK+ failed."))
73 (if (not multi-threading-p)
74 (%init-async-event-handling display)
75 #+sb-thread(%init-multi-threaded-event-handling display)
76 #-sb-thread(error "Multi threading not supported on this platform")))
77 (gdk:ensure-display display t))
79 (defun clg-init-with-threading (&optional display)
84 ;; A very minimal implementation of CLISP's socket-status
85 (defun socket-status (socket seconds microseconds)
86 (sb-alien:with-alien ((read-fds (sb-alien:struct sb-unix:fd-set)))
87 (let ((fd (sb-sys:fd-stream-fd (car socket))))
88 (sb-unix:fd-zero read-fds)
89 (sb-unix:fd-set fd read-fds)
91 (let ((num-fds-changed
92 (sb-unix:unix-fast-select
93 (1+ fd) (sb-alien:addr read-fds) nil nil
94 seconds microseconds)))
95 (unless (or (not num-fds-changed) (zerop num-fds-changed))
96 (if (peek-char nil (car socket) nil)
100 (defun %init-async-event-handling (display)
101 (let ((style #?(or (featurep :cmu) (sbcl< 1 0 6)) :fd-handler
102 #?-(or (featurep :cmu) (sbcl< 1 0 6)) nil))
104 (find-package "SWANK")
105 (not (eq (symbol-value (find-symbol "*COMMUNICATION-STYLE*" "SWANK")) style)))
106 (error "When running clg in Slime, the communication style ~A must be used in combination with asynchronous event handling on this platform. See the README file and <http://common-lisp.net/project/slime/doc/html/slime_45.html> for more information." style)))
108 #?(or (featurep :cmu) (sbcl< 1 0 6))
110 (signal-connect (gdk:display-manager) 'display-opened
112 (let ((fd (gdk:display-connection-number display)))
114 (let ((handler (add-fd-handler
115 (gdk:display-connection-number display)
116 :input #'main-iterate-all)))
117 (signal-connect display 'closed
118 #'(lambda (is-error-p)
119 (declare (ignore is-error-p))
120 (remove-fd-handler handler))))))))
121 (setq *periodic-polling-function* #'main-iterate-all)
122 (setq *max-event-to-sec* 0)
123 (setq *max-event-to-usec* *event-poll-interval*))
125 #+(and clisp readline)
126 ;; Readline will call the event hook at most ten times per second
127 (setf readline:event-hook #'main-iterate-all)
129 #?-(or (featurep :cmu) (sbcl< 1 0 6))
130 ;; When running in Slime we need to hook into the Swank server
131 ;; to handle events asynchronously.
132 (if (find-package "SWANK")
133 (let ((read-from-emacs (symbol-function (find-symbol "READ-FROM-EMACS" "SWANK")))
134 (stream (funcall (find-symbol "CONNECTION.SOCKET-IO" "SWANK") (symbol-value (find-symbol "*EMACS-CONNECTION*" "SWANK")))))
135 (setf (symbol-function (find-symbol "READ-FROM-EMACS" "SWANK"))
138 (case (socket-status (cons stream :input) 0 *event-poll-interval*)
139 ((:input :eof) (return (funcall read-from-emacs)))
140 (otherwise (main-iterate-all)))))))
141 #-(and clisp readline)
142 (warn "Asynchronous event handling not supported on this platform. An explicit main loop has to be started."))
144 (gdk:display-open display))
148 (defvar *main-thread* nil)
150 ;; Hopefully, when threading support is added to the Win32 port of
151 ;; SBCL in the future, this will work just out of the box.
153 (let ((done (sb-thread:make-waitqueue))
157 ;; In Win32 all GDK calls have to be made from the main loop
158 ;; thread, so we add a timeout function which will poll for code and
161 (defun funcall-in-main (function)
164 (eq sb-thread:*current-thread* *main-thread*))
166 (gdk:with-global-lock
167 (push function functions)
168 (sb-thread:condition-wait done gdk:*global-lock*)
171 ;; Will lock REPL on error, need to be fixed!
172 (defun %funcall-in-main-poll ()
177 do (push (funcall (pop functions)) results)
178 finally (sb-thread:condition-notify done n)))
181 (defmacro within-main-loop (&body body)
182 #-win32 `(gdk:with-global-lock ,@body)
183 #+win32 `(funcall-in-main #'(lambda () ,@body)))
185 (defun %init-multi-threaded-event-handling (display)
187 (find-package "SWANK")
188 (not (eq (symbol-value (find-symbol "*COMMUNICATION-STYLE*" "SWANK")) :spawn)))
189 (error "When running clg in Slime, the communication style :spawn must be used in combination with multi threaded event handling. See the README file and <http://common-lisp.net/project/slime/doc/html/slime_45.html> for more information."))
190 (let ((main-running (sb-thread:make-waitqueue)))
191 (gdk:with-global-lock
193 (sb-thread:make-thread
196 (gdk:with-global-lock
197 (gdk:display-open display)
198 #+win32(gdk:timeout-add-with-lock (/ *event-poll-interval* 1000)
199 #'%funcall-in-main-poll)
200 (sb-thread:condition-notify main-running)
202 :name "gtk event loop"))
203 (sb-thread:condition-wait main-running gdk:*global-lock*)))
205 ;; We need to hook into the Swank server to protect calls to GDK properly.
206 ;; This will *only* protect code entered directly in the REPL.
207 (when (find-package "SWANK")
208 (push #'(lambda (form)
209 (within-main-loop (eval form)))
210 swank::*slime-repl-eval-hooks*))))
213 (defmacro within-main-loop (&body body)
218 ;;; Generic functions
220 (defgeneric add-to-radio-group (item1 item2))
221 (defgeneric activate-radio-widget (item))
222 (defgeneric (setf tool-item-tip-text) (tip-text tool-item))
223 (defgeneric (setf tool-item-tip-private) (tip-private tool-item))
229 (defbinding grab-add () nil
232 (defbinding grab-get-current () widget)
234 (defbinding grab-remove () nil
237 (defbinding get-default-language () (copy-of pango:language))
242 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
244 (define-callback-marshal %about-dialog-activate-link-callback nil
245 (about-dialog (link string)))
247 (defbinding about-dialog-set-email-hook (function) nil
248 (%about-dialog-activate-link-callback callback)
249 ((register-callback-function function) unsigned-int)
250 (user-data-destroy-callback callback))
252 (defbinding about-dialog-set-url-hook (function) nil
253 (%about-dialog-activate-link-callback callback)
254 ((register-callback-function function) unsigned-int)
255 (user-data-destroy-callback callback)))
260 (defbinding %accel-group-connect () nil
261 (accel-group accel-group)
263 (modifiers gdk:modifier-type)
267 (defun accel-group-connect (group accelerator function &optional flags)
268 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
269 (let ((gclosure (make-callback-closure function)))
270 (%accel-group-connect group key modifiers flags gclosure)
273 (defbinding accel-group-connect-by-path (group path function) nil
276 ((make-callback-closure function) gclosure :in/return))
278 (defbinding %accel-group-disconnect (group gclosure) boolean
282 (defbinding %accel-group-disconnect-key () boolean
285 (modifiers gdk:modifier-type))
287 (defun accel-group-disconnect (group accelerator)
288 (etypecase accelerator
289 (gclosure (%accel-group-disconnect group accelerator))
291 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
292 (%accel-group-disconnect-key group key modifiers)))))
294 (defbinding %accel-group-query () (copy-of (vector (inlined accel-group-entry) n))
295 (accel-group accel-group)
297 (modifiers gdk:modifier-type)
300 (defun accel-group-query (accel-group accelerator)
301 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
302 (%accel-group-query accel-group key modifiers)))
304 (defbinding %accel-group-activate () boolean
305 (accel-group accel-group)
306 (acceleratable gobject)
308 (modifiers gdk:modifier-type))
310 (defun accel-group-activate (accel-group acceleratable accelerator)
311 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
312 (%accel-group-activate accel-group acceleratable key modifiers)))
314 (defbinding accel-group-lock () nil
315 (accel-group accel-group))
317 (defbinding accel-group-unlock () nil
318 (accel-group accel-group))
320 (defbinding accel-group-from-accel-closure () accel-group
323 (defbinding %accel-groups-activate () boolean
326 (modifiers gdk:modifier-type))
328 (defun accel-groups-activate (object accelerator)
329 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
330 (%accel-groups-activate object key modifiers)))
332 (defbinding accel-groups-from-object () (gslist accel-group)
335 (defbinding accelerator-valid-p (key &optional modifiers) boolean
337 (modifiers gdk:modifier-type))
339 (defbinding %accelerator-parse () nil
341 (key unsigned-int :out)
342 (modifiers gdk:modifier-type :out))
344 (defgeneric parse-accelerator (accelerator))
346 (defmethod parse-accelerator ((accelerator string))
347 (multiple-value-bind (key modifiers) (%accelerator-parse accelerator)
349 (error "Invalid accelerator: ~A" accelerator)
350 (values key modifiers))))
352 (defmethod parse-accelerator ((accelerator cons))
353 (destructuring-bind (key modifiers) accelerator
359 (gdk:keyval-from-name key)
360 (error "Invalid key name: ~A" key)))
361 (character (parse-accelerator key)))
364 (defmethod parse-accelerator ((key integer))
367 (defmethod parse-accelerator ((key character))
369 (gdk:keyval-from-name (string key))
370 (error "Invalid key name: ~A" key)))
373 (defbinding accelerator-name () string
375 (modifiers gdk:modifier-type))
377 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
378 (defbinding accelerator-get-label () string
380 (modifiers gdk:modifier-type))
382 (defbinding %accelerator-set-default-mod-mask () nil
383 (default-modifiers gdk:modifier-type))
385 (defun (setf accelerator-default-modifier-mask) (default-modifiers)
386 (%accelerator-set-default-mod-mask default-modifiers))
388 (defbinding (accelerator-default-modifier-mask "gtk_accelerator_get_default_mod_mask") () gdk:modifier-type)
393 (defbinding accel-label-get-accel-width () unsigned-int
394 (accel-label accel-label))
396 (defbinding accel-label-refetch () boolean
397 (accel-label accel-label))
403 (defbinding %accel-map-add-entry () nil
406 (modifiers gdk:modifier-type))
408 (defun accel-map-add-entry (path accelerator)
409 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
410 (%accel-map-add-entry path key modifiers)))
412 (defbinding %accel-map-lookup-entry () boolean
414 ((make-instance 'accel-key) accel-key :in/return))
416 (defun accel-map-lookup-entry (path)
417 (multiple-value-bind (found-p accel-key) (%accel-map-lookup-entry path)
420 (slot-value accel-key 'key)
421 (slot-value accel-key 'modifiers)
422 (slot-value accel-key 'flags)))))
424 (defbinding %accel-map-change-entry () boolean
427 (modifiers gdk:modifier-type)
430 (defun accel-map-change-entry (path accelerator &optional replace)
431 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
432 (%accel-map-change-entry path key modifiers replace)))
434 (defbinding accel-map-load () nil
437 (defbinding accel-map-save () nil
440 (define-callback-marshal %accel-map-foreach-callback nil
441 ((accel-path string) (key unsigned-int)
442 (modifiers gdk:modifier-type) (changed boolean)) :callback-id :first)
444 (defbinding %accel-map-foreach (callback-id) nil
445 (callback-id unsigned-int)
446 (%accel-map-foreach-callback callback))
448 (defbinding %accel-map-foreach-unfiltered (callback-id) nil
449 (callback-id unsigned-int)
450 (%accel-map-foreach-callback callback))
452 (defun accel-map-foreach (function &optional (filter-p t))
453 (with-callback-function (id function)
455 (%accel-map-foreach id)
456 (%accel-map-foreach-unfiltered id))))
458 (defbinding accel-map-add-filter () nil
461 (defbinding accel-map-get () accel-map)
463 (defbinding accel-map-lock-path () nil
466 (defbinding accel-map-unlock-path () nil
473 (defbinding accessible-connect-widget-destroyed () nil
474 (accessible accessible))
479 (defmethod initialize-instance ((adjustment adjustment) &key value)
482 ;; we need to make sure that the value is set last, otherwise it
483 ;; may be outside current limits and ignored
485 (setf (slot-value adjustment 'value) value))))
488 (defbinding adjustment-changed () nil
489 (adjustment adjustment))
491 (defbinding adjustment-value-changed () nil
492 (adjustment adjustment))
494 (defbinding adjustment-clamp-page () nil
495 (adjustment adjustment)
497 (upper single-float))
502 (defbinding alignment-set () nil
503 (alognment alignment)
504 (x-align single-float)
505 (y-align single-float)
506 (x-scale single-float)
507 (y-scale single-float))
509 (defbinding alignment-get-padding () nil
510 (alognment alignment)
511 (top unsigned-int :out)
512 (bottom unsigned-int :out)
513 (left unsigned-int :out)
514 (right unsigned-int :out))
516 (defbinding alignment-set-padding () nil
517 (alognment alignment)
519 (bottom unsigned-int)
521 (right unsigned-int))
526 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.10.0")
528 (defbinding assistant-get-nth-page () widget
529 (assistant assistant)
532 (defbinding %assistant-insert-page () int
533 (assistant assistant)
537 (defun assistant-insert-page (assistant page position &rest child-args)
538 (let ((pos (case position
543 (%assistant-insert-page assistant page pos)
544 (init-child-slots assistant page child-args))))
546 (defun assistant-append-page (assistant page &rest child-args)
547 (apply #'assistant-insert-page assistant page :last child-args))
549 (defun assistant-prepend-page (assistant page &rest child-args)
550 (apply #'assistant-insert-page assistant page :first child-args))
552 (define-callback-marshal %assistant-page-func-callback int
553 ((current-page int)))
555 (defbinding assistant-set-forward-func (assistant function) nil
556 (assistant assistant)
557 (%assistant-page-func-callback callback)
558 ((register-callback-function function) pointer-data)
559 (user-data-destroy-callback callback))
561 (defbinding assistant-add-action-widget () nil
562 (assistant assistant)
565 (defbinding assistant-remove-action-widget () nil
566 (assistant assistant)
569 (defbinding assistant-update-buttons-state () nil
570 (assistant assistant)))
579 (defun (setf bin-child) (child bin)
580 (when-bind (current-child (bin-child bin))
581 (container-remove bin current-child))
582 (container-add bin child)
585 (defmethod compute-signal-function ((bin bin) signal function object args)
586 (declare (ignore signal))
587 (if (eq object :child)
588 #'(lambda (&rest emission-args)
589 (apply function (bin-child bin) (nconc (rest emission-args) args)))
595 (defbinding box-pack-start () nil
600 (padding unsigned-int))
602 (defbinding box-pack-end () nil
607 (padding unsigned-int))
609 (defun box-pack (box child &key end (expand t) (fill t) (padding 0))
611 (box-pack-end box child expand fill padding)
612 (box-pack-start box child expand fill padding)))
614 (defbinding box-reorder-child () nil
619 (defbinding box-query-child-packing () nil
622 (expand boolean :out)
624 (padding unsigned-int :out)
625 (pack-type pack-type :out))
627 (defbinding box-set-child-packing () nil
632 (padding unsigned-int)
633 (pack-type pack-type))
639 (defmethod initialize-instance ((button button) &rest initargs &key stock)
641 (apply #'call-next-method button
642 :label stock :use-stock t :use-underline t initargs)
646 (defbinding button-pressed () nil
649 (defbinding button-released () nil
652 (defbinding button-clicked () nil
655 (defbinding button-enter () nil
658 (defbinding button-leave () nil
665 (defbinding calendar-select-month () int
670 (defbinding calendar-select-day () nil
674 (defbinding calendar-mark-day () int
678 (defbinding calendar-unmark-day () int
682 (defbinding calendar-clear-marks () nil
685 (defbinding calendar-get-date () nil
687 (year unsigned-int :out)
688 (month unsigned-int :out)
689 (day unsigned-int :out))
691 (defbinding calendar-freeze () nil
694 (defbinding calendar-thaw () nil
700 (defbinding check-menu-item-toggled () nil
701 (check-menu-item check-menu-item))
706 (defbinding (color-selection-is-adjusting-p
707 "gtk_color_selection_is_adjusting") () boolean
708 (colorsel color-selection))
712 ;;; Color selection dialog -- no functions
718 (defmethod initialize-instance ((combo-box combo-box) &rest initargs
719 &key model content active)
720 (remf initargs :active)
722 (apply #'call-next-method combo-box initargs)
724 (apply #'call-next-method combo-box
725 :model (make-instance 'list-store :column-types '(string))
727 (unless (typep combo-box 'combo-box-entry)
728 (let ((cell (make-instance 'cell-renderer-text)))
729 (cell-layout-pack combo-box cell :expand t)
730 (cell-layout-add-attribute combo-box cell :text 0)))))
732 (mapc #'(lambda (text)
733 (combo-box-append-text combo-box text))
736 (setf (combo-box-active combo-box) active)))
739 ;; (defmethod shared-initialize :after ((combo-box combo-box) names &key active)
741 ;; (signal-emit combo-box 'changed)))
743 (defbinding combo-box-append-text () nil
744 (combo-box combo-box)
747 (defbinding combo-box-insert-text () nil
748 (combo-box combo-box)
752 (defbinding combo-box-prepend-text () nil
753 (combo-box combo-box)
756 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
757 (defbinding combo-box-get-active-text () string
758 (combo-box combo-box))
760 (defbinding combo-box-popup () nil
761 (combo-box combo-box))
763 (defbinding combo-box-popdown () nil
764 (combo-box combo-box))
770 (defmethod initialize-instance ((combo-box-entry combo-box-entry) &key model)
773 (setf (combo-box-entry-text-column combo-box-entry) 0)))
778 (defmethod shared-initialize ((dialog dialog) names &rest initargs
780 (declare (ignore names button buttons))
783 (initial-apply-add dialog #'dialog-add-button initargs :button :buttons)))
786 (defun dialog-response-id (dialog response &optional create-p error-p)
787 "Returns a numeric response id"
788 (if (typep response 'response-type)
789 (response-type-to-int response)
790 (let ((responses (user-data dialog 'responses)))
792 ((and responses (position response responses :test #'equal)))
796 (vector-push-extend response responses)
797 (1- (length responses)))
800 (user-data dialog 'responses)
801 (make-array 1 :adjustable t :fill-pointer t
802 :initial-element response))
805 (error "Invalid response: ~A" response))))))
807 (defun dialog-find-response (dialog id)
808 "Finds a symbolic response given a numeric id"
810 (int-to-response-type id)
811 (aref (user-data dialog 'responses) id)))
814 (defmethod compute-signal-id ((dialog dialog) signal)
815 (if (dialog-response-id dialog signal)
816 (ensure-signal-id 'response dialog)
819 (defmethod compute-signal-function ((dialog dialog) signal function object args)
820 (declare (ignore function object args))
821 (let ((callback (call-next-method))
822 (id (dialog-response-id dialog signal)))
824 #'(lambda (dialog response)
825 (when (= response id)
826 (funcall callback dialog)))
829 (defbinding dialog-run () nil
832 (defbinding dialog-response (dialog response) nil
834 ((dialog-response-id dialog response nil t) int))
837 (defbinding %dialog-add-button () button
842 (defun dialog-add-button (dialog label &optional (response label)
843 &key default object after)
844 "Adds a button to the dialog."
845 (let* ((signal (if (functionp response)
848 (id (dialog-response-id dialog signal t))
849 (button (%dialog-add-button dialog label id)))
850 (when (functionp response)
851 (signal-connect dialog signal response :object object :after after))
853 (%dialog-set-default-response dialog id))
857 (defbinding %dialog-add-action-widget () nil
859 (action-widget widget)
862 (defun dialog-add-action-widget (dialog widget &optional (response widget)
863 &key default object after)
864 (let* ((signal (if (functionp response)
867 (id (dialog-response-id dialog signal t)))
868 (unless (widget-hidden-p widget)
869 (widget-show widget))
870 (%dialog-add-action-widget dialog widget id)
871 (when (functionp response)
872 (signal-connect dialog signal response :object object :after after))
874 (%dialog-set-default-response dialog id))
878 (defbinding %dialog-set-default-response () nil
882 (defun dialog-set-default-response (dialog response)
883 (%dialog-set-default-response
884 dialog (dialog-response-id dialog response nil t)))
886 (defbinding dialog-set-response-sensitive (dialog response sensitive) nil
888 ((dialog-response-id dialog response nil t) int)
891 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
892 (defbinding alternative-dialog-button-order-p (&optional screen) boolean
893 (screen (or null gdk:screen)))
895 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
896 (defbinding (dialog-set-alternative-button-order
897 "gtk_dialog_set_alternative_button_order_from_array")
898 (dialog new-order) nil
900 ((length new-order) int)
901 ((map 'vector #'(lambda (response)
902 (dialog-response-id dialog response nil t))
903 new-order) (vector int)))
906 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
908 (defbinding %dialog-get-response-for-widget () int
912 (defun dialog-get-response-for-widget (dialog widget)
913 (dialog-find-response dialog (dialog-get-response-for-widget dialog widget))))
916 (defmethod container-add ((dialog dialog) (child widget) &rest args)
917 (apply #'container-add (dialog-vbox dialog) child args))
920 (defmethod container-remove ((dialog dialog) (child widget))
921 (container-remove (dialog-vbox dialog) child))
923 (defmethod container-children ((dialog dialog))
924 (container-children (dialog-vbox dialog)))
926 (defmethod (setf container-children) (children (dialog dialog))
927 (setf (container-children (dialog-vbox dialog)) children))
932 (defun drawing-area-scroll (drawing-area dx dy)
933 (gdk:window-scroll (widget-window drawing-area) dx dy))
938 (defbinding entry-get-layout-offsets () nil
943 (defbinding entry-layout-index-to-text-index () int
947 (defbinding entry-text-index-to-layout-index () int
954 (define-callback-marshal %entry-completion-match-callback boolean
955 (entry-completion string tree-iter))
957 (defbinding entry-completion-set-match-func (completion function) nil
958 (completion entry-completion)
959 (%entry-completion-match-callback callback)
960 ((register-callback-function function) unsigned-int)
961 (user-data-destroy-callback callback))
963 (defbinding entry-completion-complete () nil
964 (completion entry-completion))
966 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
967 (defbinding entry-completion-insert-prefix () nil
968 (completion entry-completion))
970 (defbinding entry-completion-insert-action-text () nil
971 (completion entry-completion)
975 (defbinding entry-completion-insert-action-markup () nil
976 (completion entry-completion)
980 (defbinding entry-completion-delete-action () nil
981 (completion entry-completion)
987 (defmethod initialize-instance ((file-chooser file-chooser) &rest initargs
988 &key filter filters shortcut-folder
989 shortcut-folders shortcut-folder-uti
990 shortcut-folder-uris)
991 (declare (ignore filter filters shortcut-folder shortcut-folders
992 shortcut-folder-uti shortcut-folder-uris))
995 (initial-add file-chooser #'file-chooser-add-filter
996 initargs :filer :filters)
997 (initial-add file-chooser #'file-chooser-add-shortcut-folder
998 initargs :shortcut-folder :shortcut-folders)
999 (initial-add file-chooser #'file-chooser-add-shortcut-folder-uri
1000 initargs :shortcut-folder-uri :shortcut-folders-uris)))
1003 (defbinding file-chooser-select-filename () boolean
1004 (file-chooser file-chooser)
1007 (defbinding file-chooser-unselect-filename () nil
1008 (file-chooser file-chooser)
1011 (defbinding file-chooser-select-all () boolean
1012 (file-chooser file-chooser))
1014 (defbinding file-chooser-unselect-all () boolean
1015 (file-chooser file-chooser))
1017 (defbinding file-chooser-get-filenames () (gslist string)
1018 (file-chooser file-chooser))
1020 (defbinding file-chooser-select-uri () boolean
1021 (file-chooser file-chooser)
1024 (defbinding file-chooser-unselect-uri () nil
1025 (file-chooser file-chooser)
1028 (defbinding file-chooser-get-uris () (gslist string)
1029 (file-chooser file-chooser))
1031 (defbinding file-chooser-add-filter () nil
1032 (file-chooser file-chooser)
1033 (filter file-filter))
1035 (defbinding file-chooser-remove-filter () nil
1036 (file-chooser file-chooser)
1037 (filter file-filter))
1039 (defbinding file-chooser-list-filters () (gslist file-filter)
1040 (file-chooser file-chooser))
1042 (defbinding file-chooser-add-shortcut-folder () boolean
1043 (file-chooser file-chooser)
1047 (defbinding file-chooser-remove-shortcut-folder () nil
1048 (file-chooser file-chooser)
1052 (defbinding file-chooser-list-shortcut-folders () (gslist string)
1053 (file-chooser file-chooser))
1055 (defbinding file-chooser-add-shortcut-folder-uri () boolean
1056 (file-chooser file-chooser)
1060 (defbinding file-chooser-remove-shortcut-folder-uri () nil
1061 (file-chooser file-chooser)
1065 (defbinding file-chooser-list-shortcut-folder-uris () (gslist string)
1066 (file-chooser file-chooser))
1071 (defmethod initialize-instance ((file-filter file-filter) &rest initargs
1072 &key mime-type mime-types pattern patterns
1074 (declare (ignore mime-type mime-types pattern patterns))
1077 (when pixbuf-formats
1078 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1079 (warn "Initarg :PIXBUF-FORMATS not supportet in this version of Gtk")
1080 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1081 (file-filter-add-pixbuf-formats file-filter))
1082 (initial-add file-filter #'file-filter-add-mime-type
1083 initargs :mime-type :mime-types)
1084 (initial-add file-filter #'file-filter-add-pattern
1085 initargs :pattern :patterns)))
1088 (defbinding file-filter-add-mime-type () nil
1089 (filter file-filter)
1092 (defbinding file-filter-add-pattern () nil
1093 (filter file-filter)
1096 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1097 (defbinding file-filter-add-pixbuf-formats () nil
1098 (filter file-filter))
1100 (define-callback-marshal %file-filter-callback boolean (file-filter-info))
1102 (defbinding file-filter-add-custom (filter needed function) nil
1103 (filter file-filter)
1104 (needed file-filter-flags)
1105 (%file-filter-callback callback)
1106 ((register-callback-function function) unsigned-int)
1107 (user-data-destroy-callback callback))
1109 (defbinding file-filter-get-needed () file-filter-flags
1110 (filter file-filter))
1112 (defbinding file-filter-filter () boolean
1113 (filter file-filter)
1114 (filter-info file-filter-info))
1120 (defbinding image-set-from-file () nil
1122 (filename pathname))
1124 (defmethod (setf image-pixmap) ((data vector) (image image))
1125 (multiple-value-bind (pixmap mask) (gdk:pixmap-create data)
1126 (setf (image-pixmap image) pixmap)
1127 (setf (image-mask image) mask)))
1129 (defmethod initialize-instance ((image image) &rest initargs &key pixmap file)
1131 ((typep pixmap 'vector)
1132 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap)
1133 (apply #'call-next-method image :pixmap pixmap :mask mask initargs)))
1137 (image-set-from-file image file)))
1138 ((call-next-method))))
1140 (defun create-image-widget (source &optional mask)
1142 (gdk:pixbuf (make-instance 'image :pixbuf source))
1143 (string (make-instance 'image :stock source))
1144 (pathname (make-instance 'image :file source))
1145 ((or list vector) (make-instance 'image :pixmap source))
1146 (gdk:pixmap (make-instance 'image :pixmap source :mask mask))))
1148 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
1149 (defbinding image-clear () nil
1156 (defmethod initialize-instance ((item image-menu-item) &rest initargs &key image)
1157 (if (and image (not (typep image 'widget)))
1158 (apply #'call-next-method item :image (create-image-widget image) initargs)
1159 (call-next-method)))
1162 (defmethod (setf image-menu-item-image) ((widget widget) (item image-menu-item))
1163 (setf (slot-value item 'image) widget))
1165 (defmethod (setf image-menu-item-image) (image (item image-menu-item))
1166 (setf (image-menu-item-image item) (create-image-widget image)))
1171 (defmethod shared-initialize ((label label) names &key pattern)
1172 (declare (ignore names))
1175 (setf (label-pattern label) pattern)))
1177 (defbinding label-get-layout-offsets () nil
1182 (defbinding label-select-region () nil
1187 (defbinding label-get-selection-bounds () boolean
1196 (defbinding %radio-button-get-group () pointer
1197 (radio-button radio-button))
1199 (defbinding %radio-button-set-group () nil
1200 (radio-button radio-button)
1203 (defmethod add-to-radio-group ((button1 radio-button) (button2 radio-button))
1204 "Add BUTTON1 to the group which BUTTON2 belongs to."
1205 (%radio-button-set-group button1 (%radio-button-get-group button2)))
1207 (defun %add-activate-callback (widget signal function object after)
1209 (signal-connect widget signal
1211 (when (slot-value widget 'active)
1212 (funcall function object (slot-value widget 'value))))
1213 :object object :after after)
1214 (signal-connect widget signal
1216 (when (slot-value widget 'active)
1217 (funcall function (slot-value widget 'value))))
1220 (defmethod activate-radio-widget ((button radio-button))
1221 (signal-emit button 'clicked))
1223 (defgeneric add-activate-callback (action function &key object after))
1225 (defmethod add-activate-callback ((button radio-button) function &key object after)
1226 (%add-activate-callback button 'clicked function object after))
1228 (defmethod initialize-instance ((button radio-button) &key group)
1232 (add-to-radio-group button group))))
1237 (defbinding item-select () nil
1240 (defbinding item-deselect () nil
1243 (defbinding item-toggle () nil
1250 (defmethod initialize-instance ((item menu-item) &key label)
1254 (setf (menu-item-label item) label))))
1257 (defun (setf menu-item-label) (label menu-item)
1258 (make-instance 'accel-label
1259 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
1260 :use-underline (menu-item-use-underline-p menu-item)
1261 :visible t :parent menu-item)
1264 (defun menu-item-label (menu-item)
1265 (when (and (slot-boundp menu-item 'child)
1266 (typep (bin-child menu-item) 'label))
1267 (label-label (bin-child menu-item))))
1269 (defbinding menu-item-remove-submenu () nil
1270 (menu-item menu-item))
1272 (defbinding menu-item-set-accel-path () nil
1273 (menu-item menu-item)
1274 (accel-path string))
1276 (defbinding menu-item-select () nil
1277 (menu-item menu-item))
1279 (defbinding menu-item-deselect () nil
1280 (menu-item menu-item))
1282 (defbinding menu-item-activate () nil
1283 (menu-item menu-item))
1285 (defbinding menu-item-toggle-size-request () nil
1286 (menu-item menu-item)
1287 (requisition int :out))
1289 (defbinding menu-item-toggle-size-allocate () nil
1290 (menu-item menu-item)
1294 ;;; Menu tool button
1296 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1297 (defbinding menu-tool-button-set-arrow-tooltip () nil
1298 (menu-tool-button menu-tool-button)
1301 (tip-private string))
1306 (defmethod allocate-foreign ((dialog message-dialog) &key (message-type :info)
1307 (buttons :close) flags transient-parent)
1308 (%message-dialog-new transient-parent flags message-type buttons))
1311 (defmethod shared-initialize ((dialog message-dialog) names &key text
1312 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1314 (declare (ignore names))
1316 (message-dialog-set-markup dialog text))
1317 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1318 (when secondary-text
1319 (message-dialog-format-secondary-markup dialog secondary-text))
1323 (defbinding %message-dialog-new () pointer
1324 (parent (or null window))
1325 (flags dialog-flags)
1327 (buttons buttons-type)
1330 (defbinding message-dialog-set-markup () nil
1331 (message-dialog message-dialog)
1334 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1335 (defbinding message-dialog-format-secondary-text () nil
1336 (message-dialog message-dialog)
1339 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1340 (defbinding message-dialog-format-secondary-markup () nil
1341 (message-dialog message-dialog)
1348 (defbinding %radio-menu-item-get-group () pointer
1349 (radio-menu-item radio-menu-item))
1351 (defbinding %radio-menu-item-set-group () nil
1352 (radio-menu-item radio-menu-item)
1355 (defmethod activate-radio-widget ((item radio-menu-item))
1356 (menu-item-activate item))
1358 (defmethod add-to-radio-group ((item1 radio-menu-item) (item2 radio-menu-item))
1359 "Add ITEM1 to the group which ITEM2 belongs to."
1360 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
1362 (defmethod add-activate-callback ((item radio-menu-item) function &key object after)
1363 (%add-activate-callback item 'activate function object after))
1365 (defmethod initialize-instance ((item radio-menu-item) &key group)
1369 (add-to-radio-group item group))))
1373 ;;; Radio tool button
1375 (defbinding %radio-tool-button-get-group () pointer
1376 (radio-tool-button radio-tool-button))
1378 (defbinding %radio-tool-button-set-group () nil
1379 (radio-tool-button radio-tool-button)
1382 (defmethod activate-radio-widget ((button radio-tool-button))
1383 (signal-emit button 'clicked))
1385 (defmethod add-to-radio-group ((button1 radio-tool-button) (button2 radio-tool-button))
1386 "Add BUTTON1 to the group which BUTTON2 belongs to."
1387 (%radio-tool-button-set-group button1 (%radio-tool-button-get-group button2)))
1388 (defmethod add-activate-callback ((button radio-tool-button) function &key object after)
1389 (%add-activate-callback button 'clicked function object after))
1391 (defmethod initialize-instance ((button radio-tool-button) &key group)
1395 (add-to-radio-group button group))))
1401 (defbinding toggle-button-toggled () nil
1402 (toggle-button toggle-button))
1407 (defmethod initialize-instance ((window window) &rest initargs
1408 &key display accel-group accel-groups)
1409 (declare (ignore accel-group accel-groups))
1412 (apply #'call-next-method
1413 window :screen (gdk:display-get-default-screen (gdk:ensure-display display)) initargs)
1415 (initial-add window #'window-add-accel-group
1416 initargs :accel-group :accel-groups)))
1418 #-debug-ref-counting
1419 (defmethod print-object ((window window) stream)
1421 (proxy-valid-p window)
1422 (slot-boundp window 'title)
1423 (not (zerop (length (window-title window)))))
1424 (print-unreadable-object (window stream :type t :identity nil)
1425 (format stream "~S at 0x~X"
1426 (window-title window) (pointer-address (foreign-location window))))
1427 (call-next-method)))
1429 (defbinding window-set-wmclass () nil
1431 (wmclass-name string)
1432 (wmclass-class string))
1434 (defbinding window-add-accel-group () nil
1436 (accel-group accel-group))
1438 (defbinding window-remove-accel-group () nil
1440 (accel-group accel-group))
1442 (defbinding window-activate-focus () int
1445 (defbinding window-activate-default () int
1448 (defbinding window-set-default-size (window width height) int
1451 ((or height -1) int))
1453 (defbinding %window-set-geometry-hints () nil
1455 (widget (or widget null))
1456 (geometry gdk:geometry)
1457 (geometry-mask gdk:window-hints))
1459 (defun window-set-geometry-hints (window &key widget min-width min-height
1460 max-width max-height base-width base-height
1461 width-inc height-inc gravity
1462 aspect (min-aspect aspect) (max-aspect aspect))
1463 (let ((geometry (make-instance 'gdk:geometry
1464 :min-width (or min-width -1)
1465 :min-height (or min-height -1)
1466 :max-width (or max-width -1)
1467 :max-height (or max-height -1)
1468 :base-width (or base-width 0)
1469 :base-height (or base-height 0)
1470 :width-inc (or width-inc 0)
1471 :height-inc (or height-inc 0)
1472 :min-aspect (or min-aspect 0)
1473 :max-aspect (or max-aspect 0)))
1475 (when (or min-width min-height)
1476 (push :min-size mask))
1477 (when (or max-width max-height)
1478 (push :max-size mask))
1479 (when (or base-width base-height)
1480 (push :base-size mask))
1481 (when (or width-inc height-inc)
1482 (push :resize-inc mask))
1483 (when (or min-aspect max-aspect)
1484 (push :aspect mask))
1486 (push :win-gravity mask)
1487 (setf (gdk:geometry-gravity geometry) gravity))
1488 (%window-set-geometry-hints window widget geometry mask)))
1490 (defbinding window-list-toplevels () (glist (copy-of window))
1491 "Returns a list of all existing toplevel windows.")
1493 (defbinding window-add-mnemonic (window key target) nil
1495 ((gdk:keyval-from-name key) unsigned-int)
1498 (defbinding window-remove-mnemonic (window key target) nil
1500 ((gdk:keyval-from-name key) unsigned-int)
1503 (defbinding window-mnemonic-activate (window key modifier) nil
1505 ((gdk:keyval-from-name key) unsigned-int)
1506 (modifier gdk:modifier-type))
1508 (defbinding window-activate-key () boolean
1510 (event gdk:key-event))
1512 (defbinding window-propagate-key-event () boolean
1514 (event gdk:key-event))
1516 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
1517 (defbinding window-present () nil
1520 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
1522 (defbinding %window-present () nil
1525 (defbinding %window-present-with-time () nil
1527 (timespamp unsigned-int))
1529 (defun window-present (window &optional timestamp)
1531 (%window-present-with-time window timestamp)
1532 (%window-present window))))
1534 (defbinding window-iconify () nil
1537 (defbinding window-deiconify () nil
1540 (defbinding window-stick () nil
1543 (defbinding window-unstick () nil
1546 (defbinding window-maximize () nil
1549 (defbinding window-unmaximize () nil
1552 (defbinding window-fullscreen () nil
1555 (defbinding window-unfullscreen () nil
1558 (defbinding window-set-keep-above () nil
1562 (defbinding window-set-keep-below () nil
1566 (defbinding window-begin-resize-drag () nil
1568 (edge gdk:window-edge)
1570 (root-x int) (root-y int)
1571 (timestamp unsigned-int))
1573 (defbinding window-begin-move-drag () nil
1575 (edge gdk:window-edge)
1577 (root-x int) (root-y int)
1578 (timestamp unsigned-int))
1580 (defbinding window-set-frame-dimensions () nil
1582 (left int) (top int) (rigth int) (bottom int))
1584 (defbinding %window-get-default-size () nil
1589 (defun window-get-default-size (window)
1590 (multiple-value-bind (width height) (%window-get-default-size window)
1591 (values (unless (= width -1) width) (unless (= height -1) height))))
1593 (defbinding window-get-frame-dimensions () nil
1595 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
1597 (defbinding %window-get-icon-list () (glist (copy-of gdk:pixbuf))
1600 (defbinding window-get-position () nil
1605 (defbinding window-get-size () nil
1610 (defbinding window-move () nil
1615 (defbinding window-parse-geometry () boolean
1619 (defbinding window-reshow-with-initial-size () nil
1622 (defbinding window-resize () nil
1627 (defbinding (window-default-icon-list "gtk_window_get_default_icon_list")
1628 () (glist gdk:pixbuf))
1630 (defun window-default-icon ()
1631 (first (window-default-icon-list)))
1633 (defbinding %window-set-default-icon-list () nil
1634 (icons (glist gdk:pixbuf)))
1636 (defun (setf window-default-icon-list) (icons)
1637 (%window-set-default-icon-list icons)
1640 (defbinding %window-set-default-icon () nil
1641 (icons (glist gdk:pixbuf)))
1643 (defgeneric (setf window-default-icon) (icon))
1645 (defmethod (setf window-default-icon) ((icon gdk:pixbuf))
1646 (%window-set-default-icon icon)
1649 (defgeneric (setf window-group) (group window))
1651 (defmethod (setf window-group) ((group window-group) (window window))
1652 (window-group-add-window group window)
1655 (defbinding %window-set-default-icon-from-file () boolean
1659 (defmethod (setf window-default-icon) ((icon-file pathname))
1660 (%window-set-default-icon-from-file icon-file)
1663 (defbinding %window-set-icon-from-file () boolean
1668 (defmethod (setf window-icon) ((icon-file pathname) (window window))
1669 (%window-set-icon-from-file window icon-file)
1672 (defbinding window-set-auto-startup-notification () nil
1675 (defbinding decorated-window-init () nil
1678 (defbinding decorated-window-calculate-frame-size () nil
1681 (defbinding decorated-window-set-title () nil
1685 (defbinding decorated-window-move-resize-window () nil
1695 (defmethod initialize-instance ((window-group window-group) &rest initargs
1696 &key window windows)
1697 (declare (ignore window windows))
1700 (initial-add window-group #'window-group-add-window
1701 initargs :window :windows)))
1704 (defbinding window-group-add-window () nil
1705 (window-group window-group)
1708 (defbinding window-group-remove-window () nil
1709 (window-group window-group)
1715 (defun (setf scrolled-window-scrollbar-policy) (policy window)
1716 (setf (scrolled-window-hscrollbar-policy window) policy)
1717 (setf (scrolled-window-vscrollbar-policy window) policy))
1719 (defbinding scrolled-window-add-with-viewport () nil
1720 (scrolled-window scrolled-window)
1723 (defmethod shared-initialize ((window scrolled-window) names &key policy)
1724 (declare (ignore names))
1726 (setf (slot-value window 'hscrollbar-policy) policy)
1727 (setf (slot-value window 'vscrollbar-policy) policy))
1733 (defbinding statusbar-get-context-id () unsigned-int
1734 (statusbar statusbar)
1735 (context-description string))
1737 (defbinding statusbar-push () unsigned-int
1738 (statusbar statusbar)
1739 (context-id unsigned-int)
1742 (defbinding statusbar-pop () nil
1743 (statusbar statusbar)
1744 (context-id unsigned-int))
1746 (defbinding statusbar-remove () nil
1747 (statusbar statusbar)
1748 (context-id unsigned-int)
1749 (message-id unsigned-int))
1755 (defbinding fixed-put () nil
1760 (defbinding fixed-move () nil
1769 (defun %ensure-notebook-position (notebook page)
1772 (widget (notebook-page-num notebook page t))))
1774 (defun %ensure-notebook-child (notebook position)
1777 (t (notebook-get-nth-page notebook position))))
1779 (defbinding (notebook-insert "gtk_notebook_insert_page_menu")
1780 (notebook position child &optional tab-label menu-label) nil
1783 ((if (stringp tab-label)
1784 (make-instance 'label :label tab-label)
1785 tab-label) (or null widget))
1786 ((if (stringp menu-label)
1787 (make-instance 'label :label menu-label)
1788 menu-label) (or null widget))
1789 ((%ensure-notebook-position notebook position) position))
1791 (defun notebook-append (notebook child &optional tab-label menu-label)
1792 (notebook-insert notebook :last child tab-label menu-label))
1794 (defun notebook-prepend (notebook child &optional tab-label menu-label)
1795 (notebook-insert notebook :first child tab-label menu-label))
1797 (defbinding notebook-remove-page (notebook page) nil
1799 ((%ensure-notebook-position notebook page) position))
1801 (defbinding %notebook-page-num () int
1805 (defun notebook-page-num (notebook child &optional error-p)
1806 (let ((page-num (%notebook-page-num notebook child)))
1809 (error "~A is not a page in ~A" child notebook))
1812 (defbinding notebook-next-page () nil
1813 (notebook notebook))
1815 (defbinding notebook-prev-page () nil
1816 (notebook notebook))
1818 (defbinding notebook-reorder-child (notebook child position) nil
1821 ((%ensure-notebook-position notebook position) int))
1823 (defbinding notebook-popup-enable () nil
1824 (notebook notebook))
1826 (defbinding notebook-popup-disable () nil
1827 (notebook notebook))
1829 (defbinding notebook-get-nth-page () widget
1833 (defun %notebook-current-page (notebook)
1834 (when (slot-boundp notebook 'current-page-num)
1835 (notebook-get-nth-page notebook (notebook-current-page-num notebook))))
1837 (defun (setf notebook-current-page) (page notebook)
1838 (setf (notebook-current-page-num notebook) (notebook-page-num notebook page)))
1840 (defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1841 (notebook page) widget
1843 ((%ensure-notebook-child notebook page) widget))
1845 (defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
1846 (notebook page) (copy-of string)
1848 ((%ensure-notebook-child notebook page) widget))
1850 (defbinding %notebook-set-tab-label () nil
1855 (defun (setf notebook-tab-label) (tab-label notebook page)
1856 (let ((widget (if (stringp tab-label)
1857 (make-instance 'label :label tab-label)
1859 (%notebook-set-tab-label notebook (%ensure-notebook-child notebook page) widget)
1863 (defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1864 (notebook page) widget
1866 ((%ensure-notebook-child notebook page) widget))
1868 (defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
1869 (notebook page) (copy-of string)
1871 ((%ensure-notebook-child notebook page) widget))
1873 (defbinding %notebook-set-menu-label () nil
1876 (menu-label widget))
1878 (defun (setf notebook-menu-label) (menu-label notebook page)
1879 (let ((widget (if (stringp menu-label)
1880 (make-instance 'label :label menu-label)
1882 (%notebook-set-menu-label notebook (%ensure-notebook-child notebook page) widget)
1886 (defbinding notebook-query-tab-label-packing (notebook page) nil
1888 ((%ensure-notebook-child notebook page) widget)
1889 (expand boolean :out)
1891 (pack-type pack-type :out))
1893 (defbinding notebook-set-tab-label-packing
1894 (notebook page expand fill pack-type) nil
1896 ((%ensure-notebook-child notebook page) widget)
1899 (pack-type pack-type))
1905 (defbinding paned-pack1 () nil
1911 (defbinding paned-pack2 () nil
1920 (defbinding layout-put () nil
1926 (defbinding layout-move () nil
1932 (defbinding layout-set-size () nil
1934 (width unsigned-int)
1935 (height unsigned-int))
1937 (defbinding layout-get-size () nil
1939 (width unsigned-int :out)
1940 (height unsigned-int :out))
1945 (defbinding menu-shell-insert (menu-shell menu-item position) nil
1946 (menu-shell menu-shell)
1947 (menu-item menu-item)
1953 (defun menu-shell-append (menu-shell menu-item)
1954 (menu-shell-insert menu-shell menu-item :last))
1956 (defun menu-shell-prepend (menu-shell menu-item)
1957 (menu-shell-insert menu-shell menu-item :fisrt))
1959 (defbinding menu-shell-deactivate () nil
1960 (menu-shell menu-shell))
1962 (defbinding menu-shell-select-item () nil
1963 (menu-shell menu-shell)
1964 (menu-item menu-item))
1966 (defbinding menu-shell-select-first () nil
1967 (menu-shell menu-shell)
1968 (search-sensitive boolean))
1970 (defbinding menu-shell-deselect () nil
1971 (menu-shell menu-shell))
1973 (defbinding menu-shell-activate-item () nil
1974 (menu-shell menu-shell)
1975 (menu-item menu-item)
1976 (fore-deactivate boolean))
1978 (defbinding menu-shell-cancel () nil
1979 (menu-shell menu-shell))
1984 (defun %menu-position (menu child)
1987 (keyword (case child
1990 (t (error "Invalid position keyword: ~A" child))))
1991 (widget (menu-child-position menu child))))
1994 (defbinding menu-reorder-child (menu menu-item position) nil
1996 (menu-item menu-item)
1997 ((%menu-position menu position) int))
1999 (defbinding menu-attach () nil
2001 (menu-item menu-item)
2002 (left-attach unsigned-int)
2003 (right-attach unsigned-int)
2004 (top-attach unsigned-int)
2005 (bottom-attach unsigned-int))
2007 (define-callback-marshal %menu-position-callback nil
2008 (menu (x int) (y int) (push-in boolean)))
2010 (defbinding %menu-popup () nil
2012 (parent-menu-shell (or null menu-shell))
2013 (parent-menu-item (or null menu-item))
2014 (callback (or null callback))
2015 (callback-id unsigned-int)
2016 (button unsigned-int)
2017 (activate-time (unsigned 32)))
2019 (defun menu-popup (menu button activate-time &key callback parent-menu-shell
2022 (with-callback-function (id callback)
2024 menu parent-menu-shell parent-menu-item
2025 %menu-position-callback id button activate-time))
2027 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
2029 (defbinding menu-set-accel-path () nil
2031 (accel-path string))
2033 (defbinding menu-reposition () nil
2036 (defbinding menu-popdown () nil
2039 (defun menu-child-position (menu child)
2040 (position child (container-children menu)))
2042 (defun menu-active-num (menu)
2043 (menu-child-position menu (menu-active menu)))
2045 (defbinding %menu-set-active () nil
2047 (index unsigned-int))
2049 (defun (setf menu-active) (menu child)
2050 (%menu-set-active menu (%menu-position menu child))
2053 (define-callback %menu-detach-callback nil ((widget widget) (menu menu))
2054 (funcall (user-data menu 'detach-func) widget menu))
2056 (defbinding %menu-attach-to-widget (menu widget) nil
2059 (%menu-detach-callback callback))
2061 (defun menu-attach-to-widget (menu widget function)
2062 (setf (user-data menu 'detach-func) function)
2063 (%menu-attach-to-widget menu widget))
2065 (defbinding menu-detach () nil
2068 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
2069 (defbinding menu-get-for-attach-widget () (copy-of (glist widget))
2072 (defbinding menu-set-monitor () nil
2079 (defbinding table-resize () nil
2082 (columns unsigned-int))
2084 (defbinding table-attach (table child left right top bottom
2085 &key options x-options y-options
2086 (x-padding 0) (y-padding 0)) nil
2090 (right unsigned-int)
2092 (bottom unsigned-int)
2093 ((append (mklist options) (mklist x-options)) attach-options)
2094 ((append (mklist options) (mklist y-options)) attach-options)
2095 (x-padding unsigned-int)
2096 (y-padding unsigned-int))
2099 (defbinding %table-set-row-spacing () nil
2102 (spacing unsigned-int))
2104 (defbinding %table-set-row-spacings () nil
2106 (spacing unsigned-int))
2108 (defun (setf table-row-spacing) (spacing table &optional row)
2110 (%table-set-row-spacing table row spacing)
2111 (%table-set-row-spacings table spacing))
2114 (defbinding %table-get-row-spacing () unsigned-int
2118 (defbinding %table-get-default-row-spacing () unsigned-int
2121 (defun table-row-spacing (table &optional row)
2123 (%table-get-row-spacing table row)
2124 (%table-get-default-row-spacing table)))
2127 (defbinding %table-set-col-spacing () nil
2130 (spacing unsigned-int))
2132 (defbinding %table-set-col-spacings () nil
2134 (spacing unsigned-int))
2136 (defun (setf table-column-spacing) (spacing table &optional column)
2138 (%table-set-col-spacing table column spacing)
2139 (%table-set-col-spacings table spacing))
2142 (defun (setf table-col-spacing) (spacing table &optional col)
2143 (warn "TABLE-COL-SPACING is deprecatet, use TABLE-COLUMN-SPACING instead")
2144 (setf (table-column-spacing table col) spacing))
2146 (defbinding %table-get-col-spacing () unsigned-int
2150 (defbinding %table-get-default-col-spacing () unsigned-int
2153 (defun table-column-spacing (table &optional column)
2155 (%table-get-col-spacing table column)
2156 (%table-get-default-col-spacing table)))
2158 (defun table-col-spacing (table &optional col)
2159 (warn "TABLE-COL-SPACING is deprecatet, use TABLE-COLUMN-SPACING instead")
2160 (table-column-spacing table col))
2166 (defmethod initialize-instance ((toolbar toolbar) &rest initargs &key tooltips)
2168 (apply #'call-next-method toolbar
2169 :tooltips (make-instance 'tooltips) initargs)
2170 (call-next-method)))
2172 (defbinding %toolbar-insert () nil
2174 (tool-item tool-item)
2175 (position position))
2177 (defun toolbar-insert (toolbar tool-item &optional (position :end))
2178 (%toolbar-insert toolbar tool-item position)
2179 (%tool-item-update-tooltips tool-item))
2181 (defbinding toolbar-get-item-index () int
2185 (defbinding toolbar-get-nth-item () tool-item
2189 (defbinding toolbar-get-drop-index () int
2193 (defbinding toolbar-set-drop-highlight-item () nil
2195 (tool-item tool-item)
2201 (defmethod initialize-instance ((button tool-button) &rest initargs &key icon)
2202 (if (and icon (not (typep icon 'widget)))
2203 (apply #'call-next-method button :icon (create-image-widget icon) initargs)
2204 (call-next-method)))
2209 (defbinding tool-item-set-tooltip () nil
2210 (tool-item tool-item)
2213 (tip-private string))
2216 (defun %tool-item-update-tooltips (tool-item)
2218 (slot-boundp tool-item 'parent)
2220 (user-data-p tool-item 'tip-text)
2221 (user-data-p tool-item 'tip-private)))
2222 (tool-item-set-tooltip
2223 tool-item (toolbar-tooltips (widget-parent tool-item))
2224 (or (user-data tool-item 'tip-text) "")
2225 (or (user-data tool-item 'tip-private) ""))))
2227 (defmethod (setf tool-item-tip-text) ((tip-text string) (tool-item tool-item))
2228 (setf (user-data tool-item 'tip-text) tip-text)
2229 (%tool-item-update-tooltips tool-item)
2232 (defmethod (setf tool-item-tip-private) ((tip-private string) (tool-item tool-item))
2233 (setf (user-data tool-item 'tip-private) tip-private)
2234 (%tool-item-update-tooltips tool-item)
2237 (defmethod container-add ((toolbar toolbar) (tool-item tool-item) &rest args)
2238 (declare (ignore args))
2241 (%tool-item-update-tooltips tool-item)))
2244 (defbinding tool-item-retrieve-proxy-menu-item () widget
2245 (tool-item tool-item))
2247 (defbinding (tool-item-proxy-menu-item
2248 "gtk_tool_item_get_proxy_menu_item") () menu-item
2249 (tool-item tool-item)
2250 (menu-item-id string))
2252 (defbinding %tool-item-set-proxy-menu-item () nil
2253 (tool-item tool-item)
2254 (menu-item-id string)
2255 (menu-item menu-item))
2257 (defun (setf tool-item-proxy-menu-item) (menu-item menu-item-id tool-item)
2258 (%tool-item-set-proxy-menu-item menu-item-id tool-item menu-item)
2261 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
2262 (defbinding tool-item-rebuild-menu () nil
2263 (tool-item tool-item))
2268 (defbinding editable-select-region (editable &optional (start 0) end) nil
2273 (defbinding editable-get-selection-bounds (editable) nil
2278 (defbinding editable-insert-text (editable text &optional (position 0)) nil
2282 (position position :in/out))
2284 (defun editable-append-text (editable text)
2285 (editable-insert-text editable text nil))
2287 (defun editable-prepend-text (editable text)
2288 (editable-insert-text editable text 0))
2290 (defbinding editable-delete-text (editable &optional (start 0) end) nil
2295 (defbinding (editable-text "gtk_editable_get_chars")
2296 (editable &optional (start 0) end) string
2301 (defun (setf editable-text) (text editable)
2303 (editable-delete-text
2305 (editable-insert-text editable text))
2306 (editable-delete-text editable))
2309 (defbinding editable-cut-clipboard () nil
2310 (editable editable))
2312 (defbinding editable-copy-clipboard () nil
2313 (editable editable))
2315 (defbinding editable-paste-clipboard () nil
2316 (editable editable))
2318 (defbinding editable-delete-selection () nil
2319 (editable editable))
2325 (defbinding spin-button-configure () nil
2326 (spin-button spin-button)
2327 (adjustment adjustment)
2328 (climb-rate double-float)
2329 (digits unsigned-int))
2331 (defbinding spin-button-set-range () nil
2332 (spin-button spin-button)
2336 (defbinding spin-button-get-range () nil
2337 (spin-button spin-button)
2338 (min double-float :out)
2339 (max double-float :out))
2341 (defun spin-button-value-as-int (spin-button)
2342 (round (spin-button-value spin-button)))
2344 (defbinding %spin-button-spin () nil
2345 (spin-button spin-button)
2346 (direction spin-type)
2347 (increment double-float))
2349 (defun spin-button-spin (spin-button value)
2351 (real (%spin-button-spin spin-button :spin-user-defined value))
2352 (spin-type (%spin-button-spin spin-button value 0))))
2355 (defbinding spin-button-update () nil
2356 (spin-button spin-button))
2362 (defbinding ruler-set-range () nil
2364 (lower single-float)
2365 (upper single-float)
2366 (position single-float)
2367 (max-size single-float))
2369 (defbinding ruler-get-range () nil
2371 (lower single-float :out)
2372 (upper single-float :out)
2373 (position single-float :out)
2374 (max-size single-float :out))
2380 (defun range-lower (range)
2381 (adjustment-lower (range-adjustment range)))
2383 (defun range-upper (range)
2384 (adjustment-upper (range-adjustment range)))
2386 (defun (setf range-lower) (value range)
2387 (setf (adjustment-lower (range-adjustment range)) value))
2389 (defun (setf range-upper) (value range)
2390 (setf (adjustment-upper (range-adjustment range)) value))
2392 (defun range-page-increment (range)
2393 (adjustment-page-increment (range-adjustment range)))
2395 (defun range-step-increment (range)
2396 (adjustment-step-increment (range-adjustment range)))
2398 (defun (setf range-page-increment) (value range)
2399 (setf (adjustment-page-increment (range-adjustment range)) value))
2401 (defun (setf range-step-increment) (value range)
2402 (setf (adjustment-step-increment (range-adjustment range)) value))
2404 (defbinding range-set-range () nil
2406 (lower double-float)
2407 (upper double-float))
2409 (defbinding range-set-increments () nil
2412 (page double-float))
2417 (defbinding scale-get-layout-offsets () nil
2425 (defbinding progress-bar-pulse () nil
2426 (progress-bar progress-bar))
2431 (defmethod initialize-instance ((size-group size-group) &rest initargs
2432 &key widget widgets)
2433 (declare (ignore widget widgets))
2436 (initial-add size-group #'size-group-add-widget
2437 initargs :widget :widgets)))
2440 (defbinding size-group-add-widget () nil
2441 (size-group size-group)
2444 (defbinding size-group-remove-widget () nil
2445 (size-group size-group)
2451 (defbinding %stock-item-copy () pointer
2454 (defbinding %stock-item-free () nil
2457 (defbinding stock-add (stock-item) nil
2458 (stock-item stock-item)
2461 (defbinding stock-list-ids () (gslist string))
2463 (defbinding %stock-lookup () boolean
2467 (defun stock-lookup (stock-id)
2468 (with-memory (stock-item (foreign-size (find-class 'stock-item)))
2469 (when (%stock-lookup stock-id stock-item)
2470 (ensure-proxy-instance 'stock-item (%stock-item-copy stock-item)))))
2472 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
2474 (define-callback-marshal %stock-translate-callback string ((path string)))
2476 (defbinding (stock-set-translate-function "gtk_stock_set_translate_func")
2477 (domain function) nil
2479 (%stock-translate-callback callback)
2480 ((register-callback-function function) unsigned-int)
2481 (user-data-destroy-callback callback)))
2487 (defbinding tooltips-enable () nil
2488 (tooltips tooltips))
2490 (defbinding tooltips-disable () nil
2491 (tooltips tooltips))
2493 (defun (setf tooltips-enabled-p) (enable tooltips)
2495 (tooltips-enable tooltips)
2496 (tooltips-disable tooltips)))
2498 (defbinding tooltips-set-tip () nil
2502 (tip-private string))
2504 (defbinding tooltips-data-get () tooltips-data
2507 (defbinding tooltips-force-window () nil
2508 (tooltips tooltips))
2510 (defbinding tooltips-get-info-from-tip-window () boolean
2512 (tooltips tooltips :out)
2513 (current-widget widget :out))
2518 (defbinding rc-get-style () style
2521 (defbinding rc-get-style-by-paths (&key path class-path class) style
2522 (path (or null string))
2523 (class-path (or null string))
2526 (defbinding rc-parse () nil
2527 (filename pathname))
2529 (defbinding rc-parse-string () nil
2532 (defbinding %rc-reparse-all () boolean)
2534 (defbinding %rc-reparse-all-for-settings () boolean
2536 (force-load-p boolean))
2538 (defun rc-reparse-all (&optional setting force-load-p)
2540 (%rc-reparse-all-for-settings setting force-load-p)
2543 (defbinding rc-reset-styles () nil
2544 (settings settings))
2546 (defbinding rc-add-default-file () nil
2547 (filename pathname))
2549 (defbinding rc-get-default-files ()
2550 (copy-of (null-terminated-vector (copy-of string))))
2552 (defbinding rc-get-module-dir () string)
2554 (defbinding rc-get-im-module-path () string)
2556 (defbinding rc-get-im-module-file () string)
2558 (defbinding rc-get-theme-dir () string)
2563 (defbinding (settings-get "gtk_settings_get_for_screen")
2564 (&optional (screen (gdk:display-get-default-screen))) settings
2565 (screen gdk:screen))
2570 (defbinding socket-add-id () nil
2572 (id gdk:native-window))
2574 (defbinding %plug-new () pointer
2575 (id gdk:native-window))
2577 (defmethod allocate-foreign ((plug plug) &key id)
2578 (%plug-new (or id 0)))
2581 ;;;; New stuff in Gtk+ 2.10
2585 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.10.0")
2587 (define-callback-marshal %link-button-uri-callback nil (link-button (link string)))
2589 (defbinding link-button-set-uri-hook (function) pointer
2590 (%link-button-uri-callback callback)
2591 ((register-callback-function function) unsigned-int)
2592 (user-data-destroy-callback callback)))