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.67 2007/01/07 20:23:22 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))))
53 (defbinding (gtk-init "gtk_parse_args") () boolean
54 "Initializes the library without opening the display."
58 (defparameter *event-poll-interval* 10000)
60 (defun clg-init (&optional display)
61 "Initializes the system and starts the event handling"
63 (find-package "SWANK")
64 (eq (symbol-value (find-symbol "*COMMUNICATION-STYLE*" "SWANK")) :spawn))
65 (error "When running clg in Slime the communication style :spawn can not be used. See the README file and <http://common-lisp.net/project/slime/doc/html/slime_45.html> for more information."))
67 (unless (gdk:display-get-default)
68 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
70 #+sbcl(sb-int:set-floating-point-modes :traps nil)
71 #+cmu(ext:set-floating-point-modes :traps nil))
75 (error "Initialization of GTK+ failed."))
77 (gdk:display-open display)
80 (add-fd-handler (gdk:display-connection-number) :input #'main-iterate-all)
81 (setq *periodic-polling-function* #'main-iterate-all)
82 (setq *max-event-to-sec* 0)
83 (setq *max-event-to-usec* *event-poll-interval*))
84 #+(and clisp readline)
85 ;; Readline will call the event hook at most ten times per second
86 (setf readline:event-hook #'main-iterate-all)
88 ;; When running in Slime we need to hook into the Swank server
89 ;; to handle events asynchronously
90 (if (find-package "SWANK")
91 (let ((read-from-emacs (symbol-function (find-symbol "READ-FROM-EMACS" "SWANK")))
92 (stream (funcall (find-symbol "CONNECTION.SOCKET-IO" "SWANK") (symbol-value (find-symbol "*EMACS-CONNECTION*" "SWANK")))))
93 (setf (symbol-function (find-symbol "READ-FROM-EMACS" "SWANK"))
96 (case (socket:socket-status (cons stream :input) 0 *event-poll-interval*)
97 (:input (return (funcall read-from-emacs)))
98 (:eof (read-char stream))
99 (otherwise (main-iterate-all)))))))
100 #-readline(warn "Not running in Slime and Readline support is missing, so the Gtk main loop has to be invoked explicit.")))))
103 (defun clg-init-with-threading (&optional display)
104 "Initializes the system and starts the event handling"
105 (unless (gdk:display-get-default)
106 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
108 #+sbcl(sb-int:set-floating-point-modes :traps nil)
109 #+cmu(ext:set-floating-point-modes :traps nil))
112 (gdk:threads-set-lock-functions)
114 (error "Initialization of GTK+ failed."))
115 (sb-thread:make-thread
117 (gdk:display-open display)
118 (gdk:with-global-lock (main)))
119 :name "gtk event loop")))
122 ;;; Generic functions
124 (defgeneric add-to-radio-group (item1 item2))
125 (defgeneric activate-radio-widget (item))
126 (defgeneric (setf tool-item-tip-text) (tip-text tool-item))
127 (defgeneric (setf tool-item-tip-private) (tip-private tool-item))
133 (defbinding grab-add () nil
136 (defbinding grab-get-current () widget)
138 (defbinding grab-remove () nil
141 (defbinding get-default-language () (copy-of pango:language))
146 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
148 (define-callback-marshal %about-dialog-activate-link-callback nil
149 (about-dialog (link string)))
151 (defbinding about-dialog-set-email-hook (function) nil
152 (%about-dialog-activate-link-callback callback)
153 ((register-callback-function function) unsigned-int)
154 (user-data-destroy-callback callback))
156 (defbinding about-dialog-set-url-hook (function) nil
157 (%about-dialog-activate-link-callback callback)
158 ((register-callback-function function) unsigned-int)
159 (user-data-destroy-callback callback)))
164 (defbinding %accel-group-connect () nil
165 (accel-group accel-group)
167 (modifiers gdk:modifier-type)
171 (defun accel-group-connect (group accelerator function &optional flags)
172 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
173 (let ((gclosure (make-callback-closure function)))
174 (%accel-group-connect group key modifiers flags gclosure)
177 (defbinding accel-group-connect-by-path (group path function) nil
180 ((make-callback-closure function) gclosure :in/return))
182 (defbinding %accel-group-disconnect (group gclosure) boolean
186 (defbinding %accel-group-disconnect-key () boolean
189 (modifiers gdk:modifier-type))
191 (defun accel-group-disconnect (group accelerator)
192 (etypecase accelerator
193 (gclosure (%accel-group-disconnect group accelerator))
195 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
196 (%accel-group-disconnect-key group key modifiers)))))
198 (defbinding %accel-group-query () (copy-of (vector (inlined accel-group-entry) n))
199 (accel-group accel-group)
201 (modifiers gdk:modifier-type)
204 (defun accel-group-query (accel-group accelerator)
205 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
206 (%accel-group-query accel-group key modifiers)))
208 (defbinding %accel-group-activate () boolean
209 (accel-group accel-group)
210 (acceleratable gobject)
212 (modifiers gdk:modifier-type))
214 (defun accel-group-activate (accel-group acceleratable accelerator)
215 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
216 (%accel-group-activate accel-group acceleratable key modifiers)))
218 (defbinding accel-group-lock () nil
219 (accel-group accel-group))
221 (defbinding accel-group-unlock () nil
222 (accel-group accel-group))
224 (defbinding accel-group-from-accel-closure () accel-group
227 (defbinding %accel-groups-activate () boolean
230 (modifiers gdk:modifier-type))
232 (defun accel-groups-activate (object accelerator)
233 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
234 (%accel-groups-activate object key modifiers)))
236 (defbinding accel-groups-from-object () (gslist accel-groups)
239 (defbinding accelerator-valid-p (key &optional modifiers) boolean
241 (modifiers gdk:modifier-type))
243 (defbinding %accelerator-parse () nil
245 (key unsigned-int :out)
246 (modifiers gdk:modifier-type :out))
248 (defgeneric parse-accelerator (accelerator))
250 (defmethod parse-accelerator ((accelerator string))
251 (multiple-value-bind (key modifiers) (%accelerator-parse accelerator)
253 (error "Invalid accelerator: ~A" accelerator)
254 (values key modifiers))))
256 (defmethod parse-accelerator ((accelerator cons))
257 (destructuring-bind (key modifiers) accelerator
263 (gdk:keyval-from-name key)
264 (error "Invalid key name: ~A" key)))
265 (character (parse-accelerator key)))
268 (defmethod parse-accelerator ((key integer))
271 (defmethod parse-accelerator ((key character))
273 (gdk:keyval-from-name (string key))
274 (error "Invalid key name: ~A" key)))
277 (defbinding accelerator-name () string
279 (modifiers gdk:modifier-type))
281 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
282 (defbinding accelerator-get-label () string
284 (modifiers gdk:modifier-type))
286 (defbinding %accelerator-set-default-mod-mask () nil
287 (default-modifiers gdk:modifier-type))
289 (defun (setf accelerator-default-modifier-mask) (default-modifiers)
290 (%accelerator-set-default-mod-mask default-modifiers))
292 (defbinding (accelerator-default-modifier-mask "gtk_accelerator_get_default_mod_mask") () gdk:modifier-type)
297 (defbinding accel-label-get-accel-width () unsigned-int
298 (accel-label accel-label))
300 (defbinding accel-label-refetch () boolean
301 (accel-label accel-label))
307 (defbinding %accel-map-add-entry () nil
310 (modifiers gdk:modifier-type))
312 (defun accel-map-add-entry (path accelerator)
313 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
314 (%accel-map-add-entry path key modifiers)))
316 (defbinding %accel-map-lookup-entry () boolean
318 ((make-instance 'accel-key) accel-key :in/return))
320 (defun accel-map-lookup-entry (path)
321 (multiple-value-bind (found-p accel-key) (%accel-map-lookup-entry path)
324 (slot-value accel-key 'key)
325 (slot-value accel-key 'modifiers)
326 (slot-value accel-key 'flags)))))
328 (defbinding %accel-map-change-entry () boolean
331 (modifiers gdk:modifier-type)
334 (defun accel-map-change-entry (path accelerator &optional replace)
335 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
336 (%accel-map-change-entry path key modifiers replace)))
338 (defbinding accel-map-load () nil
341 (defbinding accel-map-save () nil
344 (define-callback-marshal %accel-map-foreach-callback nil
345 ((accel-path string) (key unsigned-int)
346 (modifiers gdk:modifier-type) (changed boolean)) :callback-id :first)
348 (defbinding %accel-map-foreach (callback-id) nil
349 (callback-id unsigned-int)
350 (%accel-map-foreach-callback callback))
352 (defbinding %accel-map-foreach-unfiltered (callback-id) nil
353 (callback-id unsigned-int)
354 (%accel-map-foreach-callback callback))
356 (defun accel-map-foreach (function &optional (filter-p t))
357 (with-callback-function (id function)
359 (%accel-map-foreach id)
360 (%accel-map-foreach-unfiltered id))))
362 (defbinding accel-map-add-filter () nil
365 (defbinding accel-map-get () accel-map)
367 (defbinding accel-map-lock-path () nil
370 (defbinding accel-map-unlock-path () nil
377 (defbinding accessible-connect-widget-destroyed () nil
378 (accessible accessible))
383 (defmethod initialize-instance ((adjustment adjustment) &key value)
386 ;; we need to make sure that the value is set last, otherwise it
387 ;; may be outside current limits and ignored
389 (setf (slot-value adjustment 'value) value))))
392 (defbinding adjustment-changed () nil
393 (adjustment adjustment))
395 (defbinding adjustment-value-changed () nil
396 (adjustment adjustment))
398 (defbinding adjustment-clamp-page () nil
399 (adjustment adjustment)
401 (upper single-float))
406 (defbinding alignment-set () nil
407 (alognment alignment)
408 (x-align single-float)
409 (y-align single-float)
410 (x-scale single-float)
411 (y-scale single-float))
413 (defbinding alignment-get-padding () nil
414 (alognment alignment)
415 (top unsigned-int :out)
416 (bottom unsigned-int :out)
417 (left unsigned-int :out)
418 (right unsigned-int :out))
420 (defbinding alignment-set-padding () nil
421 (alognment alignment)
423 (bottom unsigned-int)
425 (right unsigned-int))
433 (defun (setf bin-child) (child bin)
434 (when-bind (current-child (bin-child bin))
435 (container-remove bin current-child))
436 (container-add bin child)
439 (defmethod compute-signal-function ((bin bin) signal function object args)
440 (declare (ignore signal))
441 (if (eq object :child)
442 #'(lambda (&rest emission-args)
443 (apply function (bin-child bin) (nconc (rest emission-args) args)))
449 (defbinding box-pack-start () nil
454 (padding unsigned-int))
456 (defbinding box-pack-end () nil
461 (padding unsigned-int))
463 (defun box-pack (box child &key end (expand t) (fill t) (padding 0))
465 (box-pack-end box child expand fill padding)
466 (box-pack-start box child expand fill padding)))
468 (defbinding box-reorder-child () nil
473 (defbinding box-query-child-packing () nil
476 (expand boolean :out)
478 (padding unsigned-int :out)
479 (pack-type pack-type :out))
481 (defbinding box-set-child-packing () nil
486 (padding unsigned-int)
487 (pack-type pack-type))
493 (defmethod initialize-instance ((button button) &rest initargs &key stock)
495 (apply #'call-next-method button
496 :label stock :use-stock t :use-underline t initargs)
500 (defbinding button-pressed () nil
503 (defbinding button-released () nil
506 (defbinding button-clicked () nil
509 (defbinding button-enter () nil
512 (defbinding button-leave () nil
519 (defbinding calendar-select-month () int
524 (defbinding calendar-select-day () nil
528 (defbinding calendar-mark-day () int
532 (defbinding calendar-unmark-day () int
536 (defbinding calendar-clear-marks () nil
539 (defbinding calendar-get-date () nil
541 (year unsigned-int :out)
542 (month unsigned-int :out)
543 (day unsigned-int :out))
545 (defbinding calendar-freeze () nil
548 (defbinding calendar-thaw () nil
554 (defbinding check-menu-item-toggled () nil
555 (check-menu-item check-menu-item))
560 (defbinding (color-selection-is-adjusting-p
561 "gtk_color_selection_is_adjusting") () boolean
562 (colorsel color-selection))
566 ;;; Color selection dialog -- no functions
572 (defmethod initialize-instance ((combo-box combo-box) &rest initargs
573 &key model content active)
574 (remf initargs :active)
576 (apply #'call-next-method combo-box initargs)
578 (apply #'call-next-method combo-box
579 :model (make-instance 'list-store :column-types '(string))
581 (unless (typep combo-box 'combo-box-entry)
582 (let ((cell (make-instance 'cell-renderer-text)))
583 (cell-layout-pack combo-box cell :expand t)
584 (cell-layout-add-attribute combo-box cell :text 0)))))
586 (mapc #'(lambda (text)
587 (combo-box-append-text combo-box text))
590 (setf (combo-box-active combo-box) active)))
593 ;; (defmethod shared-initialize :after ((combo-box combo-box) names &key active)
595 ;; (signal-emit combo-box 'changed)))
597 (defbinding combo-box-append-text () nil
598 (combo-box combo-box)
601 (defbinding combo-box-insert-text () nil
602 (combo-box combo-box)
606 (defbinding combo-box-prepend-text () nil
607 (combo-box combo-box)
610 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
611 (defbinding combo-box-get-active-text () string
612 (combo-box combo-box))
614 (defbinding combo-box-popup () nil
615 (combo-box combo-box))
617 (defbinding combo-box-popdown () nil
618 (combo-box combo-box))
624 (defmethod initialize-instance ((combo-box-entry combo-box-entry) &key model)
627 (setf (combo-box-entry-text-column combo-box-entry) 0)))
632 (defmethod shared-initialize ((dialog dialog) names &rest initargs
634 (declare (ignore names button buttons))
637 (initial-apply-add dialog #'dialog-add-button initargs :button :buttons)))
640 (defun dialog-response-id (dialog response &optional create-p error-p)
641 "Returns a numeric response id"
642 (if (typep response 'response-type)
643 (response-type-to-int response)
644 (let ((responses (user-data dialog 'responses)))
646 ((and responses (position response responses :test #'equal)))
650 (vector-push-extend response responses)
651 (1- (length responses)))
654 (user-data dialog 'responses)
655 (make-array 1 :adjustable t :fill-pointer t
656 :initial-element response))
659 (error "Invalid response: ~A" response))))))
661 (defun dialog-find-response (dialog id)
662 "Finds a symbolic response given a numeric id"
664 (int-to-response-type id)
665 (aref (user-data dialog 'responses) id)))
668 (defmethod compute-signal-id ((dialog dialog) signal)
669 (if (dialog-response-id dialog signal)
670 (ensure-signal-id 'response dialog)
673 (defmethod compute-signal-function ((dialog dialog) signal function object args)
674 (declare (ignore function object args))
675 (let ((callback (call-next-method))
676 (id (dialog-response-id dialog signal)))
678 #'(lambda (dialog response)
679 (when (= response id)
680 (funcall callback dialog)))
683 (defbinding dialog-run () nil
686 (defbinding dialog-response (dialog response) nil
688 ((dialog-response-id dialog response nil t) int))
691 (defbinding %dialog-add-button () button
696 (defun dialog-add-button (dialog label &optional (response label)
697 &key default object after)
698 "Adds a button to the dialog."
699 (let* ((signal (if (functionp response)
702 (id (dialog-response-id dialog signal t))
703 (button (%dialog-add-button dialog label id)))
704 (when (functionp response)
705 (signal-connect dialog signal response :object object :after after))
707 (%dialog-set-default-response dialog id))
711 (defbinding %dialog-add-action-widget () nil
713 (action-widget widget)
716 (defun dialog-add-action-widget (dialog widget &optional (response widget)
717 &key default object after)
718 (let* ((signal (if (functionp response)
721 (id (dialog-response-id dialog signal t)))
722 (unless (widget-hidden-p widget)
723 (widget-show widget))
724 (%dialog-add-action-widget dialog widget id)
725 (when (functionp response)
726 (signal-connect dialog signal response :object object :after after))
728 (%dialog-set-default-response dialog id))
732 (defbinding %dialog-set-default-response () nil
736 (defun dialog-set-default-response (dialog response)
737 (%dialog-set-default-response
738 dialog (dialog-response-id dialog response nil t)))
740 (defbinding dialog-set-response-sensitive (dialog response sensitive) nil
742 ((dialog-response-id dialog response nil t) int)
745 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
746 (defbinding alternative-dialog-button-order-p (&optional screen) boolean
747 (screen (or null gdk:screen)))
749 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
750 (defbinding (dialog-set-alternative-button-order
751 "gtk_dialog_set_alternative_button_order_from_array")
752 (dialog new-order) nil
754 ((length new-order) int)
755 ((map 'vector #'(lambda (response)
756 (dialog-response-id dialog response nil t))
757 new-order) (vector int)))
760 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
762 (defbinding %dialog-get-response-for-widget () int
766 (defun dialog-get-response-for-widget (dialog widget)
767 (dialog-find-response dialog (dialog-get-response-for-widget dialog widget))))
770 (defmethod container-add ((dialog dialog) (child widget) &rest args)
771 (apply #'container-add (dialog-vbox dialog) child args))
774 (defmethod container-remove ((dialog dialog) (child widget))
775 (container-remove (dialog-vbox dialog) child))
777 (defmethod container-children ((dialog dialog))
778 (container-children (dialog-vbox dialog)))
780 (defmethod (setf container-children) (children (dialog dialog))
781 (setf (container-children (dialog-vbox dialog)) children))
786 (defbinding entry-get-layout-offsets () nil
791 (defbinding entry-layout-index-to-text-index () int
795 (defbinding entry-text-index-to-layout-index () int
802 (define-callback-marshal %entry-completion-match-callback boolean
803 (entry-completion string tree-iter))
805 (defbinding entry-completion-set-match-func (completion function) nil
806 (completion entry-completion)
807 (%entry-completion-match-callback callback)
808 ((register-callback-function function) unsigned-int)
809 (user-data-destroy-callback callback))
811 (defbinding entry-completion-complete () nil
812 (completion entry-completion))
814 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
815 (defbinding entry-completion-insert-prefix () nil
816 (completion entry-completion))
818 (defbinding entry-completion-insert-action-text () nil
819 (completion entry-completion)
823 (defbinding entry-completion-insert-action-markup () nil
824 (completion entry-completion)
828 (defbinding entry-completion-delete-action () nil
829 (completion entry-completion)
835 (defmethod initialize-instance ((file-chooser file-chooser) &rest initargs
836 &key filter filters shortcut-folder
837 shortcut-folders shortcut-folder-uti
838 shortcut-folder-uris)
839 (declare (ignore filter filters shortcut-folder shortcut-folders
840 shortcut-folder-uti shortcut-folder-uris))
843 (initial-add file-chooser #'file-chooser-add-filter
844 initargs :filer :filters)
845 (initial-add file-chooser #'file-chooser-add-shortcut-folder
846 initargs :shortcut-folder :shortcut-folders)
847 (initial-add file-chooser #'file-chooser-add-shortcut-folder-uri
848 initargs :shortcut-folder-uri :shortcut-folders-uris)))
851 (defbinding file-chooser-select-filename () boolean
852 (file-chooser file-chooser)
855 (defbinding file-chooser-unselect-filename () nil
856 (file-chooser file-chooser)
859 (defbinding file-chooser-select-all () boolean
860 (file-chooser file-chooser))
862 (defbinding file-chooser-unselect-all () boolean
863 (file-chooser file-chooser))
865 (defbinding file-chooser-get-filenames () (gslist string)
866 (file-chooser file-chooser))
868 (defbinding file-chooser-select-uri () boolean
869 (file-chooser file-chooser)
872 (defbinding file-chooser-unselect-uri () nil
873 (file-chooser file-chooser)
876 (defbinding file-chooser-get-uris () (gslist string)
877 (file-chooser file-chooser))
879 (defbinding file-chooser-add-filter () nil
880 (file-chooser file-chooser)
881 (filter file-filter))
883 (defbinding file-chooser-remove-filter () nil
884 (file-chooser file-chooser)
885 (filter file-filter))
887 (defbinding file-chooser-list-filters () (gslist file-filter)
888 (file-chooser file-chooser))
890 (defbinding file-chooser-add-shortcut-folder () boolean
891 (file-chooser file-chooser)
895 (defbinding file-chooser-remove-shortcut-folder () nil
896 (file-chooser file-chooser)
900 (defbinding file-chooser-list-shortcut-folders () (gslist string)
901 (file-chooser file-chooser))
903 (defbinding file-chooser-add-shortcut-folder-uri () boolean
904 (file-chooser file-chooser)
908 (defbinding file-chooser-remove-shortcut-folder-uri () nil
909 (file-chooser file-chooser)
913 (defbinding file-chooser-list-shortcut-folder-uris () (gslist string)
914 (file-chooser file-chooser))
919 (defmethod initialize-instance ((file-filter file-filter) &rest initargs
920 &key mime-type mime-types pattern patterns
922 (declare (ignore mime-type mime-types pattern patterns))
926 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
927 (warn "Initarg :PIXBUF-FORMATS not supportet in this version of Gtk")
928 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
929 (file-filter-add-pixbuf-formats file-filter))
930 (initial-add file-filter #'file-filter-add-mime-type
931 initargs :mime-type :mime-types)
932 (initial-add file-filter #'file-filter-add-pattern
933 initargs :pattern :patterns)))
936 (defbinding file-filter-add-mime-type () nil
940 (defbinding file-filter-add-pattern () nil
944 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
945 (defbinding file-filter-add-pixbuf-formats () nil
946 (filter file-filter))
948 (define-callback-marshal %file-filter-callback boolean (file-filter-info))
950 (defbinding file-filter-add-custom (filter needed function) nil
952 (needed file-filter-flags)
953 (%file-filter-callback callback)
954 ((register-callback-function function) unsigned-int)
955 (user-data-destroy-callback callback))
957 (defbinding file-filter-get-needed () file-filter-flags
958 (filter file-filter))
960 (defbinding file-filter-filter () boolean
962 (filter-info file-filter-info))
968 (defbinding image-set-from-file () nil
972 (defmethod (setf image-pixmap) ((data vector) (image image))
973 (multiple-value-bind (pixmap mask) (gdk:pixmap-create data)
974 (setf (image-pixmap image) pixmap)
975 (setf (image-mask image) mask)))
977 (defmethod initialize-instance ((image image) &rest initargs &key pixmap file)
979 ((typep pixmap 'vector)
980 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap)
981 (apply #'call-next-method image :pixmap pixmap :mask mask initargs)))
985 (image-set-from-file image file)))
986 ((call-next-method))))
988 (defun create-image-widget (source &optional mask)
990 (gdk:pixbuf (make-instance 'image :pixbuf source))
991 (string (make-instance 'image :stock source))
992 (pathname (make-instance 'image :file source))
993 ((or list vector) (make-instance 'image :pixmap source))
994 (gdk:pixmap (make-instance 'image :pixmap source :mask mask))))
996 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
997 (defbinding image-clear () nil
1004 (defmethod initialize-instance ((item image-menu-item) &rest initargs &key image)
1005 (if (and image (not (typep image 'widget)))
1006 (apply #'call-next-method item :image (create-image-widget image) initargs)
1007 (call-next-method)))
1010 (defmethod (setf image-menu-item-image) ((widget widget) (item image-menu-item))
1011 (setf (slot-value item 'image) widget))
1013 (defmethod (setf image-menu-item-image) (image (item image-menu-item))
1014 (setf (image-menu-item-image item) (create-image-widget image)))
1019 (defmethod shared-initialize ((label label) names &key pattern)
1020 (declare (ignore names))
1023 (setf (label-pattern label) pattern)))
1025 (defbinding label-get-layout-offsets () nil
1030 (defbinding label-select-region () nil
1035 (defbinding label-get-selection-bounds () boolean
1044 (defbinding %radio-button-get-group () pointer
1045 (radio-button radio-button))
1047 (defbinding %radio-button-set-group () nil
1048 (radio-button radio-button)
1051 (defmethod add-to-radio-group ((button1 radio-button) (button2 radio-button))
1052 "Add BUTTON1 to the group which BUTTON2 belongs to."
1053 (%radio-button-set-group button1 (%radio-button-get-group button2)))
1055 (defun %add-activate-callback (widget signal function object after)
1057 (signal-connect widget signal
1059 (when (slot-value widget 'active)
1060 (funcall function object (slot-value widget 'value))))
1061 :object object :after after)
1062 (signal-connect widget signal
1064 (when (slot-value widget 'active)
1065 (funcall function (slot-value widget 'value))))
1068 (defmethod activate-radio-widget ((button radio-button))
1069 (signal-emit button 'clicked))
1071 (defmethod add-activate-callback ((button radio-button) function &key object after)
1072 (%add-activate-callback button 'clicked function object after))
1074 (defmethod initialize-instance ((button radio-button) &key group)
1078 (add-to-radio-group button group))))
1083 (defbinding item-select () nil
1086 (defbinding item-deselect () nil
1089 (defbinding item-toggle () nil
1096 (defmethod initialize-instance ((item menu-item) &key label)
1100 (setf (menu-item-label item) label))))
1103 (defun (setf menu-item-label) (label menu-item)
1104 (make-instance 'accel-label
1105 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
1106 :use-underline (menu-item-use-underline-p menu-item)
1107 :visible t :parent menu-item)
1110 (defun menu-item-label (menu-item)
1111 (when (and (slot-boundp menu-item 'child)
1112 (typep (bin-child menu-item) 'label))
1113 (label-label (bin-child menu-item))))
1115 (defbinding menu-item-remove-submenu () nil
1116 (menu-item menu-item))
1118 (defbinding menu-item-set-accel-path () nil
1119 (menu-item menu-item)
1120 (accel-path string))
1122 (defbinding menu-item-select () nil
1123 (menu-item menu-item))
1125 (defbinding menu-item-deselect () nil
1126 (menu-item menu-item))
1128 (defbinding menu-item-activate () nil
1129 (menu-item menu-item))
1131 (defbinding menu-item-toggle-size-request () nil
1132 (menu-item menu-item)
1133 (requisition int :out))
1135 (defbinding menu-item-toggle-size-allocate () nil
1136 (menu-item menu-item)
1140 ;;; Menu tool button
1142 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1143 (defbinding menu-tool-button-set-arrow-tooltip () nil
1144 (menu-tool-button menu-tool-button)
1147 (tip-private string))
1152 (defmethod allocate-foreign ((dialog message-dialog) &key (message-type :info)
1153 (buttons :close) flags transient-parent)
1154 (%message-dialog-new transient-parent flags message-type buttons))
1157 (defmethod shared-initialize ((dialog message-dialog) names &key text
1158 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1160 (declare (ignore names))
1162 (message-dialog-set-markup dialog text))
1163 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1164 (when secondary-text
1165 (message-dialog-format-secondary-markup dialog secondary-text))
1169 (defbinding %message-dialog-new () pointer
1170 (parent (or null window))
1171 (flags dialog-flags)
1173 (buttons buttons-type)
1176 (defbinding message-dialog-set-markup () nil
1177 (message-dialog message-dialog)
1180 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1181 (defbinding message-dialog-format-secondary-text () nil
1182 (message-dialog message-dialog)
1185 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1186 (defbinding message-dialog-format-secondary-markup () nil
1187 (message-dialog message-dialog)
1194 (defbinding %radio-menu-item-get-group () pointer
1195 (radio-menu-item radio-menu-item))
1197 (defbinding %radio-menu-item-set-group () nil
1198 (radio-menu-item radio-menu-item)
1201 (defmethod activate-radio-widget ((item radio-menu-item))
1202 (menu-item-activate item))
1204 (defmethod add-to-radio-group ((item1 radio-menu-item) (item2 radio-menu-item))
1205 "Add ITEM1 to the group which ITEM2 belongs to."
1206 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
1208 (defmethod add-activate-callback ((item radio-menu-item) function &key object after)
1209 (%add-activate-callback item 'activate function object after))
1211 (defmethod initialize-instance ((item radio-menu-item) &key group)
1215 (add-to-radio-group item group))))
1219 ;;; Radio tool button
1221 (defbinding %radio-tool-button-get-group () pointer
1222 (radio-tool-button radio-tool-button))
1224 (defbinding %radio-tool-button-set-group () nil
1225 (radio-tool-button radio-tool-button)
1228 (defmethod activate-radio-widget ((button radio-tool-button))
1229 (signal-emit button 'clicked))
1231 (defmethod add-to-radio-group ((button1 radio-tool-button) (button2 radio-tool-button))
1232 "Add BUTTON1 to the group which BUTTON2 belongs to."
1233 (%radio-tool-button-set-group button1 (%radio-tool-button-get-group button2)))
1234 (defmethod add-activate-callback ((button radio-tool-button) function &key object after)
1235 (%add-activate-callback button 'clicked function object after))
1237 (defmethod initialize-instance ((button radio-tool-button) &key group)
1241 (add-to-radio-group button group))))
1247 (defbinding toggle-button-toggled () nil
1248 (toggle-button toggle-button))
1253 (defmethod initialize-instance ((window window) &rest initargs
1254 &key accel-group accel-groups)
1255 (declare (ignore accel-group accel-groups))
1258 (initial-add window #'window-add-accel-group
1259 initargs :accel-group :accel-groups)))
1261 #-debug-ref-counting
1262 (defmethod print-object ((window window) stream)
1264 (proxy-valid-p window)
1265 (slot-boundp window 'title)
1266 (not (zerop (length (window-title window)))))
1267 (print-unreadable-object (window stream :type t :identity nil)
1268 (format stream "~S at 0x~X"
1269 (window-title window) (pointer-address (foreign-location window))))
1270 (call-next-method)))
1272 (defbinding window-set-wmclass () nil
1274 (wmclass-name string)
1275 (wmclass-class string))
1277 (defbinding window-add-accel-group () nil
1279 (accel-group accel-group))
1281 (defbinding window-remove-accel-group () nil
1283 (accel-group accel-group))
1285 (defbinding window-activate-focus () int
1288 (defbinding window-activate-default () int
1291 (defbinding window-set-default-size (window width height) int
1294 ((or height -1) int))
1296 (defbinding %window-set-geometry-hints () nil
1298 (geometry gdk:geometry)
1299 (geometry-mask gdk:window-hints))
1301 (defun window-set-geometry-hints (window &key min-width min-height
1302 max-width max-height base-width base-height
1303 width-inc height-inc min-aspect max-aspect
1304 (gravity nil gravity-p) min-size max-size)
1305 (let ((geometry (make-instance 'gdk:geometry
1306 :min-width (or min-width -1)
1307 :min-height (or min-height -1)
1308 :max-width (or max-width -1)
1309 :max-height (or max-height -1)
1310 :base-width (or base-width 0)
1311 :base-height (or base-height 0)
1312 :width-inc (or width-inc 0)
1313 :height-inc (or height-inc 0)
1314 :min-aspect (or min-aspect 0)
1315 :max-aspect (or max-aspect 0)
1318 (when (or min-size min-width min-height)
1319 (push :min-size mask))
1320 (when (or max-size max-width max-height)
1321 (push :max-size mask))
1322 (when (or base-width base-height)
1323 (push :base-size mask))
1324 (when (or width-inc height-inc)
1325 (push :resize-inc mask))
1326 (when (or min-aspect max-aspect)
1327 (push :aspect mask))
1329 (push :win-gravity mask))
1330 (%window-set-geometry-hints window geometry mask)))
1332 (defbinding window-list-toplevels () (glist (copy-of window))
1333 "Returns a list of all existing toplevel windows.")
1335 (defbinding window-add-mnemonic (window key target) nil
1337 ((gdk:keyval-from-name key) unsigned-int)
1340 (defbinding window-remove-mnemonic (window key target) nil
1342 ((gdk:keyval-from-name key) unsigned-int)
1345 (defbinding window-mnemonic-activate (window key modifier) nil
1347 ((gdk:keyval-from-name key) unsigned-int)
1348 (modifier gdk:modifier-type))
1350 (defbinding window-activate-key () boolean
1352 (event gdk:key-event))
1354 (defbinding window-propagate-key-event () boolean
1356 (event gdk:key-event))
1358 #?-(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
1359 (defbinding window-present () nil
1362 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
1364 (defbinding %window-present () nil
1367 (defbinding %window-present-with-time () nil
1369 (timespamp unsigned-int))
1371 (defun window-present (window &optional timestamp)
1373 (%window-present-with-time window timestamp)
1374 (%window-present window))))
1376 (defbinding window-iconify () nil
1379 (defbinding window-deiconify () nil
1382 (defbinding window-stick () nil
1385 (defbinding window-unstick () nil
1388 (defbinding window-maximize () nil
1391 (defbinding window-unmaximize () nil
1394 (defbinding window-fullscreen () nil
1397 (defbinding window-unfullscreen () nil
1400 (defbinding window-set-keep-above () nil
1404 (defbinding window-set-keep-below () nil
1408 (defbinding window-begin-resize-drag () nil
1410 (edge gdk:window-edge)
1412 (root-x int) (root-y int)
1413 (timestamp unsigned-int))
1415 (defbinding window-begin-move-drag () nil
1417 (edge gdk:window-edge)
1419 (root-x int) (root-y int)
1420 (timestamp unsigned-int))
1422 (defbinding window-set-frame-dimensions () nil
1424 (left int) (top int) (rigth int) (bottom int))
1426 (defbinding %window-get-default-size () nil
1431 (defun window-get-default-size (window)
1432 (multiple-value-bind (width height) (%window-get-default-size window)
1433 (values (unless (= width -1) width) (unless (= height -1) height))))
1435 (defbinding window-get-frame-dimensions () nil
1437 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
1439 (defbinding %window-get-icon-list () (glist (copy-of gdk:pixbuf))
1442 (defbinding window-get-position () nil
1447 (defbinding window-get-size () nil
1452 (defbinding window-move () nil
1457 (defbinding window-parse-geometry () boolean
1461 (defbinding window-reshow-with-initial-size () nil
1464 (defbinding window-resize () nil
1469 (defbinding (window-default-icon-list "gtk_window_get_default_icon_list")
1470 () (glist gdk:pixbuf))
1472 (defun window-default-icon ()
1473 (first (window-default-icon-list)))
1475 (defbinding %window-set-default-icon-list () nil
1476 (icons (glist gdk:pixbuf)))
1478 (defun (setf window-default-icon-list) (icons)
1479 (%window-set-default-icon-list icons)
1482 (defbinding %window-set-default-icon () nil
1483 (icons (glist gdk:pixbuf)))
1485 (defmethod (setf window-default-icon) ((icon gdk:pixbuf))
1486 (%window-set-default-icon icon)
1489 (defmethod (setf window-group) ((group window-group) (window window))
1490 (window-group-add-window group window)
1493 (defbinding %window-set-default-icon-from-file () boolean
1497 (defmethod (setf window-default-icon) ((icon-file pathname))
1498 (%window-set-default-icon-from-file icon-file)
1501 (defbinding %window-set-icon-from-file () boolean
1506 (defmethod (setf window-icon) ((icon-file pathname) (window window))
1507 (%window-set-icon-from-file window icon-file)
1510 (defbinding window-set-auto-startup-notification () nil
1513 (defbinding decorated-window-init () nil
1516 (defbinding decorated-window-calculate-frame-size () nil
1519 (defbinding decorated-window-set-title () nil
1523 (defbinding decorated-window-move-resize-window () nil
1533 (defmethod initialize-instance ((window-group window-group) &rest initargs
1534 &key window windows)
1535 (declare (ignore window windows))
1538 (initial-add window-group #'window-group-add-window
1539 initargs :window :windows)))
1542 (defbinding window-group-add-window () nil
1543 (window-group window-group)
1546 (defbinding window-group-remove-window () nil
1547 (window-group window-group)
1553 (defun (setf scrolled-window-scrollbar-policy) (policy window)
1554 (setf (scrolled-window-hscrollbar-policy window) policy)
1555 (setf (scrolled-window-vscrollbar-policy window) policy))
1557 (defbinding scrolled-window-add-with-viewport () nil
1558 (scrolled-window scrolled-window)
1561 (defmethod shared-initialize ((window scrolled-window) names &key policy)
1562 (declare (ignore names))
1564 (setf (slot-value window 'hscrollbar-policy) policy)
1565 (setf (slot-value window 'vscrollbar-policy) policy))
1571 (defbinding statusbar-get-context-id () unsigned-int
1572 (statusbar statusbar)
1573 (context-description string))
1575 (defbinding statusbar-push () unsigned-int
1576 (statusbar statusbar)
1577 (context-id unsigned-int)
1580 (defbinding statusbar-pop () nil
1581 (statusbar statusbar)
1582 (context-id unsigned-int))
1584 (defbinding statusbar-remove () nil
1585 (statusbar statusbar)
1586 (context-id unsigned-int)
1587 (message-id unsigned-int))
1593 (defbinding fixed-put () nil
1598 (defbinding fixed-move () nil
1607 (defun %ensure-notebook-position (notebook page)
1610 (widget (notebook-page-num notebook page t))))
1612 (defun %ensure-notebook-child (notebook position)
1615 (t (notebook-get-nth-page notebook position))))
1617 (defbinding (notebook-insert "gtk_notebook_insert_page_menu")
1618 (notebook position child &optional tab-label menu-label) nil
1621 ((if (stringp tab-label)
1622 (make-instance 'label :label tab-label)
1623 tab-label) (or null widget))
1624 ((if (stringp menu-label)
1625 (make-instance 'label :label menu-label)
1626 menu-label) (or null widget))
1627 ((%ensure-notebook-position notebook position) position))
1629 (defun notebook-append (notebook child &optional tab-label menu-label)
1630 (notebook-insert notebook :last child tab-label menu-label))
1632 (defun notebook-prepend (notebook child &optional tab-label menu-label)
1633 (notebook-insert notebook :first child tab-label menu-label))
1635 (defbinding notebook-remove-page (notebook page) nil
1637 ((%ensure-notebook-position notebook page) position))
1639 (defbinding %notebook-page-num () int
1643 (defun notebook-page-num (notebook child &optional error-p)
1644 (let ((page-num (%notebook-page-num notebook child)))
1647 (error "~A is not a page in ~A" child notebook))
1650 (defbinding notebook-next-page () nil
1651 (notebook notebook))
1653 (defbinding notebook-prev-page () nil
1654 (notebook notebook))
1656 (defbinding notebook-reorder-child (notebook child position) nil
1659 ((%ensure-notebook-position notebook position) int))
1661 (defbinding notebook-popup-enable () nil
1662 (notebook notebook))
1664 (defbinding notebook-popup-disable () nil
1665 (notebook notebook))
1667 (defbinding notebook-get-nth-page () widget
1671 (defun %notebook-current-page (notebook)
1672 (when (slot-boundp notebook 'current-page-num)
1673 (notebook-get-nth-page notebook (notebook-current-page-num notebook))))
1675 (defun (setf notebook-current-page) (page notebook)
1676 (setf (notebook-current-page-num notebook) (notebook-page-num notebook page)))
1678 (defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1679 (notebook page) widget
1681 ((%ensure-notebook-child notebook page) widget))
1683 (defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
1684 (notebook page) (copy-of string)
1686 ((%ensure-notebook-child notebook page) widget))
1688 (defbinding %notebook-set-tab-label () nil
1693 (defun (setf notebook-tab-label) (tab-label notebook page)
1694 (let ((widget (if (stringp tab-label)
1695 (make-instance 'label :label tab-label)
1697 (%notebook-set-tab-label notebook (%ensure-notebook-child notebook page) widget)
1701 (defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1702 (notebook page) widget
1704 ((%ensure-notebook-child notebook page) widget))
1706 (defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
1707 (notebook page) (copy-of string)
1709 ((%ensure-notebook-child notebook page) widget))
1711 (defbinding %notebook-set-menu-label () nil
1714 (menu-label widget))
1716 (defun (setf notebook-menu-label) (menu-label notebook page)
1717 (let ((widget (if (stringp menu-label)
1718 (make-instance 'label :label menu-label)
1720 (%notebook-set-menu-label notebook (%ensure-notebook-child notebook page) widget)
1724 (defbinding notebook-query-tab-label-packing (notebook page) nil
1726 ((%ensure-notebook-child notebook page) widget)
1727 (expand boolean :out)
1729 (pack-type pack-type :out))
1731 (defbinding notebook-set-tab-label-packing
1732 (notebook page expand fill pack-type) nil
1734 ((%ensure-notebook-child notebook page) widget)
1737 (pack-type pack-type))
1743 (defbinding paned-pack1 () nil
1749 (defbinding paned-pack2 () nil
1758 (defbinding layout-put () nil
1764 (defbinding layout-move () nil
1770 (defbinding layout-set-size () nil
1772 (width unsigned-int)
1773 (height unsigned-int))
1775 (defbinding layout-get-size () nil
1777 (width unsigned-int :out)
1778 (height unsigned-int :out))
1783 (defbinding menu-shell-insert (menu-shell menu-item position) nil
1784 (menu-shell menu-shell)
1785 (menu-item menu-item)
1791 (defun menu-shell-append (menu-shell menu-item)
1792 (menu-shell-insert menu-shell menu-item :last))
1794 (defun menu-shell-prepend (menu-shell menu-item)
1795 (menu-shell-insert menu-shell menu-item :fisrt))
1797 (defbinding menu-shell-deactivate () nil
1798 (menu-shell menu-shell))
1800 (defbinding menu-shell-select-item () nil
1801 (menu-shell menu-shell)
1802 (menu-item menu-item))
1804 (defbinding menu-shell-select-first () nil
1805 (menu-shell menu-shell)
1806 (search-sensitive boolean))
1808 (defbinding menu-shell-deselect () nil
1809 (menu-shell menu-shell))
1811 (defbinding menu-shell-activate-item () nil
1812 (menu-shell menu-shell)
1813 (menu-item menu-item)
1814 (fore-deactivate boolean))
1816 (defbinding menu-shell-cancel () nil
1817 (menu-shell menu-shell))
1822 (defun %menu-position (menu child)
1825 (keyword (case child
1828 (t (error "Invalid position keyword: ~A" child))))
1829 (widget (menu-child-position menu child))))
1832 (defbinding menu-reorder-child (menu menu-item position) nil
1834 (menu-item menu-item)
1835 ((%menu-position menu position) int))
1837 (defbinding menu-attach () nil
1839 (menu-item menu-item)
1840 (left-attach unsigned-int)
1841 (right-attach unsigned-int)
1842 (top-attach unsigned-int)
1843 (bottom-attach unsigned-int))
1845 (define-callback-marshal %menu-position-callback nil
1846 (menu (x int) (y int) (push-in boolean)))
1848 (defbinding %menu-popup () nil
1850 (parent-menu-shell (or null menu-shell))
1851 (parent-menu-item (or null menu-item))
1852 (callback (or null callback))
1853 (callback-id unsigned-int)
1854 (button unsigned-int)
1855 (activate-time (unsigned 32)))
1857 (defun menu-popup (menu button activate-time &key callback parent-menu-shell
1860 (with-callback-function (id callback)
1862 menu parent-menu-shell parent-menu-item
1863 %menu-position-callback id button activate-time))
1865 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
1867 (defbinding menu-set-accel-path () nil
1869 (accel-path string))
1871 (defbinding menu-reposition () nil
1874 (defbinding menu-popdown () nil
1877 (defun menu-child-position (menu child)
1878 (position child (container-children menu)))
1880 (defun menu-active-num (menu)
1881 (menu-child-position menu (menu-active menu)))
1883 (defbinding %menu-set-active () nil
1885 (index unsigned-int))
1887 (defun (setf menu-active) (menu child)
1888 (%menu-set-active menu (%menu-position menu child))
1891 (define-callback %menu-detach-callback nil ((widget widget) (menu menu))
1892 (funcall (user-data menu 'detach-func) widget menu))
1894 (defbinding %menu-attach-to-widget (menu widget) nil
1897 (%menu-detach-callback callback))
1899 (defun menu-attach-to-widget (menu widget function)
1900 (setf (user-data menu 'detach-func) function)
1901 (%menu-attach-to-widget menu widget))
1903 (defbinding menu-detach () nil
1906 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
1907 (defbinding menu-get-for-attach-widget () (copy-of (glist widget))
1910 (defbinding menu-set-monitor () nil
1917 (defbinding table-resize () nil
1920 (columns unsigned-int))
1922 (defbinding table-attach (table child left right top bottom
1923 &key options x-options y-options
1924 (x-padding 0) (y-padding 0)) nil
1928 (right unsigned-int)
1930 (bottom unsigned-int)
1931 ((append (mklist options) (mklist x-options)) attach-options)
1932 ((append (mklist options) (mklist y-options)) attach-options)
1933 (x-padding unsigned-int)
1934 (y-padding unsigned-int))
1937 (defbinding %table-set-row-spacing () nil
1940 (spacing unsigned-int))
1942 (defbinding %table-set-row-spacings () nil
1944 (spacing unsigned-int))
1946 (defun (setf table-row-spacing) (spacing table &optional row)
1948 (%table-set-row-spacing table row spacing)
1949 (%table-set-row-spacings table spacing))
1952 (defbinding %table-get-row-spacing () unsigned-int
1956 (defbinding %table-get-default-row-spacing () unsigned-int
1959 (defun table-row-spacing (table &optional row)
1961 (%table-get-row-spacing table row)
1962 (%table-get-default-row-spacing table)))
1965 (defbinding %table-set-col-spacing () nil
1968 (spacing unsigned-int))
1970 (defbinding %table-set-col-spacings () nil
1972 (spacing unsigned-int))
1974 (defun (setf table-col-spacing) (spacing table &optional col)
1976 (%table-set-col-spacing table col spacing)
1977 (%table-set-col-spacings table spacing))
1980 (defbinding %table-get-col-spacing () unsigned-int
1984 (defbinding %table-get-default-col-spacing () unsigned-int
1987 (defun table-col-spacing (table &optional col)
1989 (%table-get-col-spacing table col)
1990 (%table-get-default-col-spacing table)))
1996 (defmethod initialize-instance ((toolbar toolbar) &rest initargs &key tooltips)
1998 (apply #'call-next-method toolbar
1999 :tooltips (make-instance 'tooltips) initargs)
2000 (call-next-method)))
2002 (defbinding %toolbar-insert () nil
2004 (tool-item tool-item)
2005 (position position))
2007 (defun toolbar-insert (toolbar tool-item &optional (position :end))
2008 (%toolbar-insert toolbar tool-item position)
2009 (%tool-item-update-tooltips tool-item))
2011 (defbinding toolbar-get-item-index () int
2015 (defbinding toolbar-get-nth-item () tool-item
2019 (defbinding toolbar-get-drop-index () int
2023 (defbinding toolbar-set-drop-highlight-item () nil
2025 (tool-item tool-item)
2031 (defmethod initialize-instance ((button tool-button) &rest initargs &key icon)
2032 (if (and icon (not (typep icon 'widget)))
2033 (apply #'call-next-method button :icon (create-image-widget icon) initargs)
2034 (call-next-method)))
2039 (defbinding tool-item-set-tooltip () nil
2040 (tool-item tool-item)
2043 (tip-private string))
2046 (defun %tool-item-update-tooltips (tool-item)
2048 (slot-boundp tool-item 'parent)
2050 (user-data-p tool-item 'tip-text)
2051 (user-data-p tool-item 'tip-private)))
2052 (tool-item-set-tooltip
2053 tool-item (toolbar-tooltips (widget-parent tool-item))
2054 (or (user-data tool-item 'tip-text) "")
2055 (or (user-data tool-item 'tip-private) ""))))
2057 (defmethod (setf tool-item-tip-text) ((tip-text string) (tool-item tool-item))
2058 (setf (user-data tool-item 'tip-text) tip-text)
2059 (%tool-item-update-tooltips tool-item)
2062 (defmethod (setf tool-item-tip-private) ((tip-private string) (tool-item tool-item))
2063 (setf (user-data tool-item 'tip-private) tip-private)
2064 (%tool-item-update-tooltips tool-item)
2067 (defmethod container-add ((toolbar toolbar) (tool-item tool-item) &rest args)
2068 (declare (ignore args))
2071 (%tool-item-update-tooltips tool-item)))
2074 (defbinding tool-item-retrieve-proxy-menu-item () widget
2075 (tool-item tool-item))
2077 (defbinding (tool-item-proxy-menu-item
2078 "gtk_tool_item_get_proxy_menu_item") () menu-item
2079 (tool-item tool-item)
2080 (menu-item-id string))
2082 (defbinding %tool-item-set-proxy-menu-item () nil
2083 (tool-item tool-item)
2084 (menu-item-id string)
2085 (menu-item menu-item))
2087 (defun (setf tool-item-proxy-menu-item) (menu-item menu-item-id tool-item)
2088 (%tool-item-set-proxy-menu-item menu-item-id tool-item menu-item)
2091 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.6.0")
2092 (defbinding tool-item-rebuild-menu () nil
2093 (tool-item tool-item))
2098 (defbinding editable-select-region (editable &optional (start 0) end) nil
2103 (defbinding editable-get-selection-bounds (editable) nil
2108 (defbinding editable-insert-text (editable text &optional (position 0)) nil
2112 (position position :in/out))
2114 (defun editable-append-text (editable text)
2115 (editable-insert-text editable text nil))
2117 (defun editable-prepend-text (editable text)
2118 (editable-insert-text editable text 0))
2120 (defbinding editable-delete-text (editable &optional (start 0) end) nil
2125 (defbinding (editable-text "gtk_editable_get_chars")
2126 (editable &optional (start 0) end) string
2131 (defun (setf editable-text) (text editable)
2133 (editable-delete-text
2135 (editable-insert-text editable text))
2136 (editable-delete-text editable))
2139 (defbinding editable-cut-clipboard () nil
2140 (editable editable))
2142 (defbinding editable-copy-clipboard () nil
2143 (editable editable))
2145 (defbinding editable-paste-clipboard () nil
2146 (editable editable))
2148 (defbinding editable-delete-selection () nil
2149 (editable editable))
2155 (defbinding spin-button-configure () nil
2156 (spin-button spin-button)
2157 (adjustment adjustment)
2158 (climb-rate double-float)
2159 (digits unsigned-int))
2161 (defbinding spin-button-set-range () nil
2162 (spin-button spin-button)
2166 (defbinding spin-button-get-range () nil
2167 (spin-button spin-button)
2168 (min double-float :out)
2169 (max double-float :out))
2171 (defun spin-button-value-as-int (spin-button)
2172 (round (spin-button-value spin-button)))
2174 (defbinding %spin-button-spin () nil
2175 (spin-button spin-button)
2176 (direction spin-type)
2177 (increment double-float))
2179 (defun spin-button-spin (spin-button value)
2181 (real (%spin-button-spin spin-button :spin-user-defined value))
2182 (spin-type (%spin-button-spin spin-button value 0))))
2185 (defbinding spin-button-update () nil
2186 (spin-button spin-button))
2192 (defbinding ruler-set-range () nil
2194 (lower single-float)
2195 (upper single-float)
2196 (position single-float)
2197 (max-size single-float))
2199 (defbinding ruler-get-range () nil
2201 (lower single-float :out)
2202 (upper single-float :out)
2203 (position single-float :out)
2204 (max-size single-float :out))
2210 (defun range-lower (range)
2211 (adjustment-lower (range-adjustment range)))
2213 (defun range-upper (range)
2214 (adjustment-upper (range-adjustment range)))
2216 (defun (setf range-lower) (value range)
2217 (setf (adjustment-lower (range-adjustment range)) value))
2219 (defun (setf range-upper) (value range)
2220 (setf (adjustment-upper (range-adjustment range)) value))
2222 (defun range-page-increment (range)
2223 (adjustment-page-increment (range-adjustment range)))
2225 (defun range-step-increment (range)
2226 (adjustment-step-increment (range-adjustment range)))
2228 (defun (setf range-page-increment) (value range)
2229 (setf (adjustment-page-increment (range-adjustment range)) value))
2231 (defun (setf range-step-increment) (value range)
2232 (setf (adjustment-step-increment (range-adjustment range)) value))
2234 (defbinding range-set-range () nil
2236 (lower double-float)
2237 (upper double-float))
2239 (defbinding range-set-increments () nil
2242 (page double-float))
2247 (defbinding scale-get-layout-offsets () nil
2255 (defbinding progress-bar-pulse () nil
2256 (progress-bar progress-bar))
2261 (defmethod initialize-instance ((size-group size-group) &rest initargs
2262 &key widget widgets)
2263 (declare (ignore widget widgets))
2266 (initial-add size-group #'size-group-add-widget
2267 initargs :widget :widgets)))
2270 (defbinding size-group-add-widget () nil
2271 (size-group size-group)
2274 (defbinding size-group-remove-widget () nil
2275 (size-group size-group)
2281 (defbinding %stock-item-copy () pointer
2284 (defbinding %stock-item-free () nil
2287 (defbinding stock-add (stock-item) nil
2288 (stock-item stock-item)
2291 (defbinding stock-list-ids () (gslist string))
2293 (defbinding %stock-lookup () boolean
2297 (defun stock-lookup (stock-id)
2298 (with-memory (stock-item (foreign-size (find-class 'stock-item)))
2299 (when (%stock-lookup stock-id stock-item)
2300 (ensure-proxy-instance 'stock-item (%stock-item-copy stock-item)))))
2302 #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0")
2304 (define-callback-marshal %stock-translate-callback string ((path string)))
2306 (defbinding (stock-set-translate-function "gtk_stock_set_translate_func")
2307 (domain function) nil
2309 (%stock-translate-callback callback)
2310 ((register-callback-function function) unsigned-int)
2311 (user-data-destroy-callback callback)))
2317 (defbinding tooltips-enable () nil
2318 (tooltips tooltips))
2320 (defbinding tooltips-disable () nil
2321 (tooltips tooltips))
2323 (defun (setf tooltips-enabled-p) (enable tooltips)
2325 (tooltips-enable tooltips)
2326 (tooltips-disable tooltips)))
2328 (defbinding tooltips-set-tip () nil
2332 (tip-private string))
2334 (defbinding tooltips-data-get () tooltips-data
2337 (defbinding tooltips-force-window () nil
2338 (tooltips tooltips))
2340 (defbinding tooltips-get-info-from-tip-window () boolean
2342 (tooltips tooltips :out)
2343 (current-widget widget :out))
2348 (defbinding rc-get-style () style
2351 (defbinding rc-get-style-by-paths (&key path class-path class) style
2352 (path (or null string))
2353 (class-path (or null string))
2356 (defbinding rc-parse () nil
2357 (filename pathname))
2359 (defbinding rc-parse-string () nil
2362 (defbinding %rc-reparse-all () boolean)
2364 (defbinding %rc-reparse-all-for-settings () boolean
2366 (force-load-p boolean))
2368 (defun rc-reparse-all (&optional setting force-load-p)
2370 (%rc-reparse-all-for-settings setting force-load-p)
2373 (defbinding rc-reset-styles () nil
2374 (settings settings))
2376 (defbinding rc-add-default-file () nil
2377 (filename pathname))
2379 (defbinding rc-get-default-files ()
2380 (copy-of (null-terminated-vector (copy-of string))))
2382 (defbinding rc-get-module-dir () string)
2384 (defbinding rc-get-im-module-path () string)
2386 (defbinding rc-get-im-module-file () string)
2388 (defbinding rc-get-theme-dir () string)
2393 (defbinding (settings-get "gtk_settings_get_for_screen")
2394 (&optional (screen (gdk:display-get-default-screen))) settings
2395 (screen gdk:screen))
2400 (defbinding socket-add-id () nil
2402 (id gdk:native-window))
2404 (defbinding %plug-new () pointer
2405 (id gdk:native-window))
2407 (defmethod allocate-foreign ((plug plug) &key id)
2408 (%plug-new (or id 0)))