1 ;; Common Lisp bindings for GTK+ v2.x
2 ;; Copyright 1999-2005 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.46 2005/10/21 12:32:29 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 (defun clg-init (&optional display)
59 "Initializes the system and starts the event handling"
60 (unless (gdk:display-get-default)
63 (error "Initialization of GTK+ failed."))
65 (gdk:display-open display)
66 (add-fd-handler (gdk:display-connection-number) :input #'main-iterate-all)
67 (setq *periodic-polling-function* #'main-iterate-all)
68 (setq *max-event-to-sec* 0)
69 (setq *max-event-to-usec* 1000))))
74 (defbinding grab-add () nil
77 (defbinding grab-get-current () widget)
79 (defbinding grab-remove () nil
82 (defbinding get-default-language () (copy-of pango:language))
89 (def-callback-marshal %about-dialog-activate-link-func
90 (nil (dialog about-dialog) (link (copy-of string))))
92 (defbinding about-dialog-set-email-hook (function) nil
93 ((callback %about-dialog-activate-link-func) pointer)
94 ((register-callback-function function) unsigned-int)
95 ((callback user-data-destroy-func) pointer))
97 (defbinding about-dialog-set-url-hook (function) nil
98 ((callback %about-dialog-activate-link-func) pointer)
99 ((register-callback-function function) unsigned-int)
100 ((callback user-data-destroy-func) pointer)))
105 (defbinding %accel-group-connect () nil
106 (accel-group accel-group)
108 (modifiers gdk:modifier-type)
112 (defun accel-group-connect (group accelerator function &optional flags)
113 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
114 (let ((gclosure (make-callback-closure function)))
115 (%accel-group-connect group key modifiers flags gclosure)
118 (defbinding accel-group-connect-by-path (group path function) nil
121 ((make-callback-closure function) gclosure :return))
123 (defbinding %accel-group-disconnect (group gclosure) boolean
127 (defbinding %accel-group-disconnect-key () boolean
130 (modifiers gdk:modifier-type))
132 (defun accel-group-disconnect (group accelerator)
133 (etypecase accelerator
134 (gclosure (%accel-group-disconnect group accelerator))
136 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
137 (%accel-group-disconnect-key group key modifiers)))))
139 (defbinding %accel-group-query () (copy-of (vector (inlined accel-group-entry) n))
140 (accel-group accel-group)
142 (modifiers gdk:modifier-type)
145 (defun accel-group-query (accel-group accelerator)
146 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
147 (%accel-group-query accel-group key modifiers)))
149 (defbinding %accel-group-activate () boolean
150 (accel-group accel-group)
151 (acceleratable gobject)
153 (modifiers gdk:modifier-type))
155 (defun accel-group-activate (accel-group acceleratable accelerator)
156 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
157 (%accel-group-activate accel-group acceleratable key modifiers)))
159 (defbinding accel-group-lock () nil
160 (accel-group accel-group))
162 (defbinding accel-group-unlock () nil
163 (accel-group accel-group))
165 (defbinding accel-group-from-accel-closure () accel-group
168 (defbinding %accel-groups-activate () boolean
171 (modifiers gdk:modifier-type))
173 (defun accel-groups-activate (object accelerator)
174 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
175 (%accel-groups-activate object key modifiers)))
177 (defbinding accel-groups-from-object () (gslist accel-groups)
180 (defbinding accelerator-valid-p (key &optional modifiers) boolean
182 (modifiers gdk:modifier-type))
184 (defbinding %accelerator-parse () nil
186 (key unsigned-int :out)
187 (modifiers gdk:modifier-type :out))
189 (defgeneric parse-accelerator (accelerator))
191 (defmethod parse-accelerator ((accelerator string))
192 (multiple-value-bind (key modifiers) (%accelerator-parse accelerator)
194 (error "Invalid accelerator: ~A" accelerator)
195 (values key modifiers))))
197 (defmethod parse-accelerator ((accelerator cons))
198 (destructuring-bind (key modifiers) accelerator
204 (gdk:keyval-from-name key)
205 (error "Invalid key name: ~A" key)))
206 (character (parse-accelerator key)))
209 (defmethod parse-accelerator ((key integer))
212 (defmethod parse-accelerator ((key character))
214 (gdk:keyval-from-name (string key))
215 (error "Invalid key name: ~A" key)))
218 (defbinding accelerator-name () string
220 (modifiers gdk:modifier-type))
223 (defbinding accelerator-get-label () string
225 (modifiers gdk:modifier-type))
227 (defbinding %accelerator-set-default-mod-mask () nil
228 (default-modifiers gdk:modifier-type))
230 (defun (setf accelerator-default-modifier-mask) (default-modifiers)
231 (%accelerator-set-default-mod-mask default-modifiers))
233 (defbinding (accelerator-default-modifier-mask "gtk_accelerator_get_default_mod_mask") () gdk:modifier-type)
238 (defbinding accel-label-get-accel-width () unsigned-int
239 (accel-label accel-label))
241 (defbinding accel-label-refetch () boolean
242 (accel-label accel-label))
248 (defbinding (accel-map-init "_gtk_accel_map_init") () nil)
250 (defbinding %accel-map-add-entry () nil
253 (modifiers gdk:modifier-type))
255 (defun accel-map-add-entry (path accelerator)
256 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
257 (%accel-map-add-entry path key modifiers)))
259 (defbinding %accel-map-lookup-entry () boolean
261 ((make-instance 'accel-key) accel-key :return))
263 (defun accel-map-lookup-entry (path)
264 (multiple-value-bind (found-p accel-key) (%accel-map-lookup-entry path)
267 (slot-value accel-key 'key)
268 (slot-value accel-key 'modifiers)
269 (slot-value accel-key 'flags)))))
271 (defbinding %accel-map-change-entry () boolean
274 (modifiers gdk:modifier-type)
277 (defun accel-map-change-entry (path accelerator &optional replace)
278 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
279 (%accel-map-change-entry path key modifiers replace)))
281 (defbinding accel-map-load () nil
284 (defbinding accel-map-save () nil
287 (defcallback %accel-map-foreach-func
289 (callback-id unsigned-int) (accel-path (copy-of string))
290 (key unsigned-int) (modifiers gdk:modifier-type) (changed boolean))
291 (invoke-callback callback-id nil accel-path key modifiers changed))
293 (defbinding %accel-map-foreach (callback-id) nil
294 (callback-id unsigned-int)
295 (%accel-map-foreach-func callback))
297 (defbinding %accel-map-foreach-unfiltered (callback-id) nil
298 (callback-id unsigned-int)
299 (%accel-map-foreach-func callback))
301 (defun accel-map-foreach (function &optional (filter-p t))
302 (with-callback-function (id function)
304 (%accel-map-foreach id)
305 (%accel-map-foreach-unfiltered id))))
307 (defbinding accel-map-add-filter () nil
310 (defbinding accel-map-get () accel-map)
312 (defbinding accel-map-lock-path () nil
315 (defbinding accel-map-unlock-path () nil
322 (defbinding accessible-connect-widget-destroyed () nil
323 (accessible accessible))
328 (defmethod initialize-instance ((adjustment adjustment) &key value)
331 ;; we need to make sure that the value is set last, otherwise it
332 ;; may be outside current limits and ignored
334 (setf (slot-value adjustment 'value) value))))
337 (defbinding adjustment-changed () nil
338 (adjustment adjustment))
340 (defbinding adjustment-value-changed () nil
341 (adjustment adjustment))
343 (defbinding adjustment-clamp-page () nil
344 (adjustment adjustment)
346 (upper single-float))
351 (defbinding alignment-set () nil
352 (alognment alignment)
353 (x-align single-float)
354 (y-align single-float)
355 (x-scale single-float)
356 (y-scale single-float))
358 (defbinding alignment-get-padding () nil
359 (alognment alignment)
360 (top unsigned-int :out)
361 (bottom unsigned-int :out)
362 (left unsigned-int :out)
363 (right unsigned-int :out))
365 (defbinding alignment-set-padding () nil
366 (alognment alignment)
368 (bottom unsigned-int)
370 (right unsigned-int))
378 (defun (setf bin-child) (child bin)
379 (when-bind (current-child (bin-child bin))
380 (container-remove bin current-child))
381 (container-add bin child)
384 (defmethod compute-signal-function ((bin bin) signal function object)
385 (declare (ignore signal))
386 (if (eq object :child)
387 #'(lambda (&rest args)
388 (apply function (bin-child bin) (rest args)))
394 (defbinding box-pack-start () nil
399 (padding unsigned-int))
401 (defbinding box-pack-end () nil
406 (padding unsigned-int))
408 (defun box-pack (box child &key end (expand t) (fill t) (padding 0))
410 (box-pack-end box child expand fill padding)
411 (box-pack-start box child expand fill padding)))
413 (defbinding box-reorder-child () nil
418 (defbinding box-query-child-packing () nil
421 (expand boolean :out)
423 (padding unsigned-int :out)
424 (pack-type pack-type :out))
426 (defbinding box-set-child-packing () nil
431 (padding unsigned-int)
432 (pack-type pack-type))
438 (defmethod initialize-instance ((button button) &rest initargs &key stock)
440 (apply #'call-next-method button :label stock :use-stock t initargs)
444 (defbinding button-pressed () nil
447 (defbinding button-released () nil
450 (defbinding button-clicked () nil
453 (defbinding button-enter () nil
456 (defbinding button-leave () nil
463 (defbinding calendar-select-month () int
468 (defbinding calendar-select-day () nil
472 (defbinding calendar-mark-day () int
476 (defbinding calendar-unmark-day () int
480 (defbinding calendar-clear-marks () nil
483 (defbinding calendar-get-date () nil
485 (year unsigned-int :out)
486 (month unsigned-int :out)
487 (day unsigned-int :out))
489 (defbinding calendar-freeze () nil
492 (defbinding calendar-thaw () nil
498 (defbinding check-menu-item-toggled () nil
499 (check-menu-item check-menu-item))
504 (defbinding (color-selection-is-adjusting-p
505 "gtk_color_selection_is_adjusting") () boolean
506 (colorsel color-selection))
510 ;;; Color selection dialog -- no functions
516 (defmethod initialize-instance ((combo-box combo-box) &rest initargs
517 &key model content active)
518 (remf initargs :active)
520 (apply #'call-next-method combo-box initargs)
522 (apply #'call-next-method combo-box
523 :model (make-instance 'list-store :column-types '(string))
525 (unless (typep combo-box 'combo-box-entry)
526 (let ((cell (make-instance 'cell-renderer-text)))
527 (cell-layout-pack combo-box cell :expand t)
528 (cell-layout-add-attribute combo-box cell :text 0)))))
530 (mapc #'(lambda (text)
531 (combo-box-append-text combo-box text))
534 (setf (combo-box-active combo-box) active)))
537 ;; (defmethod shared-initialize :after ((combo-box combo-box) names &key active)
539 ;; (signal-emit combo-box 'changed)))
541 (defbinding combo-box-append-text () nil
542 (combo-box combo-box)
545 (defbinding combo-box-insert-text () nil
546 (combo-box combo-box)
550 (defbinding combo-box-prepend-text () nil
551 (combo-box combo-box)
555 (defbinding combo-box-get-active-text () string
556 (combo-box combo-box))
558 (defbinding combo-box-popup () nil
559 (combo-box combo-box))
561 (defbinding combo-box-popdown () nil
562 (combo-box combo-box))
568 (defmethod initialize-instance ((combo-box-entry combo-box-entry) &key model)
571 (setf (combo-box-entry-text-column combo-box-entry) 0)))
576 (defmethod shared-initialize ((dialog dialog) names &rest initargs
578 (declare (ignore button buttons))
581 (initial-apply-add dialog #'dialog-add-button initargs :button :buttons)))
584 (defun dialog-response-id (dialog response &optional create-p error-p)
585 "Returns a numeric response id"
586 (if (typep response 'response-type)
587 (response-type-to-int response)
588 (let ((responses (object-data dialog 'responses)))
590 ((and responses (position response responses :test #'equal)))
594 (vector-push-extend response responses)
595 (1- (length responses)))
598 (object-data dialog 'responses)
599 (make-array 1 :adjustable t :fill-pointer t
600 :initial-element response))
603 (error "Invalid response: ~A" response))))))
605 (defun dialog-find-response (dialog id)
606 "Finds a symbolic response given a numeric id"
608 (int-to-response-type id)
609 (aref (object-data dialog 'responses) id)))
612 (defmethod compute-signal-id ((dialog dialog) signal)
613 (if (dialog-response-id dialog signal)
614 (ensure-signal-id 'response dialog)
617 (defmethod compute-signal-function ((dialog dialog) signal function object)
618 (declare (ignore function object))
619 (let ((callback (call-next-method))
620 (id (dialog-response-id dialog signal)))
622 #'(lambda (dialog response)
623 (when (= response id)
624 (funcall callback dialog)))
627 (defbinding dialog-run () nil
630 (defbinding dialog-response (dialog response) nil
632 ((dialog-response-id dialog response nil t) int))
635 (defbinding %dialog-add-button () button
640 (defun dialog-add-button (dialog label &optional (response label)
641 &key default object after)
642 "Adds a button to the dialog."
643 (let* ((signal (if (functionp response)
646 (id (dialog-response-id dialog signal t))
647 (button (%dialog-add-button dialog label id)))
648 (when (functionp response)
649 (signal-connect dialog signal response :object object :after after))
651 (%dialog-set-default-response dialog id))
655 (defbinding %dialog-add-action-widget () nil
657 (action-widget widget)
660 (defun dialog-add-action-widget (dialog widget &optional (response widget)
661 &key default object after)
662 (let* ((signal (if (functionp response)
665 (id (dialog-response-id dialog signal t)))
666 (unless (widget-hidden-p widget)
667 (widget-show widget))
668 (%dialog-add-action-widget dialog widget id)
669 (when (functionp response)
670 (signal-connect dialog signal response :object object :after after))
672 (%dialog-set-default-response dialog id))
676 (defbinding %dialog-set-default-response () nil
680 (defun dialog-set-default-response (dialog response)
681 (%dialog-set-default-response
682 dialog (dialog-response-id dialog response nil t)))
684 (defbinding dialog-set-response-sensitive (dialog response sensitive) nil
686 ((dialog-response-id dialog response nil t) int)
690 (defbinding alternative-dialog-button-order-p (&optional screen) boolean
691 (screen (or null gdk:screen)))
694 (defbinding (dialog-set-alternative-button-order
695 "gtk_dialog_set_alternative_button_order_from_array")
698 ((length new-order) int)
699 ((map 'vector #'(lambda (response)
700 (dialog-response-id dialog response nil t))
701 new-order) (vector int)))
706 (defbinding %dialog-get-response-for-widget () int
710 (defun dialog-get-response-for-widget (dialog widget)
711 (dialog-find-response dialog (dialog-get-response-for-widget dialog widget))))
714 (defmethod container-add ((dialog dialog) (child widget) &rest args)
715 (apply #'container-add (dialog-vbox dialog) child args))
718 (defmethod container-remove ((dialog dialog) (child widget))
719 (container-remove (dialog-vbox dialog) child))
721 (defmethod container-children ((dialog dialog))
722 (container-children (dialog-vbox dialog)))
724 (defmethod (setf container-children) (children (dialog dialog))
725 (setf (container-children (dialog-vbox dialog)) children))
730 (defbinding entry-get-layout-offsets () nil
735 (defbinding entry-layout-index-to-text-index () int
739 (defbinding entry-text-index-to-layout-index () int
746 (def-callback-marshal %entry-completion-match-func
747 (boolean entry-completion string (copy-of tree-iter)))
749 (defbinding entry-completion-set-match-func (completion function) nil
750 (completion entry-completion)
751 ((callback %entry-completion-match-func) pointer)
752 ((register-callback-function function) unsigned-int)
753 ((callback user-data-destroy-func) pointer))
755 (defbinding entry-completion-complete () nil
756 (completion entry-completion))
759 (defbinding entry-completion-insert-prefix () nil
760 (completion entry-completion))
762 (defbinding entry-completion-insert-action-text () nil
763 (completion entry-completion)
767 (defbinding entry-completion-insert-action-markup () nil
768 (completion entry-completion)
772 (defbinding entry-completion-delete-action () nil
773 (completion entry-completion)
779 (defmethod initialize-instance ((file-chooser file-chooser) &rest initargs
780 &key filter filters shortcut-folder
781 shortcut-folders shortcut-folder-uti
782 shortcut-folder-uris)
783 (declare (ignore filter filters shortcut-folder shortcut-folders
784 shortcut-folder-uti shortcut-folder-uris))
787 (initial-add file-chooser #'file-chooser-add-filter
788 initargs :filer :filters)
789 (initial-add file-chooser #'file-chooser-add-shortcut-folder
790 initargs :shortcut-folder :shortcut-folders)
791 (initial-add file-chooser #'file-chooser-add-shortcut-folder-uri
792 initargs :shortcut-folder-uri :shortcut-folders-uris)))
795 (defbinding file-chooser-select-filename () boolean
796 (file-chooser file-chooser)
799 (defbinding file-chooser-unselect-filename () nil
800 (file-chooser file-chooser)
803 (defbinding file-chooser-select-all () boolean
804 (file-chooser file-chooser))
806 (defbinding file-chooser-unselect-all () boolean
807 (file-chooser file-chooser))
809 (defbinding file-chooser-get-filenames () (gslist string)
810 (file-chooser file-chooser))
812 (defbinding file-chooser-select-uri () boolean
813 (file-chooser file-chooser)
816 (defbinding file-chooser-unselect-uri () nil
817 (file-chooser file-chooser)
820 (defbinding file-chooser-get-uris () (gslist string)
821 (file-chooser file-chooser))
823 (defbinding file-chooser-add-filter () nil
824 (file-chooser file-chooser)
825 (filter file-filter))
827 (defbinding file-chooser-remove-filter () nil
828 (file-chooser file-chooser)
829 (filter file-filter))
831 (defbinding file-chooser-list-filters () (gslist file-filter)
832 (file-chooser file-chooser))
834 (defbinding file-chooser-add-shortcut-folder () boolean
835 (file-chooser file-chooser)
839 (defbinding file-chooser-remove-shortcut-folder () nil
840 (file-chooser file-chooser)
844 (defbinding file-chooser-list-shortcut-folders () (gslist string)
845 (file-chooser file-chooser))
847 (defbinding file-chooser-add-shortcut-folder-uri () boolean
848 (file-chooser file-chooser)
852 (defbinding file-chooser-remove-shortcut-folder-uri () nil
853 (file-chooser file-chooser)
857 (defbinding file-chooser-list-shortcut-folder-uris () (gslist string)
858 (file-chooser file-chooser))
863 (defmethod initialize-instance ((file-filter file-filter) &rest initargs
864 &key mime-type mime-types pattern patterns
866 (declare (ignore mime-type mime-types pattern patterns))
870 #-gtk2.6(warn "Initarg :PIXBUF-FORMATS not supportet in this version of Gtk")
871 #+gtk2.6(file-filter-add-pixbuf-formats file-filter))
872 (initial-add file-filter #'file-filter-add-mime-type
873 initargs :mime-type :mime-types)
874 (initial-add file-filter #'file-filter-add-pattern
875 initargs :pattern :patterns)))
878 (defbinding file-filter-add-mime-type () nil
882 (defbinding file-filter-add-pattern () nil
887 (defbinding file-filter-add-pixbuf-formats () nil
888 (filter file-filter))
890 (def-callback-marshal %file-filter-func (boolean file-filter-info))
892 (defbinding file-filter-add-custom (filter needed function) nil
894 (needed file-filter-flags)
895 ((callback %file-filter-func) pointer)
896 ((register-callback-function function) unsigned-int)
897 ((callback user-data-destroy-func) pointer))
899 (defbinding file-filter-get-needed () file-filter-flags
900 (filter file-filter))
902 (defbinding file-filter-filter () boolean
904 (filter-info file-filter-info))
910 (defbinding image-set-from-file () nil
914 (defmethod (setf image-pixmap) ((data vector) (image image))
915 (multiple-value-bind (pixmap mask) (gdk:pixmap-create data)
916 (setf (image-pixmap image) pixmap)
917 (setf (image-mask image) mask)))
919 (defmethod initialize-instance ((image image) &rest initargs &key pixmap file)
921 ((typep pixmap 'vector)
922 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap)
923 (apply #'call-next-method image :pixmap pixmap :mask mask initargs)))
927 (image-set-from-file image file)))
928 ((call-next-method))))
930 (defun create-image-widget (source &optional mask)
932 (gdk:pixbuf (make-instance 'image :pixbuf source))
933 (string (make-instance 'image :stock source))
934 (pathname (make-instance 'image :file source))
935 ((or list vector) (make-instance 'image :pixmap source))
936 (gdk:pixmap (make-instance 'image :pixmap source :mask mask))))
939 (defbinding image-clear () nil
946 (defmethod initialize-instance ((item image-menu-item) &rest initargs &key image)
947 (if (and image (not (typep image 'widget)))
948 (apply #'call-next-method item :image (create-image-widget image) initargs)
952 (defmethod (setf image-menu-item-image) ((widget widget) (item image-menu-item))
953 (setf (slot-value item 'image) widget))
955 (defmethod (setf image-menu-item-image) (image (item image-menu-item))
956 (setf (image-menu-item-image item) (create-image-widget image)))
961 (defmethod shared-initialize ((label label) names &key pattern)
962 (declare (ignore names))
965 (setf (label-pattern label) pattern)))
967 (defbinding label-get-layout-offsets () nil
972 (defbinding label-select-region () nil
977 (defbinding label-get-selection-bounds () boolean
986 (defbinding %radio-button-get-group () pointer
987 (radio-button radio-button))
989 (defbinding %radio-button-set-group () nil
990 (radio-button radio-button)
993 (defmethod add-to-radio-group ((button1 radio-button) (button2 radio-button))
994 "Add BUTTON1 to the group which BUTTON2 belongs to."
995 (%radio-button-set-group button1 (%radio-button-get-group button2)))
997 (defun %add-activate-callback (widget signal function object after)
999 (signal-connect widget signal
1001 (when (slot-value widget 'active)
1002 (funcall function object (slot-value widget 'value))))
1003 :object object :after after)
1004 (signal-connect widget signal
1006 (when (slot-value widget 'active)
1007 (funcall function (slot-value widget 'value))))
1010 (defmethod activate-radio-widget ((button radio-button))
1011 (signal-emit button 'clicked))
1013 (defmethod add-activate-callback ((button radio-button) function &key object after)
1014 (%add-activate-callback button 'clicked function object after))
1016 (defmethod initialize-instance ((button radio-button) &key group)
1020 (add-to-radio-group button group))))
1025 (defbinding item-select () nil
1028 (defbinding item-deselect () nil
1031 (defbinding item-toggle () nil
1038 (defmethod initialize-instance ((item menu-item) &key label)
1042 (setf (menu-item-label item) label))))
1045 (defun (setf menu-item-label) (label menu-item)
1046 (make-instance 'accel-label
1047 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
1048 :use-underline (menu-item-use-underline-p menu-item)
1049 :visible t :parent menu-item)
1052 (defun menu-item-label (menu-item)
1053 (when (and (slot-boundp menu-item 'child)
1054 (typep (bin-child menu-item) 'label))
1055 (label-label (bin-child menu-item))))
1057 (defbinding menu-item-remove-submenu () nil
1058 (menu-item menu-item))
1060 (defbinding menu-item-set-accel-path () nil
1061 (menu-item menu-item)
1062 (accel-path string))
1064 (defbinding menu-item-select () nil
1065 (menu-item menu-item))
1067 (defbinding menu-item-deselect () nil
1068 (menu-item menu-item))
1070 (defbinding menu-item-activate () nil
1071 (menu-item menu-item))
1073 (defbinding menu-item-toggle-size-request () nil
1074 (menu-item menu-item)
1075 (requisition int :out))
1077 (defbinding menu-item-toggle-size-allocate () nil
1078 (menu-item menu-item)
1082 ;;; Menu tool button
1085 (defbinding menu-tool-button-set-arrow-tooltip () nil
1086 (menu-tool-button menu-tool-button)
1089 (tip-private string))
1094 (defmethod initialize-instance ((dialog message-dialog)
1095 &key (message-type :info) (buttons :close)
1096 flags text #+gtk 2.6 secondary-text
1099 (slot-value dialog 'location)
1100 (%message-dialog-new transient-parent flags message-type buttons))
1102 (message-dialog-set-markup dialog text))
1104 (when secondary-text
1105 (message-dialog-format-secondary-markup dialog secondary-text))
1109 (defbinding %message-dialog-new () pointer
1110 (parent (or null window))
1111 (flags dialog-flags)
1113 (buttons buttons-type)
1116 (defbinding message-dialog-set-markup () nil
1117 (message-dialog message-dialog)
1121 (defbinding message-dialog-format-secondary-text () nil
1122 (message-dialog message-dialog)
1126 (defbinding message-dialog-format-secondary-markup () nil
1127 (message-dialog message-dialog)
1134 (defbinding %radio-menu-item-get-group () pointer
1135 (radio-menu-item radio-menu-item))
1137 (defbinding %radio-menu-item-set-group () nil
1138 (radio-menu-item radio-menu-item)
1141 (defmethod activate-radio-widget ((item radio-menu-item))
1142 (menu-item-activate item))
1144 (defmethod add-to-radio-group ((item1 radio-menu-item) (item2 radio-menu-item))
1145 "Add ITEM1 to the group which ITEM2 belongs to."
1146 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
1148 (defmethod add-activate-callback ((item radio-menu-item) function &key object after)
1149 (%add-activate-callback item 'activate function object after))
1151 (defmethod initialize-instance ((item radio-menu-item) &key group)
1155 (add-to-radio-group item group))))
1159 ;;; Radio tool button
1161 (defbinding %radio-tool-button-get-group () pointer
1162 (radio-tool-button radio-tool-button))
1164 (defbinding %radio-tool-button-set-group () nil
1165 (radio-tool-button radio-tool-button)
1168 (defmethod activate-radio-widget ((button radio-tool-button))
1169 (signal-emit button 'clicked))
1171 (defmethod add-to-radio-group ((button1 radio-tool-button) (button2 radio-tool-button))
1172 "Add BUTTON1 to the group which BUTTON2 belongs to."
1173 (%radio-tool-button-set-group button1 (%radio-tool-button-get-group button2)))
1174 (defmethod add-activate-callback ((button radio-tool-button) function &key object after)
1175 (%add-activate-callback button 'clicked function object after))
1177 (defmethod initialize-instance ((button radio-tool-button) &key group)
1181 (add-to-radio-group button group))))
1187 (defbinding toggle-button-toggled () nil
1188 (toggle-button toggle-button))
1193 (defmethod initialize-instance ((window window) &rest initargs
1194 &key accel-group accel-groups)
1195 (declare (ignore accel-group accel-groups))
1198 (initial-add window #'window-add-accel-group
1199 initargs :accel-group :accel-groups)))
1202 (defbinding window-set-wmclass () nil
1204 (wmclass-name string)
1205 (wmclass-class string))
1207 (defbinding window-add-accel-group () nil
1209 (accel-group accel-group))
1211 (defbinding window-remove-accel-group () nil
1213 (accel-group accel-group))
1215 (defbinding window-activate-focus () int
1218 (defbinding window-activate-default () int
1221 (defbinding window-set-default-size (window width height) int
1224 ((or height -1) int))
1226 (defbinding %window-set-geometry-hints () nil
1228 (geometry gdk:geometry)
1229 (geometry-mask gdk:window-hints))
1231 (defun window-set-geometry-hints (window &key min-width min-height
1232 max-width max-height base-width base-height
1233 width-inc height-inc min-aspect max-aspect
1234 (gravity nil gravity-p) min-size max-size)
1235 (let ((geometry (make-instance 'gdk:geometry
1236 :min-width (or min-width -1)
1237 :min-height (or min-height -1)
1238 :max-width (or max-width -1)
1239 :max-height (or max-height -1)
1240 :base-width (or base-width 0)
1241 :base-height (or base-height 0)
1242 :width-inc (or width-inc 0)
1243 :height-inc (or height-inc 0)
1244 :min-aspect (or min-aspect 0)
1245 :max-aspect (or max-aspect 0)
1248 (when (or min-size min-width min-height)
1249 (push :min-size mask))
1250 (when (or max-size max-width max-height)
1251 (push :max-size mask))
1252 (when (or base-width base-height)
1253 (push :base-size mask))
1254 (when (or width-inc height-inc)
1255 (push :resize-inc mask))
1256 (when (or min-aspect max-aspect)
1257 (push :aspect mask))
1259 (push :win-gravity mask))
1260 (%window-set-geometry-hints window geometry mask)))
1262 (defbinding window-list-toplevels () (glist (copy-of window))
1263 "Returns a list of all existing toplevel windows.")
1265 (defbinding window-add-mnemonic (window key target) nil
1267 ((gdk:keyval-from-name key) unsigned-int)
1270 (defbinding window-remove-mnemonic (window key target) nil
1272 ((gdk:keyval-from-name key) unsigned-int)
1275 (defbinding window-mnemonic-activate (window key modifier) nil
1277 ((gdk:keyval-from-name key) unsigned-int)
1278 (modifier gdk:modifier-type))
1280 (defbinding window-activate-key () boolean
1282 (event gdk:key-event))
1284 (defbinding window-propagate-key-event () boolean
1286 (event gdk:key-event))
1289 (defbinding window-present () nil
1294 (defbinding %window-present () nil
1297 (defbinding %window-present-with-timestamp () nil
1299 (timespamp unsigned-int))
1301 (defun window-present (window &optional timestamp)
1303 (%window-present-with-timestamp window timestamp)
1304 (%window-present window))))
1306 (defbinding window-iconify () nil
1309 (defbinding window-deiconify () nil
1312 (defbinding window-stick () nil
1315 (defbinding window-unstick () nil
1318 (defbinding window-maximize () nil
1321 (defbinding window-unmaximize () nil
1324 (defbinding window-fullscreen () nil
1327 (defbinding window-unfullscreen () nil
1330 (defbinding window-set-keep-above () nil
1334 (defbinding window-set-keep-below () nil
1338 (defbinding window-begin-resize-drag () nil
1340 (edge gdk:window-edge)
1342 (root-x int) (root-y int)
1343 (timestamp unsigned-int))
1345 (defbinding window-begin-move-drag () nil
1347 (edge gdk:window-edge)
1349 (root-x int) (root-y int)
1350 (timestamp unsigned-int))
1352 (defbinding window-set-frame-dimensions () nil
1354 (left int) (top int) (rigth int) (bottom int))
1356 (defbinding %window-get-default-size () nil
1361 (defun window-get-default-size (window)
1362 (multiple-value-bind (width height) (%window-get-default-size window)
1363 (values (unless (= width -1) width) (unless (= height -1) height))))
1365 (defbinding window-get-frame-dimensions () nil
1367 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
1369 (defbinding %window-get-icon-list () (glist gdk:pixbuf)
1372 (defbinding window-get-position () nil
1377 (defbinding window-get-size () nil
1382 (defbinding window-move () nil
1387 (defbinding window-parse-geometry () boolean
1391 (defbinding window-reshow-with-initial-size () nil
1394 (defbinding window-resize () nil
1399 (defbinding (window-default-icon-list "gtk_window_get_default_icon_list")
1400 () (glist gdk:pixbuf))
1402 (defun window-default-icon ()
1403 (first (window-default-icon-list)))
1405 (defbinding %window-set-default-icon-list () nil
1406 (icons (glist gdk:pixbuf)))
1408 (defun (setf window-default-icon-list) (icons)
1409 (%window-set-default-icon-list icons)
1412 (defbinding %window-set-default-icon () nil
1413 (icons (glist gdk:pixbuf)))
1415 (defmethod (setf window-default-icon) ((icon gdk:pixbuf))
1416 (%window-set-default-icon icon)
1419 (defmethod (setf window-group) ((group window-group) (window window))
1420 (window-group-add-window group window)
1423 (defbinding %window-set-default-icon-from-file () boolean
1427 (defmethod (setf window-default-icon) ((icon-file pathname))
1428 (%window-set-default-icon-from-file icon-file)
1431 (defbinding %window-set-icon-from-file () boolean
1436 (defmethod (setf window-icon) ((icon-file pathname) (window window))
1437 (%window-set-icon-from-file window icon-file)
1440 (defbinding window-set-auto-startup-notification () nil
1443 (defbinding decorated-window-init () nil
1446 (defbinding decorated-window-calculate-frame-size () nil
1449 (defbinding decorated-window-set-title () nil
1453 (defbinding decorated-window-move-resize-window () nil
1463 (defmethod initialize-instance ((window-group window-group) &rest initargs
1464 &key window windows)
1465 (declare (ignore window windows))
1468 (initial-add window-group #'window-group-add-window
1469 initargs :window :windows)))
1472 (defbinding window-group-add-window () nil
1473 (window-group window-group)
1476 (defbinding window-group-remove-window () nil
1477 (window-group window-group)
1483 (defun (setf scrolled-window-scrollbar-policy) (policy window)
1484 (setf (scrolled-window-hscrollbar-policy window) policy)
1485 (setf (scrolled-window-vscrollbar-policy window) policy))
1487 (defbinding scrolled-window-add-with-viewport () nil
1488 (scrolled-window scrolled-window)
1491 (defmethod shared-initialize ((window scrolled-window) names &key policy)
1492 (declare (ignore names))
1494 (setf (slot-value window 'hscrollbar-policy) policy)
1495 (setf (slot-value window 'vscrollbar-policy) policy))
1501 (defbinding statusbar-get-context-id () unsigned-int
1502 (statusbar statusbar)
1503 (context-description string))
1505 (defbinding statusbar-push () unsigned-int
1506 (statusbar statusbar)
1507 (context-id unsigned-int)
1510 (defbinding statusbar-pop () nil
1511 (statusbar statusbar)
1512 (context-id unsigned-int))
1514 (defbinding statusbar-remove () nil
1515 (statusbar statusbar)
1516 (context-id unsigned-int)
1517 (message-id unsigned-int))
1523 (defbinding fixed-put () nil
1528 (defbinding fixed-move () nil
1537 (defun %ensure-notebook-position (notebook page)
1540 (widget (notebook-page-num notebook page t))))
1542 (defun %ensure-notebook-child (notebook position)
1545 (t (notebook-get-nth-page notebook position))))
1547 (defbinding (notebook-insert "gtk_notebook_insert_page_menu")
1548 (notebook position child tab-label &optional menu-label) nil
1551 ((if (stringp tab-label)
1552 (make-instance 'label :label tab-label)
1554 ((if (stringp menu-label)
1555 (make-instance 'label :label menu-label)
1556 menu-label) (or null widget))
1557 ((%ensure-notebook-position notebook position) position))
1559 (defun notebook-append (notebook child tab-label &optional menu-label)
1560 (notebook-insert notebook :last child tab-label menu-label))
1562 (defun notebook-prepend (notebook child tab-label &optional menu-label)
1563 (notebook-insert notebook :first child tab-label menu-label))
1565 (defbinding notebook-remove-page (notebook page) nil
1567 ((%ensure-notebook-position notebook page) position))
1569 (defbinding %notebook-page-num () int
1573 (defun notebook-page-num (notebook child &optional error-p)
1574 (let ((page-num (%notebook-page-num notebook child)))
1577 (error "~A is not a page in ~A" child notebook))
1580 (defbinding notebook-next-page () nil
1581 (notebook notebook))
1583 (defbinding notebook-prev-page () nil
1584 (notebook notebook))
1586 (defbinding notebook-reorder-child (notebook child position) nil
1589 ((%ensure-notebook-position notebook position) int))
1591 (defbinding notebook-popup-enable () nil
1592 (notebook notebook))
1594 (defbinding notebook-popup-disable () nil
1595 (notebook notebook))
1597 (defbinding notebook-get-nth-page () widget
1601 (defun %notebook-current-page (notebook)
1602 (when (slot-boundp notebook 'current-page-num)
1603 (notebook-get-nth-page notebook (notebook-current-page-num notebook))))
1605 (defun (setf notebook-current-page) (page notebook)
1606 (setf (notebook-current-page notebook) (notebook-page-num notebook page)))
1608 (defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1609 (notebook page) widget
1611 ((%ensure-notebook-child notebook page) widget))
1613 (defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
1614 (notebook page) (copy-of string)
1616 ((%ensure-notebook-child notebook page) widget))
1618 (defbinding %notebook-set-tab-label () nil
1623 (defun (setf notebook-tab-label) (tab-label notebook page)
1624 (let ((widget (if (stringp tab-label)
1625 (make-instance 'label :label tab-label)
1627 (%notebook-set-tab-label notebook (%ensure-notebook-child notebook page) widget)
1631 (defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1632 (notebook page) widget
1634 ((%ensure-notebook-child notebook page) widget))
1636 (defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
1637 (notebook page) (copy-of string)
1639 ((%ensure-notebook-child notebook page) widget))
1641 (defbinding %notebook-set-menu-label () nil
1644 (menu-label widget))
1646 (defun (setf notebook-menu-label) (menu-label notebook page)
1647 (let ((widget (if (stringp menu-label)
1648 (make-instance 'label :label menu-label)
1650 (%notebook-set-menu-label notebook (%ensure-notebook-child notebook page) widget)
1654 (defbinding notebook-query-tab-label-packing (notebook page) nil
1656 ((%ensure-notebook-child notebook page) widget)
1657 (expand boolean :out)
1659 (pack-type pack-type :out))
1661 (defbinding notebook-set-tab-label-packing
1662 (notebook page expand fill pack-type) nil
1664 ((%ensure-notebook-child notebook page) widget)
1667 (pack-type pack-type))
1673 (defbinding paned-pack1 () nil
1679 (defbinding paned-pack2 () nil
1688 (defbinding layout-put () nil
1694 (defbinding layout-move () nil
1700 (defbinding layout-set-size () nil
1702 (width unsigned-int)
1703 (height unsigned-int))
1705 (defbinding layout-get-size () nil
1707 (width unsigned-int :out)
1708 (height unsigned-int :out))
1713 (defbinding menu-shell-insert (menu-shell menu-item position) nil
1714 (menu-shell menu-shell)
1715 (menu-item menu-item)
1721 (defun menu-shell-append (menu-shell menu-item)
1722 (menu-shell-insert menu-shell menu-item :last))
1724 (defun menu-shell-prepend (menu-shell menu-item)
1725 (menu-shell-insert menu-shell menu-item :fisrt))
1727 (defbinding menu-shell-deactivate () nil
1728 (menu-shell menu-shell))
1730 (defbinding menu-shell-select-item () nil
1731 (menu-shell menu-shell)
1732 (menu-item menu-item))
1734 (defbinding menu-shell-select-first () nil
1735 (menu-shell menu-shell)
1736 (search-sensitive boolean))
1738 (defbinding menu-shell-deselect () nil
1739 (menu-shell menu-shell))
1741 (defbinding menu-shell-activate-item () nil
1742 (menu-shell menu-shell)
1743 (menu-item menu-item)
1744 (fore-deactivate boolean))
1746 (defbinding menu-shell-cancel () nil
1747 (menu-shell menu-shell))
1752 (defun %menu-position (menu child)
1755 (keyword (case child
1758 (t (error "Invalid position keyword: ~A" child))))
1759 (widget (menu-child-position menu child))))
1762 (defbinding menu-reorder-child (menu menu-item position) nil
1764 (menu-item menu-item)
1765 ((%menu-position menu position) int))
1767 (defbinding menu-attach () nil
1769 (menu-item menu-item)
1770 (left-attach unsigned-int)
1771 (right-attach unsigned-int)
1772 (top-attach unsigned-int)
1773 (bottom-attach unsigned-int))
1775 (def-callback-marshal %menu-position-func (nil (menu menu) (x int) (y int) (push-in boolean)))
1777 (defbinding %menu-popup () nil
1779 (parent-menu-shell (or null menu-shell))
1780 (parent-menu-item (or null menu-item))
1781 (callback-func (or null pointer))
1782 (callback-id unsigned-int)
1783 (button unsigned-int)
1784 (activate-time (unsigned 32)))
1786 (defun menu-popup (menu button activate-time &key callback parent-menu-shell
1789 (with-callback-function (id callback)
1791 menu parent-menu-shell parent-menu-item
1792 (callback %menu-position-func) id button activate-time))
1794 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
1796 (defbinding menu-set-accel-path () nil
1798 (accel-path string))
1800 (defbinding menu-reposition () nil
1803 (defbinding menu-popdown () nil
1806 (defun menu-child-position (menu child)
1807 (position child (container-children menu)))
1809 (defun menu-active-num (menu)
1810 (menu-child-position menu (menu-active menu)))
1812 (defbinding %menu-set-active () nil
1814 (index unsigned-int))
1816 (defun (setf menu-active) (menu child)
1817 (%menu-set-active menu (%menu-position menu child))
1820 (defcallback %menu-detach-func (nil (widget widget) (menu menu))
1821 (funcall (object-data menu 'detach-func) widget menu))
1823 (defbinding %menu-attach-to-widget () nil
1826 ((callback %menu-detach-func) pointer))
1828 (defun menu-attach-to-widget (menu widget function)
1829 (setf (object-data menu 'detach-func) function)
1830 (%menu-attach-to-widget menu widget))
1832 (defbinding menu-detach () nil
1836 (defbinding menu-get-for-attach-widget () (copy-of (glist widget))
1839 (defbinding menu-set-monitor () nil
1846 (defbinding table-resize () nil
1849 (columns unsigned-int))
1851 (defbinding table-attach (table child left right top bottom
1852 &key options x-options y-options
1853 (x-padding 0) (y-padding 0)) nil
1857 (right unsigned-int)
1859 (bottom unsigned-int)
1860 ((append (mklist options) (mklist x-options)) attach-options)
1861 ((append (mklist options) (mklist y-options)) attach-options)
1862 (x-padding unsigned-int)
1863 (y-padding unsigned-int))
1866 (defbinding %table-set-row-spacing () nil
1869 (spacing unsigned-int))
1871 (defbinding %table-set-row-spacings () nil
1873 (spacing unsigned-int))
1875 (defun (setf table-row-spacing) (spacing table &optional row)
1877 (%table-set-row-spacing table row spacing)
1878 (%table-set-row-spacings table spacing))
1881 (defbinding %table-get-row-spacing () unsigned-int
1885 (defbinding %table-get-default-row-spacing () unsigned-int
1888 (defun table-row-spacing (table &optional row)
1890 (%table-get-row-spacing table row)
1891 (%table-get-default-row-spacing table)))
1894 (defbinding %table-set-col-spacing () nil
1897 (spacing unsigned-int))
1899 (defbinding %table-set-col-spacings () nil
1901 (spacing unsigned-int))
1903 (defun (setf table-col-spacing) (spacing table &optional col)
1905 (%table-set-col-spacing table col spacing)
1906 (%table-set-col-spacings table spacing))
1909 (defbinding %table-get-col-spacing () unsigned-int
1913 (defbinding %table-get-default-col-spacing () unsigned-int
1916 (defun table-col-spacing (table &optional col)
1918 (%table-get-col-spacing table col)
1919 (%table-get-default-col-spacing table)))
1925 (defmethod initialize-instance ((toolbar toolbar) &rest initargs &key tooltips)
1927 (apply #'call-next-method toolbar
1928 :tooltips (make-instance 'tooltips) initargs)
1929 (call-next-method)))
1931 (defbinding %toolbar-insert () nil
1933 (tool-item tool-item)
1934 (position position))
1936 (defun toolbar-insert (toolbar tool-item &optional (position :end))
1937 (%toolbar-insert toolbar tool-item position)
1938 (%tool-item-update-tooltips tool-item))
1940 (defbinding toolbar-get-item-index () int
1944 (defbinding toolbar-get-nth-item () tool-item
1948 (defbinding toolbar-get-drop-index () int
1952 (defbinding toolbar-set-drop-highlight-item () nil
1954 (tool-item tool-item)
1960 (defmethod initialize-instance ((button tool-button) &rest initargs &key icon)
1961 (if (and icon (not (typep icon 'widget)))
1962 (apply #'call-next-method button :icon (create-image-widget icon) initargs)
1963 (call-next-method)))
1968 (defbinding tool-item-set-tooltip () nil
1969 (tool-item tool-item)
1972 (tip-private string))
1975 (defun %tool-item-update-tooltips (tool-item)
1977 (slot-boundp tool-item 'parent)
1979 (user-data-p tool-item 'tip-text)
1980 (user-data-p tool-item 'tip-private)))
1981 (tool-item-set-tooltip
1982 tool-item (toolbar-tooltips (widget-parent tool-item))
1983 (or (user-data tool-item 'tip-text) "")
1984 (or (user-data tool-item 'tip-private) ""))))
1986 (defmethod (setf tool-item-tip-text) ((tip-text string) (tool-item tool-item))
1987 (setf (user-data tool-item 'tip-text) tip-text)
1988 (%tool-item-update-tooltips tool-item)
1991 (defmethod (setf tool-item-tip-private) ((tip-private string) (tool-item tool-item))
1992 (setf (user-data tool-item 'tip-private) tip-private)
1993 (%tool-item-update-tooltips tool-item)
1996 (defmethod container-add ((toolbar toolbar) (tool-item tool-item) &rest args)
1997 (declare (ignore args))
2000 (%tool-item-update-tooltips tool-item)))
2003 (defbinding tool-item-retrieve-proxy-menu-item () widget
2004 (tool-item tool-item))
2006 (defbinding (tool-item-proxy-menu-item
2007 "gtk_tool_item_get_proxy_menu_item") () menu-item
2008 (tool-item tool-item)
2009 (menu-item-id string))
2011 (defbinding %tool-item-set-proxy-menu-item () nil
2012 (tool-item tool-item)
2013 (menu-item-id string)
2014 (menu-item menu-item))
2016 (defun (setf tool-item-proxy-menu-item) (menu-item menu-item-id tool-item)
2017 (%tool-item-set-proxy-menu-item menu-item-id tool-item menu-item)
2021 (defbinding tool-item-rebuild-menu () nil
2022 (tool-item tool-item))
2027 (defbinding editable-select-region (editable &optional (start 0) end) nil
2032 (defbinding editable-get-selection-bounds (editable) nil
2037 (defbinding editable-insert-text (editable text &optional (position 0)) nil
2041 (position position :in-out))
2043 (defun editable-append-text (editable text)
2044 (editable-insert-text editable text nil))
2046 (defun editable-prepend-text (editable text)
2047 (editable-insert-text editable text 0))
2049 (defbinding editable-delete-text (editable &optional (start 0) end) nil
2054 (defbinding (editable-text "gtk_editable_get_chars")
2055 (editable &optional (start 0) end) string
2060 (defun (setf editable-text) (text editable)
2062 (editable-delete-text
2064 (editable-insert-text editable text))
2065 (editable-delete-text editable))
2068 (defbinding editable-cut-clipboard () nil
2069 (editable editable))
2071 (defbinding editable-copy-clipboard () nil
2072 (editable editable))
2074 (defbinding editable-paste-clipboard () nil
2075 (editable editable))
2077 (defbinding editable-delete-selection () nil
2078 (editable editable))
2084 (defbinding spin-button-configure () nil
2085 (spin-button spin-button)
2086 (adjustment adjustment)
2087 (climb-rate double-float)
2088 (digits unsigned-int))
2090 (defbinding spin-button-set-range () nil
2091 (spin-button spin-button)
2095 (defbinding spin-button-get-range () nil
2096 (spin-button spin-button)
2097 (min double-float :out)
2098 (max double-float :out))
2100 (defun spin-button-value-as-int (spin-button)
2101 (round (spin-button-value spin-button)))
2103 (defbinding %spin-button-spin () nil
2104 (spin-button spin-button)
2105 (direction spin-type)
2106 (increment double-float))
2108 (defun spin-button-spin (spin-button value)
2110 (real (%spin-button-spin spin-button :spin-user-defined value))
2111 (spin-type (%spin-button-spin spin-button value 0))))
2114 (defbinding spin-button-update () nil
2115 (spin-button spin-button))
2121 (defbinding ruler-set-range () nil
2123 (lower single-float)
2124 (upper single-float)
2125 (position single-float)
2126 (max-size single-float))
2128 (defbinding ruler-get-range () nil
2130 (lower single-float :out)
2131 (upper single-float :out)
2132 (position single-float :out)
2133 (max-size single-float :out))
2139 (defun range-lower (range)
2140 (adjustment-lower (range-adjustment range)))
2142 (defun range-upper (range)
2143 (adjustment-upper (range-adjustment range)))
2145 (defun (setf range-lower) (value range)
2146 (setf (adjustment-lower (range-adjustment range)) value))
2148 (defun (setf range-upper) (value range)
2149 (setf (adjustment-upper (range-adjustment range)) value))
2151 (defun range-page-increment (range)
2152 (adjustment-page-increment (range-adjustment range)))
2154 (defun range-step-increment (range)
2155 (adjustment-step-increment (range-adjustment range)))
2157 (defun (setf range-page-increment) (value range)
2158 (setf (adjustment-page-increment (range-adjustment range)) value))
2160 (defun (setf range-step-increment) (value range)
2161 (setf (adjustment-step-increment (range-adjustment range)) value))
2163 (defbinding range-set-range () nil
2165 (lower double-float)
2166 (upper double-float))
2168 (defbinding range-set-increments () nil
2171 (page double-float))
2176 (defbinding scale-get-layout-offsets () nil
2184 (defbinding progress-bar-pulse () nil
2185 (progress-bar progress-bar))
2190 (defmethod initialize-instance ((size-group size-group) &rest initargs
2191 &key widget widgets)
2192 (declare (ignore widget widgets))
2195 (initial-add size-group #'size-group-add-widget
2196 initargs :widget :widgets)))
2199 (defbinding size-group-add-widget () nil
2200 (size-group size-group)
2203 (defbinding size-group-remove-widget () nil
2204 (size-group size-group)
2210 (defbinding %stock-item-copy () pointer
2213 (defbinding %stock-item-free () nil
2216 (defmethod reference-foreign ((class (eql (find-class 'stock-item))) location)
2217 (%stock-item-copy location))
2219 (defmethod unreference-foreign ((class (eql (find-class 'stock-item))) location)
2220 (%stock-item-free location))
2222 (defbinding stock-add (stock-item) nil
2223 (stock-item stock-item)
2226 (defbinding stock-list-ids () (gslist string))
2228 (defbinding %stock-lookup () boolean
2232 (defun stock-lookup (stock-id)
2234 (allocate-memory (proxy-instance-size (find-class 'stock-item)))))
2236 (when (%stock-lookup stock-id location)
2237 (ensure-proxy-instance 'stock-item (%stock-item-copy location)))
2238 (deallocate-memory location))))
2243 (defbinding tooltips-enable () nil
2244 (tooltips tooltips))
2246 (defbinding tooltips-disable () nil
2247 (tooltips tooltips))
2249 (defun (setf tooltips-enabled-p) (enable tooltips)
2251 (tooltips-enable tooltips)
2252 (tooltips-disable tooltips)))
2254 (defbinding tooltips-set-tip () nil
2258 (tip-private string))
2260 (defbinding tooltips-data-get () tooltips-data
2263 (defbinding tooltips-force-window () nil
2264 (tooltips tooltips))
2266 (defbinding tooltips-get-info-from-tip-window () boolean
2268 (tooltips tooltips :out)
2269 (current-widget widget :out))
2274 (defbinding rc-add-default-file (filename) nil
2275 ((namestring (truename filename)) string))
2277 (defbinding rc-parse (filename) nil
2278 ((namestring (truename filename)) string))
2280 (defbinding rc-parse-string () nil
2283 (defbinding rc-reparse-all () nil)
2285 (defbinding rc-get-style () style