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