chiark / gitweb /
Adding :gtk2.8 to *features* if Gtk 2.8 is found.
[clg] / gtk / gtk.lisp
CommitLineData
112ac1d3 1;; Common Lisp bindings for GTK+ v2.x
2;; Copyright 1999-2005 Espen S. Johnsen <espen@users.sf.net>
560af5c5 3;;
112ac1d3 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:
560af5c5 11;;
112ac1d3 12;; The above copyright notice and this permission notice shall be
13;; included in all copies or substantial portions of the Software.
560af5c5 14;;
112ac1d3 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.
560af5c5 22
c1c0746b 23;; $Id: gtk.lisp,v 1.44 2005-04-25 18:20:00 espen Exp $
560af5c5 24
25
26(in-package "GTK")
27
28;;; Gtk version
29
6bb23851 30(defbinding check-version () (copy-of string)
560af5c5 31 (required-major unsigned-int)
32 (required-minor unsigned-int)
33 (required-micro unsigned-int))
34
bbaeff4b 35(defbinding query-version () nil
560af5c5 36 (major unsigned-int :out)
37 (minor unsigned-int :out)
38 (micro unsigned-int :out))
39
40(defun gtk-version ()
41 (multiple-value-bind (major minor micro)
42 (query-version)
43 (if (zerop micro)
44 (format nil "Gtk+ v~A.~A" major minor)
45 (format nil "Gtk+ v~A.~A.~A" major minor micro))))
46
c1c0746b 47(defun clg-version ()
48 "clg CVS version")
560af5c5 49
50
9adccb27 51;;;; Initalization
52
a5522de5 53(defbinding (gtk-init "gtk_parse_args") () boolean
9adccb27 54 "Initializes the library without opening the display."
55 (nil null)
56 (nil null))
57
58(defun clg-init (&optional display)
59 "Initializes the system and starts the event handling"
60 (unless (gdk:display-get-default)
61 (gdk:gdk-init)
a5522de5 62 (unless (gtk-init)
63 (error "Initialization of GTK+ failed."))
9adccb27 64 (prog1
65 (gdk:display-open display)
73572c12 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))))
9adccb27 70
71
667a112b 72;;; Misc
73
74(defbinding grab-add () nil
75 (widget widget))
76
7abdba43 77(defbinding grab-get-current () widget)
667a112b 78
79(defbinding grab-remove () nil
80 (widget widget))
81
c1c0746b 82(defbinding get-default-language () (copy-of pango:language))
83
667a112b 84
647c99e5 85;;; About dialog
86
87#+gtk2.6
88(progn
89 (def-callback-marshal %about-dialog-activate-link-func
90 (nil (dialog about-dialog) (link (copy-of string))))
91
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))
96
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)))
101
102
0f476ab5 103;;; Acccel group
560af5c5 104
31700e82 105(defbinding %accel-group-connect () nil
106 (accel-group accel-group)
107 (key unsigned-int)
108 (modifiers gdk:modifier-type)
109 (flags accel-flags)
110 (gclosure gclosure))
111
112(defun accel-group-connect (group accelerator function &optional flags)
eacab64f 113 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
31700e82 114 (let ((gclosure (make-callback-closure function)))
115 (%accel-group-connect group key modifiers flags gclosure)
116 gclosure)))
117
118(defbinding accel-group-connect-by-path (group path function) nil
119 (group accel-group)
120 (path string)
121 ((make-callback-closure function) gclosure :return))
122
123(defbinding %accel-group-disconnect (group gclosure) boolean
124 (group accel-group)
125 (gclosure gclosure))
126
127(defbinding %accel-group-disconnect-key () boolean
128 (group accel-group)
129 (key unsigned-int)
130 (modifiers gdk:modifier-type))
131
132(defun accel-group-disconnect (group accelerator)
133 (etypecase accelerator
134 (gclosure (%accel-group-disconnect group accelerator))
135 (string
eacab64f 136 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
31700e82 137 (%accel-group-disconnect-key group key modifiers)))))
138
eacab64f 139(defbinding %accel-group-query () (copy-of (vector (inlined accel-group-entry) n))
140 (accel-group accel-group)
141 (key unsigned-int)
142 (modifiers gdk:modifier-type)
143 (n int :out))
144
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)))
148
149(defbinding %accel-group-activate () boolean
150 (accel-group accel-group)
151 (acceleratable gobject)
152 (key unsigned-int)
153 (modifiers gdk:modifier-type))
154
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)))
158
31700e82 159(defbinding accel-group-lock () nil
160 (accel-group accel-group))
161
162(defbinding accel-group-unlock () nil
163 (accel-group accel-group))
164
eacab64f 165(defbinding accel-group-from-accel-closure () accel-group
166 (closure gclosure))
167
31700e82 168(defbinding %accel-groups-activate () boolean
169 (object gobject)
170 (key unsigned-int)
171 (modifiers gdk:modifier-type))
172
173(defun accel-groups-activate (object accelerator)
eacab64f 174 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
31700e82 175 (%accel-groups-activate object key modifiers)))
176
177(defbinding accel-groups-from-object () (gslist accel-groups)
178 (object gobject))
179
73572c12 180(defbinding accelerator-valid-p (key &optional modifiers) boolean
31700e82 181 (key unsigned-int)
182 (modifiers gdk:modifier-type))
183
184(defbinding %accelerator-parse () nil
185 (accelerator string)
186 (key unsigned-int :out)
187 (modifiers gdk:modifier-type :out))
188
eacab64f 189(defgeneric parse-accelerator (accelerator))
190
191(defmethod parse-accelerator ((accelerator string))
31700e82 192 (multiple-value-bind (key modifiers) (%accelerator-parse accelerator)
193 (if (zerop key)
194 (error "Invalid accelerator: ~A" accelerator)
195 (values key modifiers))))
196
eacab64f 197(defmethod parse-accelerator ((accelerator cons))
198 (destructuring-bind (key modifiers) accelerator
199 (values
200 (etypecase key
201 (integer key)
202 (string
203 (or
204 (gdk:keyval-from-name key)
205 (error "Invalid key name: ~A" key)))
206 (character (parse-accelerator key)))
207 modifiers)))
208
209(defmethod parse-accelerator ((key integer))
210 key)
211
212(defmethod parse-accelerator ((key character))
213 (or
214 (gdk:keyval-from-name (string key))
215 (error "Invalid key name: ~A" key)))
216
217
31700e82 218(defbinding accelerator-name () string
219 (key unsigned-int)
220 (modifiers gdk:modifier-type))
221
222#+gtk2.6
223(defbinding accelerator-get-label () string
224 (key unsigned-int)
225 (modifiers gdk:modifier-type))
226
227(defbinding %accelerator-set-default-mod-mask () nil
228 (default-modifiers gdk:modifier-type))
229
230(defun (setf accelerator-default-modifier-mask) (default-modifiers)
231 (%accelerator-set-default-mod-mask default-modifiers))
232
233(defbinding (accelerator-default-modifier-mask "gtk_accelerator_get_default_mod_mask") () gdk:modifier-type)
560af5c5 234
1047e159 235
560af5c5 236;;; Acccel label
237
eacab64f 238(defbinding accel-label-get-accel-width () unsigned-int
239 (accel-label accel-label))
240
bbaeff4b 241(defbinding accel-label-refetch () boolean
560af5c5 242 (accel-label accel-label))
243
244
31700e82 245
246;;; Accel map
247
eacab64f 248(defbinding (accel-map-init "_gtk_accel_map_init") () nil)
a5522de5 249
31700e82 250(defbinding %accel-map-add-entry () nil
251 (path string)
252 (key unsigned-int)
253 (modifiers gdk:modifier-type))
254
255(defun accel-map-add-entry (path accelerator)
eacab64f 256 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
31700e82 257 (%accel-map-add-entry path key modifiers)))
258
eacab64f 259(defbinding %accel-map-lookup-entry () boolean
31700e82 260 (path string)
eacab64f 261 ((make-instance 'accel-key) accel-key :return))
262
263(defun accel-map-lookup-entry (path)
264 (multiple-value-bind (found-p accel-key) (%accel-map-lookup-entry path)
265 (when found-p
266 (values
267 (slot-value accel-key 'key)
268 (slot-value accel-key 'modifiers)
269 (slot-value accel-key 'flags)))))
31700e82 270
271(defbinding %accel-map-change-entry () boolean
272 (path string)
273 (key unsigned-int)
274 (modifiers gdk:modifier-type)
275 (replace boolean))
276
277(defun accel-map-change-entry (path accelerator &optional replace)
eacab64f 278 (multiple-value-bind (key modifiers) (parse-accelerator accelerator)
31700e82 279 (%accel-map-change-entry path key modifiers replace)))
280
281(defbinding accel-map-load () nil
282 (filename pathname))
283
284(defbinding accel-map-save () nil
285 (filename pathname))
286
eacab64f 287(defcallback %accel-map-foreach-func
288 (nil
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))
292
293(defbinding %accel-map-foreach (callback-id) nil
294 (callback-id unsigned-int)
295 (%accel-map-foreach-func callback))
296
297(defbinding %accel-map-foreach-unfiltered (callback-id) nil
298 (callback-id unsigned-int)
299 (%accel-map-foreach-func callback))
300
301(defun accel-map-foreach (function &optional (filter-p t))
302 (with-callback-function (id function)
303 (if filter-p
304 (%accel-map-foreach id)
305 (%accel-map-foreach-unfiltered id))))
306
307(defbinding accel-map-add-filter () nil
308 (filter string))
309
31700e82 310(defbinding accel-map-get () accel-map)
311
312(defbinding accel-map-lock-path () nil
313 (path string))
314
315(defbinding accel-map-unlock-path () nil
316 (path string))
317
318
319
eacab64f 320;;; Accessibility
d76e9fca 321
322(defbinding accessible-connect-widget-destroyed () nil
323 (accessible accessible))
324
325
0f476ab5 326;;; Adjustment
560af5c5 327
d76e9fca 328(defmethod initialize-instance ((adjustment adjustment) &key value)
1047e159 329 (prog1
330 (call-next-method)
331 ;; we need to make sure that the value is set last, otherwise it
d76e9fca 332 ;; may be outside current limits and ignored
1047e159 333 (when value
334 (setf (slot-value adjustment 'value) value))))
335
336
0f476ab5 337(defbinding adjustment-changed () nil
338 (adjustment adjustment))
339
340(defbinding adjustment-value-changed () nil
341 (adjustment adjustment))
342
343(defbinding adjustment-clamp-page () nil
344 (adjustment adjustment)
345 (lower single-float)
346 (upper single-float))
560af5c5 347
0f476ab5 348
68f519e0 349;;; Alignment
350
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))
357
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))
364
365(defbinding alignment-set-padding () nil
366 (alognment alignment)
367 (top unsigned-int)
368 (bottom unsigned-int)
369 (left unsigned-int)
370 (right unsigned-int))
371
372
0f476ab5 373;;; Aspect frame
374
375
376;;; Bin
560af5c5 377
378(defun (setf bin-child) (child bin)
0f476ab5 379 (when-bind (current-child (bin-child bin))
380 (container-remove bin current-child))
560af5c5 381 (container-add bin child)
382 child)
383
14c94516 384(defmethod compute-signal-function ((bin bin) signal function object)
385 (declare (ignore signal))
386 (if (eq object :child)
cb4bf772 387 #'(lambda (&rest args)
388 (apply function (bin-child bin) (rest args)))
389 (call-next-method)))
0f476ab5 390
391
392;;; Box
393
394(defbinding box-pack-start () nil
395 (box box)
396 (child widget)
397 (expand boolean)
398 (fill boolean)
399 (padding unsigned-int))
400
401(defbinding box-pack-end () nil
402 (box box)
403 (child widget)
404 (expand boolean)
405 (fill boolean)
406 (padding unsigned-int))
407
d76e9fca 408(defun box-pack (box child &key end (expand t) (fill t) (padding 0))
1a1949c7 409 (if end
f5b67f2b 410 (box-pack-end box child expand fill padding)
411 (box-pack-start box child expand fill padding)))
0f476ab5 412
413(defbinding box-reorder-child () nil
414 (box box)
415 (child widget)
416 (position int))
417
418(defbinding box-query-child-packing () nil
419 (box box)
420 (child widget)
421 (expand boolean :out)
422 (fill boolean :out)
423 (padding unsigned-int :out)
424 (pack-type pack-type :out))
425
426(defbinding box-set-child-packing () nil
427 (box box)
428 (child widget)
429 (expand boolean)
430 (fill boolean)
431 (padding unsigned-int)
432 (pack-type pack-type))
433
434
435
560af5c5 436;;; Button
437
d76e9fca 438(defmethod initialize-instance ((button button) &rest initargs &key stock)
439 (if stock
440 (apply #'call-next-method button :label stock :use-stock t initargs)
441 (call-next-method)))
442
443
bbaeff4b 444(defbinding button-pressed () nil
560af5c5 445 (button button))
446
0f476ab5 447(defbinding button-released () nil
448 (button button))
449
450(defbinding button-clicked () nil
451 (button button))
452
453(defbinding button-enter () nil
454 (button button))
455
456(defbinding button-leave () nil
457 (button button))
458
459
460
461;;; Calendar
462
463(defbinding calendar-select-month () int
464 (calendar calendar)
465 (month unsigned-int)
466 (year unsigned-int))
467
468(defbinding calendar-select-day () nil
469 (calendar calendar)
470 (day unsigned-int))
471
472(defbinding calendar-mark-day () int
473 (calendar calendar)
474 (day unsigned-int))
475
476(defbinding calendar-unmark-day () int
477 (calendar calendar)
478 (day unsigned-int))
479
480(defbinding calendar-clear-marks () nil
481 (calendar calendar))
482
d76e9fca 483(defbinding calendar-get-date () nil
0f476ab5 484 (calendar calendar)
485 (year unsigned-int :out)
486 (month unsigned-int :out)
487 (day unsigned-int :out))
488
489(defbinding calendar-freeze () nil
490 (calendar calendar))
491
492(defbinding calendar-thaw () nil
493 (calendar calendar))
494
495
0f476ab5 496;;; Check menu item
497
498(defbinding check-menu-item-toggled () nil
499 (check-menu-item check-menu-item))
500
501
0f476ab5 502;;; Color selection
503
504(defbinding (color-selection-is-adjusting-p
505 "gtk_color_selection_is_adjusting") () boolean
506 (colorsel color-selection))
507
508
509
510;;; Color selection dialog -- no functions
511
512
513
1a1949c7 514;;;; Combo Box
0f476ab5 515
d76e9fca 516(defmethod initialize-instance ((combo-box combo-box) &rest initargs
517 &key model content active)
518 (remf initargs :active)
519 (if model
520 (apply #'call-next-method combo-box initargs)
521 (progn
522 (apply #'call-next-method combo-box
523 :model (make-instance 'list-store :column-types '(string))
524 initargs)
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)))))
529 (when content
530 (mapc #'(lambda (text)
531 (combo-box-append-text combo-box text))
532 content))
533 (when active
534 (setf (combo-box-active combo-box) active)))
535
1a1949c7 536
537;; (defmethod shared-initialize :after ((combo-box combo-box) names &key active)
538;; (when active
539;; (signal-emit combo-box 'changed)))
540
541(defbinding combo-box-append-text () nil
542 (combo-box combo-box)
543 (text string))
544
545(defbinding combo-box-insert-text () nil
546 (combo-box combo-box)
547 (position int)
548 (text string))
549
550(defbinding combo-box-prepend-text () nil
551 (combo-box combo-box)
552 (text string))
553
554#+gtk2.6
555(defbinding combo-box-get-active-text () string
556 (combo-box combo-box))
0f476ab5 557
1a1949c7 558(defbinding combo-box-popup () nil
559 (combo-box combo-box))
0f476ab5 560
1a1949c7 561(defbinding combo-box-popdown () nil
562 (combo-box combo-box))
563
564
565
566;;;; Combo Box Entry
567
d76e9fca 568(defmethod initialize-instance ((combo-box-entry combo-box-entry) &key model)
1a1949c7 569 (call-next-method)
570 (unless model
571 (setf (combo-box-entry-text-column combo-box-entry) 0)))
0f476ab5 572
573
48da76bf 574;;;; Dialog
0f476ab5 575
c49be931 576(defmethod shared-initialize ((dialog dialog) names &rest initargs
577 &key button buttons)
578 (declare (ignore button buttons))
579 (prog1
580 (call-next-method)
581 (initial-apply-add dialog #'dialog-add-button initargs :button :buttons)))
48da76bf 582
0f476ab5 583
14c94516 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)))
589 (cond
590 ((and responses (position response responses :test #'equal)))
591 (create-p
1047e159 592 (cond
14c94516 593 (responses
594 (vector-push-extend response responses)
595 (1- (length responses)))
1047e159 596 (t
597 (setf
14c94516 598 (object-data dialog 'responses)
599 (make-array 1 :adjustable t :fill-pointer t
600 :initial-element response))
1047e159 601 0)))
602 (error-p
14c94516 603 (error "Invalid response: ~A" response))))))
0f476ab5 604
14c94516 605(defun dialog-find-response (dialog id)
606 "Finds a symbolic response given a numeric id"
607 (if (< id 0)
608 (int-to-response-type id)
609 (aref (object-data dialog 'responses) id)))
610
611
612(defmethod compute-signal-id ((dialog dialog) signal)
613 (if (dialog-response-id dialog signal)
614 (ensure-signal-id 'response dialog)
615 (call-next-method)))
616
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)))
621 (if id
622 #'(lambda (dialog response)
623 (when (= response id)
624 (funcall callback dialog)))
625 callback)))
0f476ab5 626
48da76bf 627(defbinding dialog-run () nil
628 (dialog dialog))
0f476ab5 629
14c94516 630(defbinding dialog-response (dialog response) nil
0f476ab5 631 (dialog dialog)
14c94516 632 ((dialog-response-id dialog response nil t) int))
0f476ab5 633
634
635(defbinding %dialog-add-button () button
636 (dialog dialog)
637 (text string)
14c94516 638 (response-id int))
0f476ab5 639
1047e159 640(defun dialog-add-button (dialog label &optional (response label)
641 &key default object after)
40b2615c 642 "Adds a button to the dialog."
14c94516 643 (let* ((signal (if (functionp response)
644 label
645 response))
646 (id (dialog-response-id dialog signal t))
647 (button (%dialog-add-button dialog label id)))
1047e159 648 (when (functionp response)
14c94516 649 (signal-connect dialog signal response :object object :after after))
1047e159 650 (when default
14c94516 651 (%dialog-set-default-response dialog id))
0f476ab5 652 button))
653
654
14c94516 655(defbinding %dialog-add-action-widget () nil
0f476ab5 656 (dialog dialog)
657 (action-widget widget)
14c94516 658 (response-id int))
0f476ab5 659
1047e159 660(defun dialog-add-action-widget (dialog widget &optional (response widget)
661 &key default object after)
14c94516 662 (let* ((signal (if (functionp response)
663 widget
664 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)
1047e159 669 (when (functionp response)
14c94516 670 (signal-connect dialog signal response :object object :after after))
1047e159 671 (when default
14c94516 672 (%dialog-set-default-response dialog id))
0f476ab5 673 widget))
0f476ab5 674
0f476ab5 675
48da76bf 676(defbinding %dialog-set-default-response () nil
677 (dialog dialog)
14c94516 678 (response-id int))
0f476ab5 679
14c94516 680(defun dialog-set-default-response (dialog response)
48da76bf 681 (%dialog-set-default-response
14c94516 682 dialog (dialog-response-id dialog response nil t)))
0f476ab5 683
14c94516 684(defbinding dialog-set-response-sensitive (dialog response sensitive) nil
48da76bf 685 (dialog dialog)
14c94516 686 ((dialog-response-id dialog response nil t) int)
48da76bf 687 (sensitive boolean))
0f476ab5 688
40b2615c 689#+gtk2.6
647c99e5 690(defbinding alternative-dialog-button-order-p (&optional screen) boolean
691 (screen (or null gdk:screen)))
40b2615c 692
693#+gtk2.6
694(defbinding (dialog-set-alternative-button-order
695 "gtk_dialog_set_alternative_button_order_from_array")
696 (dialog new-order)
697 (dialog dialog)
698 ((length new-order) int)
14c94516 699 ((map 'vector #'(lambda (response)
700 (dialog-response-id dialog response nil t))
40b2615c 701 new-order) (vector int)))
0f476ab5 702
48da76bf 703
704(defmethod container-add ((dialog dialog) (child widget) &rest args)
1047e159 705 (apply #'container-add (dialog-vbox dialog) child args))
48da76bf 706
14c94516 707
48da76bf 708(defmethod container-remove ((dialog dialog) (child widget))
1047e159 709 (container-remove (dialog-vbox dialog) child))
0f476ab5 710
48da76bf 711(defmethod container-children ((dialog dialog))
1047e159 712 (container-children (dialog-vbox dialog)))
48da76bf 713
714(defmethod (setf container-children) (children (dialog dialog))
1047e159 715 (setf (container-children (dialog-vbox dialog)) children))
560af5c5 716
560af5c5 717
aaa6e6cb 718;;; Entry
560af5c5 719
aaa6e6cb 720(defbinding entry-get-layout-offsets () nil
721 (entry entry)
722 (x int :out)
723 (y int :out))
560af5c5 724
d76e9fca 725(defbinding entry-layout-index-to-text-index () int
726 (entry entry)
727 (layout-index int))
728
729(defbinding entry-text-index-to-layout-index () int
730 (entry entry)
731 (text-index int))
732
560af5c5 733
f45fd227 734;;; Entry Completion
735
736(def-callback-marshal %entry-completion-match-func
737 (boolean entry-completion string (copy-of tree-iter)))
738
739(defbinding entry-completion-set-match-func (completion function) nil
740 (completion entry-completion)
741 ((callback %entry-completion-match-func) pointer)
742 ((register-callback-function function) unsigned-int)
73572c12 743 ((callback user-data-destroy-func) pointer))
f45fd227 744
745(defbinding entry-completion-complete () nil
746 (completion entry-completion))
747
748#+gtk2.6
749(defbinding entry-completion-insert-prefix () nil
750 (completion entry-completion))
751
752(defbinding entry-completion-insert-action-text () nil
753 (completion entry-completion)
754 (index int)
755 (text string))
756
757(defbinding entry-completion-insert-action-markup () nil
758 (completion entry-completion)
759 (index int)
760 (markup string))
761
762(defbinding entry-completion-delete-action () nil
763 (completion entry-completion)
764 (index int))
765
766
68f519e0 767;;; File Chooser
768
769(defmethod initialize-instance ((file-chooser file-chooser) &rest initargs
770 &key filter filters shortcut-folder
771 shortcut-folders shortcut-folder-uti
772 shortcut-folder-uris)
773 (declare (ignore filter filters shortcut-folder shortcut-folders
774 shortcut-folder-uti shortcut-folder-uris))
775 (prog1
776 (call-next-method)
777 (initial-add file-chooser #'file-chooser-add-filter
778 initargs :filer :filters)
779 (initial-add file-chooser #'file-chooser-add-shortcut-folder
780 initargs :shortcut-folder :shortcut-folders)
781 (initial-add file-chooser #'file-chooser-add-shortcut-folder-uri
782 initargs :shortcut-folder-uri :shortcut-folders-uris)))
783
784
785(defbinding file-chooser-select-filename () boolean
786 (file-chooser file-chooser)
787 (filename string))
788
789(defbinding file-chooser-unselect-filename () nil
790 (file-chooser file-chooser)
791 (filename string))
792
793(defbinding file-chooser-select-all () boolean
794 (file-chooser file-chooser))
795
796(defbinding file-chooser-unselect-all () boolean
797 (file-chooser file-chooser))
798
799(defbinding file-chooser-get-filenames () (gslist string)
800 (file-chooser file-chooser))
801
802(defbinding file-chooser-select-uri () boolean
803 (file-chooser file-chooser)
804 (uri string))
805
806(defbinding file-chooser-unselect-uri () nil
807 (file-chooser file-chooser)
808 (uri string))
809
810(defbinding file-chooser-get-uris () (gslist string)
811 (file-chooser file-chooser))
812
813(defbinding file-chooser-add-filter () nil
814 (file-chooser file-chooser)
815 (filter file-filter))
816
817(defbinding file-chooser-remove-filter () nil
818 (file-chooser file-chooser)
819 (filter file-filter))
820
821(defbinding file-chooser-list-filters () (gslist file-filter)
822 (file-chooser file-chooser))
823
824(defbinding file-chooser-add-shortcut-folder () boolean
825 (file-chooser file-chooser)
826 (folder string)
827 (nil null))
828
829(defbinding file-chooser-remove-shortcut-folder () nil
830 (file-chooser file-chooser)
831 (folder string)
832 (nil null))
833
834(defbinding file-chooser-list-shortcut-folders () (gslist string)
835 (file-chooser file-chooser))
836
837(defbinding file-chooser-add-shortcut-folder-uri () boolean
838 (file-chooser file-chooser)
839 (uri string)
840 (nil null))
841
842(defbinding file-chooser-remove-shortcut-folder-uri () nil
843 (file-chooser file-chooser)
844 (uri string)
845 (nil null))
846
847(defbinding file-chooser-list-shortcut-folder-uris () (gslist string)
848 (file-chooser file-chooser))
849
850
851;;; File Filter
852
853(defmethod initialize-instance ((file-filter file-filter) &rest initargs
854 &key mime-type mime-types pattern patterns
855 pixbuf-formats)
856 (declare (ignore mime-type mime-types pattern patterns))
857 (prog1
858 (call-next-method)
859 (when pixbuf-formats
860 #-gtk2.6(warn "Initarg :PIXBUF-FORMATS not supportet in this version of Gtk")
861 #+gtk2.6(file-filter-add-pixbuf-formats file-filter))
862 (initial-add file-filter #'file-filter-add-mime-type
863 initargs :mime-type :mime-types)
864 (initial-add file-filter #'file-filter-add-pattern
865 initargs :pattern :patterns)))
866
867
868(defbinding file-filter-add-mime-type () nil
869 (filter file-filter)
870 (mime-type string))
871
872(defbinding file-filter-add-pattern () nil
873 (filter file-filter)
874 (pattern string))
875
876#+gtk2.6
877(defbinding file-filter-add-pixbuf-formats () nil
647c99e5 878 (filter file-filter))
68f519e0 879
880(def-callback-marshal %file-filter-func (boolean file-filter-info))
881
73572c12 882(defbinding file-filter-add-custom (filter needed function) nil
68f519e0 883 (filter file-filter)
884 (needed file-filter-flags)
885 ((callback %file-filter-func) pointer)
886 ((register-callback-function function) unsigned-int)
73572c12 887 ((callback user-data-destroy-func) pointer))
68f519e0 888
889(defbinding file-filter-get-needed () file-filter-flags
890 (filter file-filter))
891
892(defbinding file-filter-filter () boolean
893 (filter file-filter)
894 (filter-info file-filter-info))
895
896
897
1047e159 898;;; Image
899
900(defbinding image-set-from-file () nil
901 (image image)
902 (filename pathname))
903
d76e9fca 904(defmethod (setf image-pixmap) ((data vector) (image image))
905 (multiple-value-bind (pixmap mask) (gdk:pixmap-create data)
906 (setf (image-pixmap image) pixmap)
907 (setf (image-mask image) mask)))
908
909(defmethod initialize-instance ((image image) &rest initargs &key pixmap file)
910 (cond
911 ((typep pixmap 'vector)
912 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap)
913 (apply #'call-next-method image :pixmap pixmap :mask mask initargs)))
914 (file
915 (prog1
916 (call-next-method)
917 (image-set-from-file image file)))
918 ((call-next-method))))
1047e159 919
cb4bf772 920(defun create-image-widget (source &optional mask)
d76e9fca 921 (etypecase source
922 (gdk:pixbuf (make-instance 'image :pixbuf source))
923 (string (make-instance 'image :stock source))
924 (pathname (make-instance 'image :file source))
925 ((or list vector) (make-instance 'image :pixmap source))
926 (gdk:pixmap (make-instance 'image :pixmap source :mask mask))))
1047e159 927
1047e159 928
d76e9fca 929;;; Image menu item
1047e159 930
d76e9fca 931(defmethod initialize-instance ((item image-menu-item) &rest initargs &key image)
932 (if (and image (not (typep image 'widget)))
cb4bf772 933 (apply #'call-next-method item :image (create-image-widget image) initargs)
d76e9fca 934 (call-next-method)))
1047e159 935
d76e9fca 936
937(defmethod (setf image-menu-item-image) ((widget widget) (item image-menu-item))
938 (setf (slot-value item 'image) widget))
939
940(defmethod (setf image-menu-item-image) (image (item image-menu-item))
cb4bf772 941 (setf (image-menu-item-image item) (create-image-widget image)))
1047e159 942
560af5c5 943
0f476ab5 944;;; Label
560af5c5 945
881fe3c3 946(defmethod shared-initialize ((label label) names &key pattern)
947 (declare (ignore names))
948 (call-next-method)
949 (when pattern
950 (setf (label-pattern label) pattern)))
951
aaa6e6cb 952(defbinding label-get-layout-offsets () nil
1047e159 953 (label label)
aaa6e6cb 954 (x int :out)
955 (y int :out))
956
0f476ab5 957(defbinding label-select-region () nil
958 (label label)
959 (start int)
960 (end int))
560af5c5 961
1047e159 962(defbinding label-get-selection-bounds () boolean
aaa6e6cb 963 (label label)
964 (start int :out)
965 (end int :out))
f36ca6af 966
560af5c5 967
968
969;;; Radio button
970
e5b416f0 971(defbinding %radio-button-get-group () pointer
d520140e 972 (radio-button radio-button))
973
bbaeff4b 974(defbinding %radio-button-set-group () nil
d520140e 975 (radio-button radio-button)
976 (group pointer))
560af5c5 977
cb4bf772 978(defmethod add-to-radio-group ((button1 radio-button) (button2 radio-button))
d520140e 979 "Add BUTTON1 to the group which BUTTON2 belongs to."
980 (%radio-button-set-group button1 (%radio-button-get-group button2)))
981
a5522de5 982(defun %add-activate-callback (widget signal function object after)
983 (if object
984 (signal-connect widget signal
985 #'(lambda (object)
986 (when (slot-value widget 'active)
987 (funcall function object (slot-value widget 'value))))
988 :object object :after after)
989 (signal-connect widget signal
990 #'(lambda ()
991 (when (slot-value widget 'active)
992 (funcall function (slot-value widget 'value))))
993 :after after)))
994
995(defmethod activate-radio-widget ((button radio-button))
996 (signal-emit button 'clicked))
997
998(defmethod add-activate-callback ((button radio-button) function &key object after)
999 (%add-activate-callback button 'clicked function object after))
1000
d76e9fca 1001(defmethod initialize-instance ((button radio-button) &key group)
1002 (prog1
1003 (call-next-method)
1004 (when group
cb4bf772 1005 (add-to-radio-group button group))))
560af5c5 1006
1007
560af5c5 1008;;; Item
1009
bbaeff4b 1010(defbinding item-select () nil
560af5c5 1011 (item item))
1012
bbaeff4b 1013(defbinding item-deselect () nil
560af5c5 1014 (item item))
1015
bbaeff4b 1016(defbinding item-toggle () nil
560af5c5 1017 (item item))
1018
1019
1020
1021;;; Menu item
1022
d76e9fca 1023(defmethod initialize-instance ((item menu-item) &key label)
1024 (prog1
1025 (call-next-method)
1026 (when label
1027 (setf (menu-item-label item) label))))
1028
1029
f36ca6af 1030(defun (setf menu-item-label) (label menu-item)
1031 (make-instance 'accel-label
1032 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
d76e9fca 1033 :use-underline (menu-item-use-underline-p menu-item)
1034 :visible t :parent menu-item)
f36ca6af 1035 label)
560af5c5 1036
f5b67f2b 1037(defun menu-item-label (menu-item)
d76e9fca 1038 (when (and (slot-boundp menu-item 'child)
1039 (typep (bin-child menu-item) 'label))
1040 (label-label (bin-child menu-item))))
f5b67f2b 1041
d76e9fca 1042(defbinding menu-item-remove-submenu () nil
f36ca6af 1043 (menu-item menu-item))
560af5c5 1044
f5b67f2b 1045(defbinding menu-item-set-accel-path () nil
1046 (menu-item menu-item)
1047 (accel-path string))
1048
bbaeff4b 1049(defbinding menu-item-select () nil
f36ca6af 1050 (menu-item menu-item))
560af5c5 1051
bbaeff4b 1052(defbinding menu-item-deselect () nil
f36ca6af 1053 (menu-item menu-item))
560af5c5 1054
bbaeff4b 1055(defbinding menu-item-activate () nil
f36ca6af 1056 (menu-item menu-item))
560af5c5 1057
f5b67f2b 1058(defbinding menu-item-toggle-size-request () nil
1059 (menu-item menu-item)
1060 (requisition int :out))
1061
1062(defbinding menu-item-toggle-size-allocate () nil
1063 (menu-item menu-item)
1064 (allocation int))
1065
560af5c5 1066
d76e9fca 1067;;; Menu tool button
1068
1069#+gtk2.6
647c99e5 1070(defbinding menu-tool-button-set-arrow-tooltip () nil
d76e9fca 1071 (menu-tool-button menu-tool-button)
1072 (tooltips tooltips)
1073 (tip-text string)
1074 (tip-private string))
1075
1076
f4267180 1077;;; Message dialog
1078
7a2e0799 1079(defmethod initialize-instance ((dialog message-dialog)
1080 &key (message-type :info) (buttons :close)
1081 flags text #+gtk 2.6 secondary-text
1082 transient-parent)
f4267180 1083 (setf
1084 (slot-value dialog 'location)
7a2e0799 1085 (%message-dialog-new transient-parent flags message-type buttons))
1086 (when text
1087 (message-dialog-set-markup dialog text))
1088 #+gtk2.6
1089 (when secondary-text
1090 (message-dialog-format-secondary-markup dialog secondary-text))
1091 (call-next-method))
f4267180 1092
1093
1094(defbinding %message-dialog-new () pointer
1095 (parent (or null window))
1096 (flags dialog-flags)
1097 (type message-type)
1098 (buttons buttons-type)
7a2e0799 1099 (nil null))
f4267180 1100
1101(defbinding message-dialog-set-markup () nil
1102 (message-dialog message-dialog)
1103 (markup string))
1104
1105#+gtk2.6
1106(defbinding message-dialog-format-secondary-text () nil
1107 (message-dialog message-dialog)
1108 (text string))
1109
1110#+gtk2.6
1111(defbinding message-dialog-format-secondary-markup () nil
1112 (message-dialog message-dialog)
1113 (markup string))
1114
1115
560af5c5 1116
f36ca6af 1117;;; Radio menu item
560af5c5 1118
e5b416f0 1119(defbinding %radio-menu-item-get-group () pointer
d520140e 1120 (radio-menu-item radio-menu-item))
1121
bbaeff4b 1122(defbinding %radio-menu-item-set-group () nil
d520140e 1123 (radio-menu-item radio-menu-item)
1124 (group pointer))
1125
a5522de5 1126(defmethod activate-radio-widget ((item radio-menu-item))
1127 (menu-item-activate item))
1128
cb4bf772 1129(defmethod add-to-radio-group ((item1 radio-menu-item) (item2 radio-menu-item))
d520140e 1130 "Add ITEM1 to the group which ITEM2 belongs to."
1131 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
1132
a5522de5 1133(defmethod add-activate-callback ((item radio-menu-item) function &key object after)
1134 (%add-activate-callback item 'activate function object after))
1135
d76e9fca 1136(defmethod initialize-instance ((item radio-menu-item) &key group)
f5b67f2b 1137 (prog1
1138 (call-next-method)
d76e9fca 1139 (when group
cb4bf772 1140 (add-to-radio-group item group))))
1141
d520140e 1142
560af5c5 1143
d76e9fca 1144;;; Radio tool button
1145
1146(defbinding %radio-tool-button-get-group () pointer
1147 (radio-tool-button radio-tool-button))
1148
1149(defbinding %radio-tool-button-set-group () nil
1150 (radio-tool-button radio-tool-button)
1151 (group pointer))
1152
a5522de5 1153(defmethod activate-radio-widget ((button radio-tool-button))
1154 (signal-emit button 'clicked))
1155
cb4bf772 1156(defmethod add-to-radio-group ((button1 radio-tool-button) (button2 radio-tool-button))
d76e9fca 1157 "Add BUTTON1 to the group which BUTTON2 belongs to."
1158 (%radio-tool-button-set-group button1 (%radio-tool-button-get-group button2)))
a5522de5 1159(defmethod add-activate-callback ((button radio-tool-button) function &key object after)
1160 (%add-activate-callback button 'clicked function object after))
d76e9fca 1161
1162(defmethod initialize-instance ((button radio-tool-button) &key group)
1163 (prog1
1164 (call-next-method)
1165 (when group
cb4bf772 1166 (add-to-radio-group button group))))
1167
d76e9fca 1168
560af5c5 1169
aaa6e6cb 1170;;; Toggle button
1171
1172(defbinding toggle-button-toggled () nil
1173 (toggle-button toggle-button))
1174
1175
560af5c5 1176;;; Window
1177
c49be931 1178(defmethod initialize-instance ((window window) &rest initargs
1179 &key accel-group accel-groups)
1180 (declare (ignore accel-group accel-groups))
1181 (prog1
1182 (call-next-method)
1183 (initial-add window #'window-add-accel-group
1184 initargs :accel-group :accel-groups)))
73d58e01 1185
1186
7625ebd8 1187(defbinding window-set-wmclass () nil
560af5c5 1188 (window window)
1189 (wmclass-name string)
1190 (wmclass-class string))
1191
bbaeff4b 1192(defbinding window-add-accel-group () nil
560af5c5 1193 (window window)
1194 (accel-group accel-group))
1195
bbaeff4b 1196(defbinding window-remove-accel-group () nil
560af5c5 1197 (window window)
1198 (accel-group accel-group))
1199
bbaeff4b 1200(defbinding window-activate-focus () int
560af5c5 1201 (window window))
1202
bbaeff4b 1203(defbinding window-activate-default () int
560af5c5 1204 (window window))
1205
7625ebd8 1206(defbinding window-set-default-size (window width height) int
560af5c5 1207 (window window)
7625ebd8 1208 ((or width -1) int)
1209 ((or height -1) int))
560af5c5 1210
4d16221f 1211(defbinding %window-set-geometry-hints () nil
1212 (window window)
1213 (geometry gdk:geometry)
1214 (geometry-mask gdk:window-hints))
1215
1216(defun window-set-geometry-hints (window &key min-width min-height
1217 max-width max-height base-width base-height
1218 width-inc height-inc min-aspect max-aspect
1219 (gravity nil gravity-p) min-size max-size)
1220 (let ((geometry (make-instance 'gdk:geometry
1221 :min-width (or min-width -1)
1222 :min-height (or min-height -1)
1223 :max-width (or max-width -1)
1224 :max-height (or max-height -1)
1225 :base-width (or base-width 0)
1226 :base-height (or base-height 0)
1227 :width-inc (or width-inc 0)
1228 :height-inc (or height-inc 0)
1229 :min-aspect (or min-aspect 0)
1230 :max-aspect (or max-aspect 0)
1231 :gravity gravity))
1232 (mask ()))
1233 (when (or min-size min-width min-height)
1234 (push :min-size mask))
1235 (when (or max-size max-width max-height)
1236 (push :max-size mask))
1237 (when (or base-width base-height)
1238 (push :base-size mask))
1239 (when (or width-inc height-inc)
1240 (push :resize-inc mask))
1241 (when (or min-aspect max-aspect)
1242 (push :aspect mask))
1243 (when gravity-p
1244 (push :win-gravity mask))
1245 (%window-set-geometry-hints window geometry mask)))
560af5c5 1246
73d58e01 1247(defbinding window-list-toplevels () (glist (copy-of window))
1248 "Returns a list of all existing toplevel windows.")
7625ebd8 1249
1250(defbinding window-add-mnemonic (window key target) nil
1251 (window window)
1252 ((gdk:keyval-from-name key) unsigned-int)
1253 (target widget))
1254
1255(defbinding window-remove-mnemonic (window key target) nil
1256 (window window)
1257 ((gdk:keyval-from-name key) unsigned-int)
1258 (target widget))
1259
1260(defbinding window-mnemonic-activate (window key modifier) nil
1261 (window window)
1262 ((gdk:keyval-from-name key) unsigned-int)
1263 (modifier gdk:modifier-type))
1264
4d16221f 1265(defbinding window-activate-key () boolean
1266 (window window)
1267 (event gdk:key-event))
1268
1269(defbinding window-propagate-key-event () boolean
1270 (window window)
1271 (event gdk:key-event))
1272
7625ebd8 1273(defbinding window-present () nil
1274 (window window))
1275
1276(defbinding window-iconify () nil
1277 (window window))
1278
1279(defbinding window-deiconify () nil
1280 (window window))
1281
1282(defbinding window-stick () nil
1283 (window window))
1284
1285(defbinding window-unstick () nil
1286 (window window))
1287
1288(defbinding window-maximize () nil
1289 (window window))
1290
1291(defbinding window-unmaximize () nil
1292 (window window))
1293
4d16221f 1294(defbinding window-fullscreen () nil
1295 (window window))
1296
1297(defbinding window-unfullscreen () nil
1298 (window window))
1299
1300(defbinding window-set-keep-above () nil
1301 (window window)
1302 (setting boolean))
1303
1304(defbinding window-set-keep-below () nil
1305 (window window)
1306 (setting boolean))
1307
7625ebd8 1308(defbinding window-begin-resize-drag () nil
1309 (window window)
1310 (edge gdk:window-edge)
1311 (button int)
1312 (root-x int) (root-y int)
9adccb27 1313 (timestamp unsigned-int))
7625ebd8 1314
1315(defbinding window-begin-move-drag () nil
1316 (window window)
1317 (edge gdk:window-edge)
1318 (button int)
1319 (root-x int) (root-y int)
9adccb27 1320 (timestamp unsigned-int))
7625ebd8 1321
1322(defbinding window-set-frame-dimensions () nil
1323 (window window)
1324 (left int) (top int) (rigth int) (bottom int))
1325
7625ebd8 1326(defbinding %window-get-default-size () nil
1327 (window window)
1328 (width int :out)
1329 (height int :out))
1330
1331(defun window-get-default-size (window)
1332 (multiple-value-bind (width height) (%window-get-default-size window)
1333 (values (unless (= width -1) width) (unless (= height -1) height))))
1334
1335(defbinding window-get-frame-dimensions () nil
1336 (window window)
1337 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
1338
1339(defbinding %window-get-icon-list () (glist gdk:pixbuf)
1340 (window window))
1341
7625ebd8 1342(defbinding window-get-position () nil
1343 (window window)
1344 (root-x int :out)
1345 (root-y int :out))
1346
1347(defbinding window-get-size () nil
1348 (window window)
1349 (width int :out)
1350 (height int :out))
1351
1352(defbinding window-move () nil
1353 (window window)
1354 (x int)
1355 (y int))
1356
1357(defbinding window-parse-geometry () boolean
1358 (window window)
1359 (geometry string))
1360
1361(defbinding window-reshow-with-initial-size () nil
1362 (window window))
1363
1364(defbinding window-resize () nil
1365 (window window)
1366 (width int)
1367 (heigth int))
1368
4d16221f 1369(defbinding (window-default-icon-list "gtk_window_get_default_icon_list")
1370 () (glist gdk:pixbuf))
1371
1372(defun window-default-icon ()
1373 (first (window-default-icon-list)))
1374
1375(defbinding %window-set-default-icon-list () nil
1376 (icons (glist gdk:pixbuf)))
1377
1378(defun (setf window-default-icon-list) (icons)
1379 (%window-set-default-icon-list icons)
1380 icons)
1381
1382(defbinding %window-set-default-icon () nil
1383 (icons (glist gdk:pixbuf)))
1384
1385(defmethod (setf window-default-icon) ((icon gdk:pixbuf))
1386 (%window-set-default-icon icon)
1387 icon)
1388
1389(defmethod (setf window-group) ((group window-group) (window window))
1390 (window-group-add-window group window)
1391 group)
1392
1393(defbinding %window-set-default-icon-from-file () boolean
1394 (filename pathname)
1395 (nil null))
1396
1397(defmethod (setf window-default-icon) ((icon-file pathname))
1398 (%window-set-default-icon-from-file icon-file)
1399 icon-file)
1400
1401(defbinding %window-set-icon-from-file () boolean
1402 (window window)
1403 (filename pathname)
1404 (nil null))
1405
1406(defmethod (setf window-icon) ((icon-file pathname) (window window))
1407 (%window-set-icon-from-file window icon-file)
1408 icon-file)
1409
1410(defbinding window-set-auto-startup-notification () nil
1411 (setting boolean))
1412
1413(defbinding decorated-window-init () nil
1414 (window window))
1415
1416(defbinding decorated-window-calculate-frame-size () nil
1417 (window window))
1418
1419(defbinding decorated-window-set-title () nil
7625ebd8 1420 (window window)
4d16221f 1421 (title string))
7625ebd8 1422
4d16221f 1423(defbinding decorated-window-move-resize-window () nil
1424 (window window)
1425 (x int)
1426 (y int)
1427 (width int)
1428 (heigth int))
7625ebd8 1429
1430
4d16221f 1431;;; Window group
560af5c5 1432
4d16221f 1433(defmethod initialize-instance ((window-group window-group) &rest initargs
1434 &key window windows)
1435 (declare (ignore window windows))
1436 (prog1
1437 (call-next-method)
1438 (initial-add window-group #'window-group-add-window
1439 initargs :window :windows)))
560af5c5 1440
560af5c5 1441
4d16221f 1442(defbinding window-group-add-window () nil
1443 (window-group window-group)
1444 (window window))
560af5c5 1445
4d16221f 1446(defbinding window-group-remove-window () nil
1447 (window-group window-group)
1448 (window window))
560af5c5 1449
1450
f36ca6af 1451;;; Scrolled window
560af5c5 1452
560af5c5 1453(defun (setf scrolled-window-scrollbar-policy) (policy window)
1454 (setf (scrolled-window-hscrollbar-policy window) policy)
1455 (setf (scrolled-window-vscrollbar-policy window) policy))
1456
bbaeff4b 1457(defbinding scrolled-window-add-with-viewport () nil
560af5c5 1458 (scrolled-window scrolled-window)
1459 (child widget))
1460
7a2e0799 1461(defmethod shared-initialize ((window scrolled-window) names &key policy)
1462 (declare (ignore names))
1463 (when policy
1464 (setf (slot-value window 'hscrollbar-policy) policy)
1465 (setf (slot-value window 'vscrollbar-policy) policy))
1466 (call-next-method))
d520140e 1467
560af5c5 1468
f36ca6af 1469;;; Statusbar
560af5c5 1470
d76e9fca 1471(defbinding statusbar-get-context-id () unsigned-int
f36ca6af 1472 (statusbar statusbar)
1473 (context-description string))
560af5c5 1474
bbaeff4b 1475(defbinding statusbar-push () unsigned-int
f36ca6af 1476 (statusbar statusbar)
1477 (context-id unsigned-int)
1478 (text string))
560af5c5 1479
bbaeff4b 1480(defbinding statusbar-pop () nil
f36ca6af 1481 (statusbar statusbar)
1482 (context-id unsigned-int))
560af5c5 1483
bbaeff4b 1484(defbinding statusbar-remove () nil
f36ca6af 1485 (statusbar statusbar)
1486 (context-id unsigned-int)
1487 (message-id unsigned-int))
560af5c5 1488
560af5c5 1489
1490
1491;;; Fixed
1492
bbaeff4b 1493(defbinding fixed-put () nil
f36ca6af 1494 (fixed fixed)
1495 (widget widget)
f5b67f2b 1496 (x int) (y int))
560af5c5 1497
bbaeff4b 1498(defbinding fixed-move () nil
f36ca6af 1499 (fixed fixed)
1500 (widget widget)
f5b67f2b 1501 (x int) (y int))
560af5c5 1502
1503
1504
d520140e 1505;;; Notebook
560af5c5 1506
68f519e0 1507(defun %ensure-notebook-position (notebook page)
f5b67f2b 1508 (etypecase page
68f519e0 1509 (position page)
f5b67f2b 1510 (widget (notebook-page-num notebook page t))))
1511
68f519e0 1512(defun %ensure-notebook-child (notebook position)
f5b67f2b 1513 (typecase position
1514 (widget position)
68f519e0 1515 (t (notebook-get-nth-page notebook position))))
f5b67f2b 1516
1517(defbinding (notebook-insert "gtk_notebook_insert_page_menu")
f36ca6af 1518 (notebook position child tab-label &optional menu-label) nil
1519 (notebook notebook)
1520 (child widget)
1521 ((if (stringp tab-label)
f5b67f2b 1522 (make-instance 'label :label tab-label)
f36ca6af 1523 tab-label) widget)
1524 ((if (stringp menu-label)
f5b67f2b 1525 (make-instance 'label :label menu-label)
f36ca6af 1526 menu-label) (or null widget))
68f519e0 1527 ((%ensure-notebook-position notebook position) position))
560af5c5 1528
f5b67f2b 1529(defun notebook-append (notebook child tab-label &optional menu-label)
1530 (notebook-insert notebook :last child tab-label menu-label))
560af5c5 1531
f5b67f2b 1532(defun notebook-prepend (notebook child tab-label &optional menu-label)
1533 (notebook-insert notebook :first child tab-label menu-label))
560af5c5 1534
f5b67f2b 1535(defbinding notebook-remove-page (notebook page) nil
f36ca6af 1536 (notebook notebook)
68f519e0 1537 ((%ensure-notebook-position notebook page) position))
560af5c5 1538
bbaeff4b 1539(defbinding %notebook-page-num () int
f36ca6af 1540 (notebook notebook)
1541 (child widget))
1542
f5b67f2b 1543(defun notebook-page-num (notebook child &optional error-p)
f36ca6af 1544 (let ((page-num (%notebook-page-num notebook child)))
1545 (if (= page-num -1)
f5b67f2b 1546 (when error-p
68f519e0 1547 (error "~A is not a page in ~A" child notebook))
f36ca6af 1548 page-num)))
1549
bbaeff4b 1550(defbinding notebook-next-page () nil
f36ca6af 1551 (notebook notebook))
560af5c5 1552
bbaeff4b 1553(defbinding notebook-prev-page () nil
f36ca6af 1554 (notebook notebook))
1555
f5b67f2b 1556(defbinding notebook-reorder-child (notebook child position) nil
1557 (notebook notebook)
1558 (child widget)
1559 ((%notebook-position notebook position) int))
1560
bbaeff4b 1561(defbinding notebook-popup-enable () nil
f36ca6af 1562 (notebook notebook))
1563
bbaeff4b 1564(defbinding notebook-popup-disable () nil
f36ca6af 1565 (notebook notebook))
1566
68f519e0 1567(defbinding notebook-get-nth-page () widget
f5b67f2b 1568 (notebook notebook)
68f519e0 1569 (page position))
f5b67f2b 1570
68f519e0 1571(defun %notebook-current-page (notebook)
1572 (when (slot-boundp notebook 'current-page-num)
1573 (notebook-get-nth-page notebook (notebook-current-page-num notebook))))
f5b67f2b 1574
1575(defun (setf notebook-current-page) (page notebook)
68f519e0 1576 (setf (notebook-current-page notebook) (notebook-page-num notebook page)))
f5b67f2b 1577
1047e159 1578(defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1579 (notebook page) widget
1580 (notebook notebook)
68f519e0 1581 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1582
1047e159 1583(defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
6bb23851 1584 (notebook page) (copy-of string)
1047e159 1585 (notebook notebook)
68f519e0 1586 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1587
1047e159 1588(defbinding %notebook-set-tab-label () nil
1589 (notebook notebook)
1590 (page widget)
1591 (tab-label widget))
1592
1593(defun (setf notebook-tab-label) (tab-label notebook page)
1594 (let ((widget (if (stringp tab-label)
1595 (make-instance 'label :label tab-label)
1596 tab-label)))
68f519e0 1597 (%notebook-set-tab-label notebook (%ensure-notebook-child notebook page) widget)
1047e159 1598 widget))
f5b67f2b 1599
f5b67f2b 1600
1047e159 1601(defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1602 (notebook page) widget
1603 (notebook notebook)
68f519e0 1604 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1605
1047e159 1606(defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
6bb23851 1607 (notebook page) (copy-of string)
1047e159 1608 (notebook notebook)
68f519e0 1609 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1610
1047e159 1611(defbinding %notebook-set-menu-label () nil
1612 (notebook notebook)
1613 (page widget)
1614 (menu-label widget))
1615
1616(defun (setf notebook-menu-label) (menu-label notebook page)
1617 (let ((widget (if (stringp menu-label)
1618 (make-instance 'label :label menu-label)
1619 menu-label)))
68f519e0 1620 (%notebook-set-menu-label notebook (%ensure-notebook-child notebook page) widget)
1047e159 1621 widget))
f5b67f2b 1622
1623
1624(defbinding notebook-query-tab-label-packing (notebook page) nil
f36ca6af 1625 (notebook notebook)
f5b67f2b 1626 ((%notebook-child notebook page) widget)
f36ca6af 1627 (expand boolean :out)
1628 (fill boolean :out)
1629 (pack-type pack-type :out))
1630
f5b67f2b 1631(defbinding notebook-set-tab-label-packing
1632 (notebook page expand fill pack-type) nil
f36ca6af 1633 (notebook notebook)
f5b67f2b 1634 ((%notebook-child notebook page) widget)
f36ca6af 1635 (expand boolean)
1636 (fill boolean)
1637 (pack-type pack-type))
1638
560af5c5 1639
1640
d520140e 1641;;; Paned
560af5c5 1642
bbaeff4b 1643(defbinding paned-pack1 () nil
d520140e 1644 (paned paned)
1645 (child widget)
1646 (resize boolean)
1647 (shrink boolean))
560af5c5 1648
bbaeff4b 1649(defbinding paned-pack2 () nil
d520140e 1650 (paned paned)
1651 (child widget)
1652 (resize boolean)
1653 (shrink boolean))
560af5c5 1654
560af5c5 1655
d520140e 1656;;; Layout
560af5c5 1657
bbaeff4b 1658(defbinding layout-put () nil
d520140e 1659 (layout layout)
68f519e0 1660 (child widget)
d520140e 1661 (x int)
1662 (y int))
560af5c5 1663
bbaeff4b 1664(defbinding layout-move () nil
d520140e 1665 (layout layout)
68f519e0 1666 (child widget)
d520140e 1667 (x int)
1668 (y int))
560af5c5 1669
68f519e0 1670(defbinding layout-set-size () nil
1671 (layout layout)
1672 (width unsigned-int)
1673 (height unsigned-int))
1674
1675(defbinding layout-get-size () nil
1676 (layout layout)
1677 (width unsigned-int :out)
1678 (height unsigned-int :out))
560af5c5 1679
1680
560af5c5 1681;;; Menu shell
1682
f5b67f2b 1683(defbinding menu-shell-insert (menu-shell menu-item position) nil
f36ca6af 1684 (menu-shell menu-shell)
1685 (menu-item menu-item)
f5b67f2b 1686 ((case position
1687 (:first 0)
1688 (:last -1)
1689 (t position)) int))
560af5c5 1690
f36ca6af 1691(defun menu-shell-append (menu-shell menu-item)
f5b67f2b 1692 (menu-shell-insert menu-shell menu-item :last))
560af5c5 1693
f36ca6af 1694(defun menu-shell-prepend (menu-shell menu-item)
f5b67f2b 1695 (menu-shell-insert menu-shell menu-item :fisrt))
560af5c5 1696
bbaeff4b 1697(defbinding menu-shell-deactivate () nil
f36ca6af 1698 (menu-shell menu-shell))
560af5c5 1699
bbaeff4b 1700(defbinding menu-shell-select-item () nil
f36ca6af 1701 (menu-shell menu-shell)
1702 (menu-item menu-item))
560af5c5 1703
d76e9fca 1704(defbinding menu-shell-select-first () nil
1705 (menu-shell menu-shell)
1706 (search-sensitive boolean))
1707
bbaeff4b 1708(defbinding menu-shell-deselect () nil
f36ca6af 1709 (menu-shell menu-shell))
560af5c5 1710
bbaeff4b 1711(defbinding menu-shell-activate-item () nil
f36ca6af 1712 (menu-shell menu-shell)
1713 (menu-item menu-item)
1714 (fore-deactivate boolean))
560af5c5 1715
d76e9fca 1716(defbinding menu-shell-cancel () nil
1717 (menu-shell menu-shell))
560af5c5 1718
1719
f5b67f2b 1720;;; Menu
560af5c5 1721
f5b67f2b 1722(defun %menu-position (menu child)
1723 (etypecase child
1724 (int child)
1725 (keyword (case child
1726 (:first 0)
1727 (:last -1)
1047e159 1728 (t (error "Invalid position keyword: ~A" child))))
f5b67f2b 1729 (widget (menu-child-position menu child))))
560af5c5 1730
1731
f5b67f2b 1732(defbinding menu-reorder-child (menu menu-item position) nil
1733 (menu menu)
1734 (menu-item menu-item)
1735 ((%menu-position menu position) int))
560af5c5 1736
d76e9fca 1737(defbinding menu-attach () nil
1738 (menu menu)
1739 (menu-item menu-item)
1740 (left-attach unsigned-int)
1741 (right-attach unsigned-int)
1742 (top-attach unsigned-int)
1743 (bottom-attach unsigned-int))
1744
1745(def-callback-marshal %menu-position-func (nil (menu menu) (x int) (y int) (push-in boolean)))
560af5c5 1746
f5b67f2b 1747(defbinding %menu-popup () nil
1748 (menu menu)
1749 (parent-menu-shell (or null menu-shell))
1750 (parent-menu-item (or null menu-item))
1751 (callback-func (or null pointer))
1752 (callback-id unsigned-int)
1753 (button unsigned-int)
1754 (activate-time (unsigned 32)))
1755
1756(defun menu-popup (menu button activate-time &key callback parent-menu-shell
1757 parent-menu-item)
1758 (if callback
1a1949c7 1759 (with-callback-function (id callback)
1760 (%menu-popup
1761 menu parent-menu-shell parent-menu-item
d76e9fca 1762 (callback %menu-position-func) id button activate-time))
f5b67f2b 1763 (%menu-popup
1764 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
1765
1766(defbinding menu-set-accel-path () nil
1767 (menu menu)
1768 (accel-path string))
560af5c5 1769
bbaeff4b 1770(defbinding menu-reposition () nil
f36ca6af 1771 (menu menu))
560af5c5 1772
bbaeff4b 1773(defbinding menu-popdown () nil
f36ca6af 1774 (menu menu))
560af5c5 1775
f5b67f2b 1776(defun menu-child-position (menu child)
1777 (position child (container-children menu)))
1778
1779(defun menu-active-num (menu)
1780 (menu-child-position menu (menu-active menu)))
1781
bbaeff4b 1782(defbinding %menu-set-active () nil
f36ca6af 1783 (menu menu)
1784 (index unsigned-int))
560af5c5 1785
f5b67f2b 1786(defun (setf menu-active) (menu child)
1787 (%menu-set-active menu (%menu-position menu child))
1788 child)
d520140e 1789
d76e9fca 1790(defcallback %menu-detach-func (nil (widget widget) (menu menu))
1791 (funcall (object-data menu 'detach-func) widget menu))
1792
1793(defbinding %menu-attach-to-widget () nil
1794 (menu menu)
1795 (widget widget)
1796 ((callback %menu-detach-func) pointer))
1797
1798(defun menu-attach-to-widget (menu widget function)
1799 (setf (object-data menu 'detach-func) function)
1800 (%menu-attach-to-widget menu widget))
1801
1802(defbinding menu-detach () nil
1803 (menu menu))
1804
1805#+gtk2.6
1806(defbinding menu-get-for-attach-widget () (copy-of (glist widget))
1807 (widget widget))
1808
1809(defbinding menu-set-monitor () nil
1810 (menu menu)
1811 (monitor-num int))
560af5c5 1812
1813
f36ca6af 1814;;; Table
560af5c5 1815
bbaeff4b 1816(defbinding table-resize () nil
f36ca6af 1817 (table table)
1818 (rows unsigned-int)
1819 (columns unsigned-int))
560af5c5 1820
bbaeff4b 1821(defbinding table-attach (table child left right top bottom
c49be931 1822 &key options x-options y-options
1823 (x-padding 0) (y-padding 0)) nil
f36ca6af 1824 (table table)
1825 (child widget)
1826 (left unsigned-int)
1827 (right unsigned-int)
1828 (top unsigned-int)
1829 (bottom unsigned-int)
c49be931 1830 ((append (mklist options) (mklist x-options)) attach-options)
1831 ((append (mklist options) (mklist y-options)) attach-options)
f36ca6af 1832 (x-padding unsigned-int)
1833 (y-padding unsigned-int))
1834
e5b416f0 1835
bbaeff4b 1836(defbinding %table-set-row-spacing () nil
f36ca6af 1837 (table table)
1838 (row unsigned-int)
1839 (spacing unsigned-int))
1840
e5b416f0 1841(defbinding %table-set-row-spacings () nil
1842 (table table)
1843 (spacing unsigned-int))
1844
1845(defun (setf table-row-spacing) (spacing table &optional row)
1846 (if row
1847 (%table-set-row-spacing table row spacing)
1848 (%table-set-row-spacings table spacing))
f36ca6af 1849 spacing)
1850
e5b416f0 1851(defbinding %table-get-row-spacing () unsigned-int
f36ca6af 1852 (table table)
e5b416f0 1853 (row unsigned-int))
1854
1855(defbinding %table-get-default-row-spacing () unsigned-int
1856 (table table))
1857
1858(defun table-row-spacing (table &optional row)
1859 (if row
1860 (%table-get-row-spacing table row)
1861 (%table-get-default-row-spacing table)))
1862
f36ca6af 1863
bbaeff4b 1864(defbinding %table-set-col-spacing () nil
f36ca6af 1865 (table table)
1866 (col unsigned-int)
1867 (spacing unsigned-int))
1868
e5b416f0 1869(defbinding %table-set-col-spacings () nil
1870 (table table)
1871 (spacing unsigned-int))
1872
1873(defun (setf table-col-spacing) (spacing table &optional col)
1874 (if col
1875 (%table-set-col-spacing table col spacing)
1876 (%table-set-col-spacings table spacing))
f36ca6af 1877 spacing)
1878
e5b416f0 1879(defbinding %table-get-col-spacing () unsigned-int
f36ca6af 1880 (table table)
e5b416f0 1881 (col unsigned-int))
1882
1883(defbinding %table-get-default-col-spacing () unsigned-int
1884 (table table))
1885
1886(defun table-col-spacing (table &optional col)
1887 (if col
1888 (%table-get-col-spacing table col)
1889 (%table-get-default-col-spacing table)))
1890
1891
f36ca6af 1892
1893;;; Toolbar
1894
cb4bf772 1895(defmethod initialize-instance ((toolbar toolbar) &rest initargs &key tooltips)
1896 (if (eq tooltips t)
1897 (apply #'call-next-method toolbar
1898 :tooltips (make-instance 'tooltips) initargs)
1899 (call-next-method)))
560af5c5 1900
cb4bf772 1901(defbinding %toolbar-insert () nil
f5b67f2b 1902 (toolbar toolbar)
cb4bf772 1903 (tool-item tool-item)
1904 (position position))
f36ca6af 1905
cb4bf772 1906(defun toolbar-insert (toolbar tool-item &optional (position :end))
1907 (%toolbar-insert toolbar tool-item position)
1908 (%tool-item-update-tooltips tool-item))
f5b67f2b 1909
cb4bf772 1910(defbinding toolbar-get-item-index () int
1911 (toolbar toolbar)
1912 (item tool-item))
f36ca6af 1913
cb4bf772 1914(defbinding toolbar-get-nth-item () tool-item
1915 (toolbar toolbar)
1916 (n int))
f36ca6af 1917
cb4bf772 1918(defbinding toolbar-get-drop-index () int
1919 (toolbar toolbar)
1920 (x int) (y int))
f36ca6af 1921
cb4bf772 1922(defbinding toolbar-set-drop-highlight-item () nil
1923 (toolbar toolbar)
1924 (tool-item tool-item)
1925 (index int))
f36ca6af 1926
560af5c5 1927
cb4bf772 1928;;; Tool button
560af5c5 1929
cb4bf772 1930(defmethod initialize-instance ((button tool-button) &rest initargs &key icon)
1931 (if (and icon (not (typep icon 'widget)))
1932 (apply #'call-next-method button :icon (create-image-widget icon) initargs)
1933 (call-next-method)))
560af5c5 1934
1935
cb4bf772 1936;;; Tool item
560af5c5 1937
cb4bf772 1938(defbinding tool-item-set-tooltip () nil
1939 (tool-item tool-item)
1940 (tooltips tooltips)
1941 (tip-text string)
1942 (tip-private string))
560af5c5 1943
560af5c5 1944
cb4bf772 1945(defun %tool-item-update-tooltips (tool-item)
1946 (when (and
1947 (slot-boundp tool-item 'parent)
1948 (or
1949 (user-data-p tool-item 'tip-text)
1950 (user-data-p tool-item 'tip-private)))
1951 (tool-item-set-tooltip
1952 tool-item (toolbar-tooltips (widget-parent tool-item))
1953 (or (user-data tool-item 'tip-text) "")
1954 (or (user-data tool-item 'tip-private) ""))))
1955
1956(defmethod (setf tool-item-tip-text) ((tip-text string) (tool-item tool-item))
1957 (setf (user-data tool-item 'tip-text) tip-text)
1958 (%tool-item-update-tooltips tool-item)
1959 tip-text)
1960
1961(defmethod (setf tool-item-tip-private) ((tip-private string) (tool-item tool-item))
1962 (setf (user-data tool-item 'tip-private) tip-private)
1963 (%tool-item-update-tooltips tool-item)
1964 tip-private)
1965
1966(defmethod container-add ((toolbar toolbar) (tool-item tool-item) &rest args)
1967 (declare (ignore args))
1968 (prog1
1969 (call-next-method)
1970 (%tool-item-update-tooltips tool-item)))
560af5c5 1971
d76e9fca 1972
1973(defbinding tool-item-retrieve-proxy-menu-item () widget
1974 (tool-item tool-item))
1975
1976(defbinding (tool-item-proxy-menu-item
1977 "gtk_tool_item_get_proxy_menu_item") () menu-item
1978 (tool-item tool-item)
1979 (menu-item-id string))
1980
1981(defbinding %tool-item-set-proxy-menu-item () nil
1982 (tool-item tool-item)
1983 (menu-item-id string)
1984 (menu-item menu-item))
1985
1986(defun (setf tool-item-proxy-menu-item) (menu-item menu-item-id tool-item)
1987 (%tool-item-set-proxy-menu-item menu-item-id tool-item menu-item)
1988 menu-item)
1989
1990#+gtk2.6
1991(defbinding tool-item-rebuild-menu () nil
1992 (tool-item tool-item))
1993
1994
bbaeff4b 1995;;; Editable
1047e159 1996
bbaeff4b 1997(defbinding editable-select-region (editable &optional (start 0) end) nil
f36ca6af 1998 (editable editable)
1999 (start int)
2000 ((or end -1) int))
560af5c5 2001
1047e159 2002(defbinding editable-get-selection-bounds (editable) nil
2003 (editable editable)
2004 (start int :out)
2005 (end int :out))
2006
d76e9fca 2007(defbinding editable-insert-text (editable text &optional (position 0)) nil
f36ca6af 2008 (editable editable)
2009 (text string)
2010 ((length text) int)
34fe0ead 2011 (position position :in-out))
560af5c5 2012
f36ca6af 2013(defun editable-append-text (editable text)
2014 (editable-insert-text editable text nil))
560af5c5 2015
f36ca6af 2016(defun editable-prepend-text (editable text)
2017 (editable-insert-text editable text 0))
560af5c5 2018
bbaeff4b 2019(defbinding editable-delete-text (editable &optional (start 0) end) nil
f36ca6af 2020 (editable editable)
2021 (start int)
2022 ((or end -1) int))
560af5c5 2023
bbaeff4b 2024(defbinding (editable-text "gtk_editable_get_chars")
f36ca6af 2025 (editable &optional (start 0) end) string
2026 (editable editable)
2027 (start int)
2028 ((or end -1) int))
560af5c5 2029
f36ca6af 2030(defun (setf editable-text) (text editable)
2031 (if text
2032 (editable-delete-text
2033 editable
2034 (editable-insert-text editable text))
2035 (editable-delete-text editable))
2036 text)
560af5c5 2037
bbaeff4b 2038(defbinding editable-cut-clipboard () nil
f36ca6af 2039 (editable editable))
560af5c5 2040
bbaeff4b 2041(defbinding editable-copy-clipboard () nil
f36ca6af 2042 (editable editable))
560af5c5 2043
bbaeff4b 2044(defbinding editable-paste-clipboard () nil
f36ca6af 2045 (editable editable))
560af5c5 2046
bbaeff4b 2047(defbinding editable-delete-selection () nil
f36ca6af 2048 (editable editable))
560af5c5 2049
560af5c5 2050
560af5c5 2051
f36ca6af 2052;;; Spin button
560af5c5 2053
d76e9fca 2054(defbinding spin-button-configure () nil
2055 (spin-button spin-button)
2056 (adjustment adjustment)
2057 (climb-rate double-float)
2058 (digits unsigned-int))
2059
2060(defbinding spin-button-set-range () nil
2061 (spin-button spin-button)
2062 (min double-float)
2063 (max double-float))
2064
2065(defbinding spin-button-get-range () nil
2066 (spin-button spin-button)
2067 (min double-float :out)
2068 (max double-float :out))
2069
f36ca6af 2070(defun spin-button-value-as-int (spin-button)
2071 (round (spin-button-value spin-button)))
560af5c5 2072
510fbcc1 2073(defbinding %spin-button-spin () nil
f36ca6af 2074 (spin-button spin-button)
2075 (direction spin-type)
510fbcc1 2076 (increment double-float))
2077
2078(defun spin-button-spin (spin-button value)
2079 (etypecase value
2080 (real (%spin-button-spin spin-button :spin-user-defined value))
2081 (spin-type (%spin-button-spin spin-button value 0))))
2082
560af5c5 2083
bbaeff4b 2084(defbinding spin-button-update () nil
f36ca6af 2085 (spin-button spin-button))
560af5c5 2086
2087
2088
2089; ;;; Ruler
2090
bbaeff4b 2091(defbinding ruler-set-range () nil
f36ca6af 2092 (ruler ruler)
2093 (lower single-float)
2094 (upper single-float)
2095 (position single-float)
2096 (max-size single-float))
560af5c5 2097
68f519e0 2098(defbinding ruler-get-range () nil
2099 (ruler ruler)
2100 (lower single-float :out)
2101 (upper single-float :out)
2102 (position single-float :out)
2103 (max-size single-float :out))
560af5c5 2104
560af5c5 2105
560af5c5 2106
d520140e 2107;;; Range
560af5c5 2108
1047e159 2109(defun range-lower (range)
2110 (adjustment-lower (range-adjustment range)))
560af5c5 2111
1047e159 2112(defun range-upper (range)
2113 (adjustment-upper (range-adjustment range)))
560af5c5 2114
1047e159 2115(defun (setf range-lower) (value range)
2116 (setf (adjustment-lower (range-adjustment range)) value))
560af5c5 2117
1047e159 2118(defun (setf range-upper) (value range)
2119 (setf (adjustment-upper (range-adjustment range)) value))
560af5c5 2120
1047e159 2121(defun range-page-increment (range)
2122 (adjustment-page-increment (range-adjustment range)))
560af5c5 2123
1047e159 2124(defun range-step-increment (range)
2125 (adjustment-step-increment (range-adjustment range)))
560af5c5 2126
1047e159 2127(defun (setf range-page-increment) (value range)
2128 (setf (adjustment-page-increment (range-adjustment range)) value))
560af5c5 2129
1047e159 2130(defun (setf range-step-increment) (value range)
2131 (setf (adjustment-step-increment (range-adjustment range)) value))
560af5c5 2132
1047e159 2133(defbinding range-set-range () nil
d520140e 2134 (range range)
1047e159 2135 (lower double-float)
2136 (upper double-float))
560af5c5 2137
1047e159 2138(defbinding range-set-increments () nil
d520140e 2139 (range range)
1047e159 2140 (step double-float)
2141 (page double-float))
560af5c5 2142
560af5c5 2143
d520140e 2144;;; Scale
560af5c5 2145
68f519e0 2146(defbinding scale-get-layout-offsets () nil
2147 (scale scale)
2148 (x int :out)
2149 (y int :out))
560af5c5 2150
560af5c5 2151
d520140e 2152;;; Progress bar
560af5c5 2153
bbaeff4b 2154(defbinding progress-bar-pulse () nil
d520140e 2155 (progress-bar progress-bar))
560af5c5 2156
2157
c49be931 2158;;; Size group
2159
2160(defmethod initialize-instance ((size-group size-group) &rest initargs
2161 &key widget widgets)
2162 (declare (ignore widget widgets))
2163 (prog1
2164 (call-next-method)
2165 (initial-add size-group #'size-group-add-widget
2166 initargs :widget :widgets)))
2167
2168
2169(defbinding size-group-add-widget () nil
2170 (size-group size-group)
2171 (widget widget))
2172
2173(defbinding size-group-remove-widget () nil
2174 (size-group size-group)
2175 (widget widget))
2176
560af5c5 2177
f5b67f2b 2178;;; Stock items
2179
73d58e01 2180(defbinding %stock-item-copy () pointer
2181 (location pointer))
2182
2183(defbinding %stock-item-free () nil
2184 (location pointer))
f5b67f2b 2185
73d58e01 2186(defmethod reference-foreign ((class (eql (find-class 'stock-item))) location)
2187 (%stock-item-copy location))
2188
2189(defmethod unreference-foreign ((class (eql (find-class 'stock-item))) location)
2190 (%stock-item-free location))
2191
2192(defbinding stock-add (stock-item) nil
2193 (stock-item stock-item)
2194 (1 unsigned-int))
2195
2196(defbinding stock-list-ids () (gslist string))
2197
2198(defbinding %stock-lookup () boolean
2199 (stock-id string)
2200 (location pointer))
2201
2202(defun stock-lookup (stock-id)
2203 (let ((location
2204 (allocate-memory (proxy-instance-size (find-class 'stock-item)))))
2205 (unwind-protect
2206 (when (%stock-lookup stock-id location)
2207 (ensure-proxy-instance 'stock-item (%stock-item-copy location)))
2208 (deallocate-memory location))))
560af5c5 2209
2210
2211;;; Tooltips
2212
bbaeff4b 2213(defbinding tooltips-enable () nil
d520140e 2214 (tooltips tooltips))
560af5c5 2215
bbaeff4b 2216(defbinding tooltips-disable () nil
d520140e 2217 (tooltips tooltips))
560af5c5 2218
e5b416f0 2219(defun (setf tooltips-enabled-p) (enable tooltips)
2220 (if enable
2221 (tooltips-enable tooltips)
2222 (tooltips-disable tooltips)))
2223
bbaeff4b 2224(defbinding tooltips-set-tip () nil
d520140e 2225 (tooltips tooltips)
2226 (widget widget)
2227 (tip-text string)
2228 (tip-private string))
560af5c5 2229
d76e9fca 2230(defbinding tooltips-data-get () tooltips-data
2231 (widget widget))
2232
bbaeff4b 2233(defbinding tooltips-force-window () nil
d520140e 2234 (tooltips tooltips))
560af5c5 2235
d76e9fca 2236(defbinding tooltips-get-info-from-tip-window () boolean
2237 (tip-window window)
2238 (tooltips tooltips :out)
2239 (current-widget widget :out))
560af5c5 2240
2241
c1c0746b 2242;;; Resource Files
560af5c5 2243
bbaeff4b 2244(defbinding rc-add-default-file (filename) nil
d520140e 2245 ((namestring (truename filename)) string))
560af5c5 2246
bbaeff4b 2247(defbinding rc-parse (filename) nil
d520140e 2248 ((namestring (truename filename)) string))
560af5c5 2249
bbaeff4b 2250(defbinding rc-parse-string () nil
d520140e 2251 (rc-string string))
560af5c5 2252
bbaeff4b 2253(defbinding rc-reparse-all () nil)
560af5c5 2254
bbaeff4b 2255(defbinding rc-get-style () style
d520140e 2256 (widget widget))