Disable SVG tests if librsvg is not available
[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
9176d301 23;; $Id: gtk.lisp,v 1.52 2006-02-09 22:32:47 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 ()
5c9cc66a 48 "clg 0.91 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
bdc0e300 704#+gtk2.8
705(progn
706 (defbinding %dialog-get-response-for-widget () int
707 (dialog dialog)
708 (widget widget))
709
710 (defun dialog-get-response-for-widget (dialog widget)
711 (dialog-find-response dialog (dialog-get-response-for-widget dialog widget))))
712
713
48da76bf 714(defmethod container-add ((dialog dialog) (child widget) &rest args)
1047e159 715 (apply #'container-add (dialog-vbox dialog) child args))
48da76bf 716
14c94516 717
48da76bf 718(defmethod container-remove ((dialog dialog) (child widget))
1047e159 719 (container-remove (dialog-vbox dialog) child))
0f476ab5 720
48da76bf 721(defmethod container-children ((dialog dialog))
1047e159 722 (container-children (dialog-vbox dialog)))
48da76bf 723
724(defmethod (setf container-children) (children (dialog dialog))
1047e159 725 (setf (container-children (dialog-vbox dialog)) children))
560af5c5 726
560af5c5 727
aaa6e6cb 728;;; Entry
560af5c5 729
aaa6e6cb 730(defbinding entry-get-layout-offsets () nil
731 (entry entry)
732 (x int :out)
733 (y int :out))
560af5c5 734
d76e9fca 735(defbinding entry-layout-index-to-text-index () int
736 (entry entry)
737 (layout-index int))
738
739(defbinding entry-text-index-to-layout-index () int
740 (entry entry)
741 (text-index int))
742
560af5c5 743
f45fd227 744;;; Entry Completion
745
746(def-callback-marshal %entry-completion-match-func
747 (boolean entry-completion string (copy-of tree-iter)))
748
749(defbinding entry-completion-set-match-func (completion function) nil
750 (completion entry-completion)
751 ((callback %entry-completion-match-func) pointer)
752 ((register-callback-function function) unsigned-int)
73572c12 753 ((callback user-data-destroy-func) pointer))
f45fd227 754
755(defbinding entry-completion-complete () nil
756 (completion entry-completion))
757
758#+gtk2.6
759(defbinding entry-completion-insert-prefix () nil
760 (completion entry-completion))
761
762(defbinding entry-completion-insert-action-text () nil
763 (completion entry-completion)
764 (index int)
765 (text string))
766
767(defbinding entry-completion-insert-action-markup () nil
768 (completion entry-completion)
769 (index int)
770 (markup string))
771
772(defbinding entry-completion-delete-action () nil
773 (completion entry-completion)
774 (index int))
775
776
68f519e0 777;;; File Chooser
778
779(defmethod initialize-instance ((file-chooser file-chooser) &rest initargs
780 &key filter filters shortcut-folder
781 shortcut-folders shortcut-folder-uti
782 shortcut-folder-uris)
783 (declare (ignore filter filters shortcut-folder shortcut-folders
784 shortcut-folder-uti shortcut-folder-uris))
785 (prog1
786 (call-next-method)
787 (initial-add file-chooser #'file-chooser-add-filter
788 initargs :filer :filters)
789 (initial-add file-chooser #'file-chooser-add-shortcut-folder
790 initargs :shortcut-folder :shortcut-folders)
791 (initial-add file-chooser #'file-chooser-add-shortcut-folder-uri
792 initargs :shortcut-folder-uri :shortcut-folders-uris)))
793
794
795(defbinding file-chooser-select-filename () boolean
796 (file-chooser file-chooser)
797 (filename string))
798
799(defbinding file-chooser-unselect-filename () nil
800 (file-chooser file-chooser)
801 (filename string))
802
803(defbinding file-chooser-select-all () boolean
804 (file-chooser file-chooser))
805
806(defbinding file-chooser-unselect-all () boolean
807 (file-chooser file-chooser))
808
809(defbinding file-chooser-get-filenames () (gslist string)
810 (file-chooser file-chooser))
811
812(defbinding file-chooser-select-uri () boolean
813 (file-chooser file-chooser)
814 (uri string))
815
816(defbinding file-chooser-unselect-uri () nil
817 (file-chooser file-chooser)
818 (uri string))
819
820(defbinding file-chooser-get-uris () (gslist string)
821 (file-chooser file-chooser))
822
823(defbinding file-chooser-add-filter () nil
824 (file-chooser file-chooser)
825 (filter file-filter))
826
827(defbinding file-chooser-remove-filter () nil
828 (file-chooser file-chooser)
829 (filter file-filter))
830
831(defbinding file-chooser-list-filters () (gslist file-filter)
832 (file-chooser file-chooser))
833
834(defbinding file-chooser-add-shortcut-folder () boolean
835 (file-chooser file-chooser)
836 (folder string)
837 (nil null))
838
839(defbinding file-chooser-remove-shortcut-folder () nil
840 (file-chooser file-chooser)
841 (folder string)
842 (nil null))
843
844(defbinding file-chooser-list-shortcut-folders () (gslist string)
845 (file-chooser file-chooser))
846
847(defbinding file-chooser-add-shortcut-folder-uri () boolean
848 (file-chooser file-chooser)
849 (uri string)
850 (nil null))
851
852(defbinding file-chooser-remove-shortcut-folder-uri () nil
853 (file-chooser file-chooser)
854 (uri string)
855 (nil null))
856
857(defbinding file-chooser-list-shortcut-folder-uris () (gslist string)
858 (file-chooser file-chooser))
859
860
861;;; File Filter
862
863(defmethod initialize-instance ((file-filter file-filter) &rest initargs
864 &key mime-type mime-types pattern patterns
865 pixbuf-formats)
866 (declare (ignore mime-type mime-types pattern patterns))
867 (prog1
868 (call-next-method)
869 (when pixbuf-formats
870 #-gtk2.6(warn "Initarg :PIXBUF-FORMATS not supportet in this version of Gtk")
871 #+gtk2.6(file-filter-add-pixbuf-formats file-filter))
872 (initial-add file-filter #'file-filter-add-mime-type
873 initargs :mime-type :mime-types)
874 (initial-add file-filter #'file-filter-add-pattern
875 initargs :pattern :patterns)))
876
877
878(defbinding file-filter-add-mime-type () nil
879 (filter file-filter)
880 (mime-type string))
881
882(defbinding file-filter-add-pattern () nil
883 (filter file-filter)
884 (pattern string))
885
886#+gtk2.6
887(defbinding file-filter-add-pixbuf-formats () nil
647c99e5 888 (filter file-filter))
68f519e0 889
890(def-callback-marshal %file-filter-func (boolean file-filter-info))
891
73572c12 892(defbinding file-filter-add-custom (filter needed function) nil
68f519e0 893 (filter file-filter)
894 (needed file-filter-flags)
895 ((callback %file-filter-func) pointer)
896 ((register-callback-function function) unsigned-int)
73572c12 897 ((callback user-data-destroy-func) pointer))
68f519e0 898
899(defbinding file-filter-get-needed () file-filter-flags
900 (filter file-filter))
901
902(defbinding file-filter-filter () boolean
903 (filter file-filter)
904 (filter-info file-filter-info))
905
906
907
1047e159 908;;; Image
909
910(defbinding image-set-from-file () nil
911 (image image)
912 (filename pathname))
913
d76e9fca 914(defmethod (setf image-pixmap) ((data vector) (image image))
915 (multiple-value-bind (pixmap mask) (gdk:pixmap-create data)
916 (setf (image-pixmap image) pixmap)
917 (setf (image-mask image) mask)))
918
919(defmethod initialize-instance ((image image) &rest initargs &key pixmap file)
920 (cond
921 ((typep pixmap 'vector)
922 (multiple-value-bind (pixmap mask) (gdk:pixmap-create pixmap)
923 (apply #'call-next-method image :pixmap pixmap :mask mask initargs)))
924 (file
925 (prog1
926 (call-next-method)
927 (image-set-from-file image file)))
928 ((call-next-method))))
1047e159 929
cb4bf772 930(defun create-image-widget (source &optional mask)
d76e9fca 931 (etypecase source
932 (gdk:pixbuf (make-instance 'image :pixbuf source))
933 (string (make-instance 'image :stock source))
934 (pathname (make-instance 'image :file source))
935 ((or list vector) (make-instance 'image :pixmap source))
936 (gdk:pixmap (make-instance 'image :pixmap source :mask mask))))
1047e159 937
bdc0e300 938#+gtk2.8
939(defbinding image-clear () nil
940 (image image))
941
942
1047e159 943
d76e9fca 944;;; Image menu item
1047e159 945
d76e9fca 946(defmethod initialize-instance ((item image-menu-item) &rest initargs &key image)
947 (if (and image (not (typep image 'widget)))
cb4bf772 948 (apply #'call-next-method item :image (create-image-widget image) initargs)
d76e9fca 949 (call-next-method)))
1047e159 950
d76e9fca 951
952(defmethod (setf image-menu-item-image) ((widget widget) (item image-menu-item))
953 (setf (slot-value item 'image) widget))
954
955(defmethod (setf image-menu-item-image) (image (item image-menu-item))
cb4bf772 956 (setf (image-menu-item-image item) (create-image-widget image)))
1047e159 957
560af5c5 958
0f476ab5 959;;; Label
560af5c5 960
881fe3c3 961(defmethod shared-initialize ((label label) names &key pattern)
962 (declare (ignore names))
963 (call-next-method)
964 (when pattern
965 (setf (label-pattern label) pattern)))
966
aaa6e6cb 967(defbinding label-get-layout-offsets () nil
1047e159 968 (label label)
aaa6e6cb 969 (x int :out)
970 (y int :out))
971
0f476ab5 972(defbinding label-select-region () nil
973 (label label)
974 (start int)
975 (end int))
560af5c5 976
1047e159 977(defbinding label-get-selection-bounds () boolean
aaa6e6cb 978 (label label)
979 (start int :out)
980 (end int :out))
f36ca6af 981
560af5c5 982
983
984;;; Radio button
985
e5b416f0 986(defbinding %radio-button-get-group () pointer
d520140e 987 (radio-button radio-button))
988
bbaeff4b 989(defbinding %radio-button-set-group () nil
d520140e 990 (radio-button radio-button)
991 (group pointer))
560af5c5 992
cb4bf772 993(defmethod add-to-radio-group ((button1 radio-button) (button2 radio-button))
d520140e 994 "Add BUTTON1 to the group which BUTTON2 belongs to."
995 (%radio-button-set-group button1 (%radio-button-get-group button2)))
996
a5522de5 997(defun %add-activate-callback (widget signal function object after)
998 (if object
999 (signal-connect widget signal
1000 #'(lambda (object)
1001 (when (slot-value widget 'active)
1002 (funcall function object (slot-value widget 'value))))
1003 :object object :after after)
1004 (signal-connect widget signal
1005 #'(lambda ()
1006 (when (slot-value widget 'active)
1007 (funcall function (slot-value widget 'value))))
1008 :after after)))
1009
1010(defmethod activate-radio-widget ((button radio-button))
1011 (signal-emit button 'clicked))
1012
1013(defmethod add-activate-callback ((button radio-button) function &key object after)
1014 (%add-activate-callback button 'clicked function object after))
1015
d76e9fca 1016(defmethod initialize-instance ((button radio-button) &key group)
1017 (prog1
1018 (call-next-method)
1019 (when group
cb4bf772 1020 (add-to-radio-group button group))))
560af5c5 1021
1022
560af5c5 1023;;; Item
1024
bbaeff4b 1025(defbinding item-select () nil
560af5c5 1026 (item item))
1027
bbaeff4b 1028(defbinding item-deselect () nil
560af5c5 1029 (item item))
1030
bbaeff4b 1031(defbinding item-toggle () nil
560af5c5 1032 (item item))
1033
1034
1035
1036;;; Menu item
1037
d76e9fca 1038(defmethod initialize-instance ((item menu-item) &key label)
1039 (prog1
1040 (call-next-method)
1041 (when label
1042 (setf (menu-item-label item) label))))
1043
1044
f36ca6af 1045(defun (setf menu-item-label) (label menu-item)
1046 (make-instance 'accel-label
1047 :label label :xalign 0.0 :yalign 0.5 :accel-widget menu-item
d76e9fca 1048 :use-underline (menu-item-use-underline-p menu-item)
1049 :visible t :parent menu-item)
f36ca6af 1050 label)
560af5c5 1051
f5b67f2b 1052(defun menu-item-label (menu-item)
d76e9fca 1053 (when (and (slot-boundp menu-item 'child)
1054 (typep (bin-child menu-item) 'label))
1055 (label-label (bin-child menu-item))))
f5b67f2b 1056
d76e9fca 1057(defbinding menu-item-remove-submenu () nil
f36ca6af 1058 (menu-item menu-item))
560af5c5 1059
f5b67f2b 1060(defbinding menu-item-set-accel-path () nil
1061 (menu-item menu-item)
1062 (accel-path string))
1063
bbaeff4b 1064(defbinding menu-item-select () nil
f36ca6af 1065 (menu-item menu-item))
560af5c5 1066
bbaeff4b 1067(defbinding menu-item-deselect () nil
f36ca6af 1068 (menu-item menu-item))
560af5c5 1069
bbaeff4b 1070(defbinding menu-item-activate () nil
f36ca6af 1071 (menu-item menu-item))
560af5c5 1072
f5b67f2b 1073(defbinding menu-item-toggle-size-request () nil
1074 (menu-item menu-item)
1075 (requisition int :out))
1076
1077(defbinding menu-item-toggle-size-allocate () nil
1078 (menu-item menu-item)
1079 (allocation int))
1080
560af5c5 1081
d76e9fca 1082;;; Menu tool button
1083
1084#+gtk2.6
647c99e5 1085(defbinding menu-tool-button-set-arrow-tooltip () nil
d76e9fca 1086 (menu-tool-button menu-tool-button)
1087 (tooltips tooltips)
1088 (tip-text string)
1089 (tip-private string))
1090
1091
f4267180 1092;;; Message dialog
1093
9176d301 1094(defmethod allocate-foreign ((dialog message-dialog) &key (message-type :info)
1095 (buttons :close) flags transient-parent)
1096 (%message-dialog-new transient-parent flags message-type buttons))
1097
1098
1099(defmethod shared-initialize ((dialog message-dialog) names
1100 &key text #+gtk 2.6 secondary-text)
1101 (declare (ignore names))
7a2e0799 1102 (when text
1103 (message-dialog-set-markup dialog text))
1104 #+gtk2.6
1105 (when secondary-text
1106 (message-dialog-format-secondary-markup dialog secondary-text))
1107 (call-next-method))
f4267180 1108
1109
1110(defbinding %message-dialog-new () pointer
1111 (parent (or null window))
1112 (flags dialog-flags)
1113 (type message-type)
1114 (buttons buttons-type)
7a2e0799 1115 (nil null))
f4267180 1116
1117(defbinding message-dialog-set-markup () nil
1118 (message-dialog message-dialog)
1119 (markup string))
1120
1121#+gtk2.6
1122(defbinding message-dialog-format-secondary-text () nil
1123 (message-dialog message-dialog)
1124 (text string))
1125
1126#+gtk2.6
1127(defbinding message-dialog-format-secondary-markup () nil
1128 (message-dialog message-dialog)
1129 (markup string))
1130
1131
560af5c5 1132
f36ca6af 1133;;; Radio menu item
560af5c5 1134
e5b416f0 1135(defbinding %radio-menu-item-get-group () pointer
d520140e 1136 (radio-menu-item radio-menu-item))
1137
bbaeff4b 1138(defbinding %radio-menu-item-set-group () nil
d520140e 1139 (radio-menu-item radio-menu-item)
1140 (group pointer))
1141
a5522de5 1142(defmethod activate-radio-widget ((item radio-menu-item))
1143 (menu-item-activate item))
1144
cb4bf772 1145(defmethod add-to-radio-group ((item1 radio-menu-item) (item2 radio-menu-item))
d520140e 1146 "Add ITEM1 to the group which ITEM2 belongs to."
1147 (%radio-menu-item-set-group item1 (%radio-menu-item-get-group item2)))
1148
a5522de5 1149(defmethod add-activate-callback ((item radio-menu-item) function &key object after)
1150 (%add-activate-callback item 'activate function object after))
1151
d76e9fca 1152(defmethod initialize-instance ((item radio-menu-item) &key group)
f5b67f2b 1153 (prog1
1154 (call-next-method)
d76e9fca 1155 (when group
cb4bf772 1156 (add-to-radio-group item group))))
1157
d520140e 1158
560af5c5 1159
d76e9fca 1160;;; Radio tool button
1161
1162(defbinding %radio-tool-button-get-group () pointer
1163 (radio-tool-button radio-tool-button))
1164
1165(defbinding %radio-tool-button-set-group () nil
1166 (radio-tool-button radio-tool-button)
1167 (group pointer))
1168
a5522de5 1169(defmethod activate-radio-widget ((button radio-tool-button))
1170 (signal-emit button 'clicked))
1171
cb4bf772 1172(defmethod add-to-radio-group ((button1 radio-tool-button) (button2 radio-tool-button))
d76e9fca 1173 "Add BUTTON1 to the group which BUTTON2 belongs to."
1174 (%radio-tool-button-set-group button1 (%radio-tool-button-get-group button2)))
a5522de5 1175(defmethod add-activate-callback ((button radio-tool-button) function &key object after)
1176 (%add-activate-callback button 'clicked function object after))
d76e9fca 1177
1178(defmethod initialize-instance ((button radio-tool-button) &key group)
1179 (prog1
1180 (call-next-method)
1181 (when group
cb4bf772 1182 (add-to-radio-group button group))))
1183
d76e9fca 1184
560af5c5 1185
aaa6e6cb 1186;;; Toggle button
1187
1188(defbinding toggle-button-toggled () nil
1189 (toggle-button toggle-button))
1190
1191
560af5c5 1192;;; Window
1193
c49be931 1194(defmethod initialize-instance ((window window) &rest initargs
1195 &key accel-group accel-groups)
1196 (declare (ignore accel-group accel-groups))
1197 (prog1
1198 (call-next-method)
1199 (initial-add window #'window-add-accel-group
1200 initargs :accel-group :accel-groups)))
73d58e01 1201
1202
7625ebd8 1203(defbinding window-set-wmclass () nil
560af5c5 1204 (window window)
1205 (wmclass-name string)
1206 (wmclass-class string))
1207
bbaeff4b 1208(defbinding window-add-accel-group () nil
560af5c5 1209 (window window)
1210 (accel-group accel-group))
1211
bbaeff4b 1212(defbinding window-remove-accel-group () nil
560af5c5 1213 (window window)
1214 (accel-group accel-group))
1215
bbaeff4b 1216(defbinding window-activate-focus () int
560af5c5 1217 (window window))
1218
bbaeff4b 1219(defbinding window-activate-default () int
560af5c5 1220 (window window))
1221
7625ebd8 1222(defbinding window-set-default-size (window width height) int
560af5c5 1223 (window window)
7625ebd8 1224 ((or width -1) int)
1225 ((or height -1) int))
560af5c5 1226
4d16221f 1227(defbinding %window-set-geometry-hints () nil
1228 (window window)
1229 (geometry gdk:geometry)
1230 (geometry-mask gdk:window-hints))
1231
1232(defun window-set-geometry-hints (window &key min-width min-height
1233 max-width max-height base-width base-height
1234 width-inc height-inc min-aspect max-aspect
1235 (gravity nil gravity-p) min-size max-size)
1236 (let ((geometry (make-instance 'gdk:geometry
1237 :min-width (or min-width -1)
1238 :min-height (or min-height -1)
1239 :max-width (or max-width -1)
1240 :max-height (or max-height -1)
1241 :base-width (or base-width 0)
1242 :base-height (or base-height 0)
1243 :width-inc (or width-inc 0)
1244 :height-inc (or height-inc 0)
1245 :min-aspect (or min-aspect 0)
1246 :max-aspect (or max-aspect 0)
1247 :gravity gravity))
1248 (mask ()))
1249 (when (or min-size min-width min-height)
1250 (push :min-size mask))
1251 (when (or max-size max-width max-height)
1252 (push :max-size mask))
1253 (when (or base-width base-height)
1254 (push :base-size mask))
1255 (when (or width-inc height-inc)
1256 (push :resize-inc mask))
1257 (when (or min-aspect max-aspect)
1258 (push :aspect mask))
1259 (when gravity-p
1260 (push :win-gravity mask))
1261 (%window-set-geometry-hints window geometry mask)))
560af5c5 1262
73d58e01 1263(defbinding window-list-toplevels () (glist (copy-of window))
1264 "Returns a list of all existing toplevel windows.")
7625ebd8 1265
1266(defbinding window-add-mnemonic (window key target) nil
1267 (window window)
1268 ((gdk:keyval-from-name key) unsigned-int)
1269 (target widget))
1270
1271(defbinding window-remove-mnemonic (window key target) nil
1272 (window window)
1273 ((gdk:keyval-from-name key) unsigned-int)
1274 (target widget))
1275
1276(defbinding window-mnemonic-activate (window key modifier) nil
1277 (window window)
1278 ((gdk:keyval-from-name key) unsigned-int)
1279 (modifier gdk:modifier-type))
1280
4d16221f 1281(defbinding window-activate-key () boolean
1282 (window window)
1283 (event gdk:key-event))
1284
1285(defbinding window-propagate-key-event () boolean
1286 (window window)
1287 (event gdk:key-event))
1288
bdc0e300 1289#-gtk2.8
7625ebd8 1290(defbinding window-present () nil
1291 (window window))
1292
bdc0e300 1293#+gtk2.8
1294(progn
1295 (defbinding %window-present () nil
1296 (window window))
1297
6e8bf4cf 1298 (defbinding %window-present-with-time () nil
bdc0e300 1299 (window window)
1300 (timespamp unsigned-int))
1301
1302 (defun window-present (window &optional timestamp)
1303 (if timestamp
6e8bf4cf 1304 (%window-present-with-time window timestamp)
bdc0e300 1305 (%window-present window))))
1306
7625ebd8 1307(defbinding window-iconify () nil
1308 (window window))
1309
1310(defbinding window-deiconify () nil
1311 (window window))
1312
1313(defbinding window-stick () nil
1314 (window window))
1315
1316(defbinding window-unstick () nil
1317 (window window))
1318
1319(defbinding window-maximize () nil
1320 (window window))
1321
1322(defbinding window-unmaximize () nil
1323 (window window))
1324
4d16221f 1325(defbinding window-fullscreen () nil
1326 (window window))
1327
1328(defbinding window-unfullscreen () nil
1329 (window window))
1330
1331(defbinding window-set-keep-above () nil
1332 (window window)
1333 (setting boolean))
1334
1335(defbinding window-set-keep-below () nil
1336 (window window)
1337 (setting boolean))
1338
7625ebd8 1339(defbinding window-begin-resize-drag () nil
1340 (window window)
1341 (edge gdk:window-edge)
1342 (button int)
1343 (root-x int) (root-y int)
9adccb27 1344 (timestamp unsigned-int))
7625ebd8 1345
1346(defbinding window-begin-move-drag () nil
1347 (window window)
1348 (edge gdk:window-edge)
1349 (button int)
1350 (root-x int) (root-y int)
9adccb27 1351 (timestamp unsigned-int))
7625ebd8 1352
1353(defbinding window-set-frame-dimensions () nil
1354 (window window)
1355 (left int) (top int) (rigth int) (bottom int))
1356
7625ebd8 1357(defbinding %window-get-default-size () nil
1358 (window window)
1359 (width int :out)
1360 (height int :out))
1361
1362(defun window-get-default-size (window)
1363 (multiple-value-bind (width height) (%window-get-default-size window)
1364 (values (unless (= width -1) width) (unless (= height -1) height))))
1365
1366(defbinding window-get-frame-dimensions () nil
1367 (window window)
1368 (left int :out) (top int :out) (rigth int :out) (bottom int :out))
1369
190c2bcf 1370(defbinding %window-get-icon-list () (glist (copy-of gdk:pixbuf))
7625ebd8 1371 (window window))
1372
7625ebd8 1373(defbinding window-get-position () nil
1374 (window window)
1375 (root-x int :out)
1376 (root-y int :out))
1377
1378(defbinding window-get-size () nil
1379 (window window)
1380 (width int :out)
1381 (height int :out))
1382
1383(defbinding window-move () nil
1384 (window window)
1385 (x int)
1386 (y int))
1387
1388(defbinding window-parse-geometry () boolean
1389 (window window)
1390 (geometry string))
1391
1392(defbinding window-reshow-with-initial-size () nil
1393 (window window))
1394
1395(defbinding window-resize () nil
1396 (window window)
1397 (width int)
1398 (heigth int))
1399
4d16221f 1400(defbinding (window-default-icon-list "gtk_window_get_default_icon_list")
1401 () (glist gdk:pixbuf))
1402
1403(defun window-default-icon ()
1404 (first (window-default-icon-list)))
1405
1406(defbinding %window-set-default-icon-list () nil
1407 (icons (glist gdk:pixbuf)))
1408
1409(defun (setf window-default-icon-list) (icons)
1410 (%window-set-default-icon-list icons)
1411 icons)
1412
1413(defbinding %window-set-default-icon () nil
1414 (icons (glist gdk:pixbuf)))
1415
1416(defmethod (setf window-default-icon) ((icon gdk:pixbuf))
1417 (%window-set-default-icon icon)
1418 icon)
1419
1420(defmethod (setf window-group) ((group window-group) (window window))
1421 (window-group-add-window group window)
1422 group)
1423
1424(defbinding %window-set-default-icon-from-file () boolean
1425 (filename pathname)
1426 (nil null))
1427
1428(defmethod (setf window-default-icon) ((icon-file pathname))
1429 (%window-set-default-icon-from-file icon-file)
1430 icon-file)
1431
1432(defbinding %window-set-icon-from-file () boolean
1433 (window window)
1434 (filename pathname)
1435 (nil null))
1436
1437(defmethod (setf window-icon) ((icon-file pathname) (window window))
1438 (%window-set-icon-from-file window icon-file)
1439 icon-file)
1440
1441(defbinding window-set-auto-startup-notification () nil
1442 (setting boolean))
1443
1444(defbinding decorated-window-init () nil
1445 (window window))
1446
1447(defbinding decorated-window-calculate-frame-size () nil
1448 (window window))
1449
1450(defbinding decorated-window-set-title () nil
7625ebd8 1451 (window window)
4d16221f 1452 (title string))
7625ebd8 1453
4d16221f 1454(defbinding decorated-window-move-resize-window () nil
1455 (window window)
1456 (x int)
1457 (y int)
1458 (width int)
1459 (heigth int))
7625ebd8 1460
1461
4d16221f 1462;;; Window group
560af5c5 1463
4d16221f 1464(defmethod initialize-instance ((window-group window-group) &rest initargs
1465 &key window windows)
1466 (declare (ignore window windows))
1467 (prog1
1468 (call-next-method)
1469 (initial-add window-group #'window-group-add-window
1470 initargs :window :windows)))
560af5c5 1471
560af5c5 1472
4d16221f 1473(defbinding window-group-add-window () nil
1474 (window-group window-group)
1475 (window window))
560af5c5 1476
4d16221f 1477(defbinding window-group-remove-window () nil
1478 (window-group window-group)
1479 (window window))
560af5c5 1480
1481
f36ca6af 1482;;; Scrolled window
560af5c5 1483
560af5c5 1484(defun (setf scrolled-window-scrollbar-policy) (policy window)
1485 (setf (scrolled-window-hscrollbar-policy window) policy)
1486 (setf (scrolled-window-vscrollbar-policy window) policy))
1487
bbaeff4b 1488(defbinding scrolled-window-add-with-viewport () nil
560af5c5 1489 (scrolled-window scrolled-window)
1490 (child widget))
1491
7a2e0799 1492(defmethod shared-initialize ((window scrolled-window) names &key policy)
1493 (declare (ignore names))
1494 (when policy
1495 (setf (slot-value window 'hscrollbar-policy) policy)
1496 (setf (slot-value window 'vscrollbar-policy) policy))
1497 (call-next-method))
d520140e 1498
560af5c5 1499
f36ca6af 1500;;; Statusbar
560af5c5 1501
d76e9fca 1502(defbinding statusbar-get-context-id () unsigned-int
f36ca6af 1503 (statusbar statusbar)
1504 (context-description string))
560af5c5 1505
bbaeff4b 1506(defbinding statusbar-push () unsigned-int
f36ca6af 1507 (statusbar statusbar)
1508 (context-id unsigned-int)
1509 (text string))
560af5c5 1510
bbaeff4b 1511(defbinding statusbar-pop () nil
f36ca6af 1512 (statusbar statusbar)
1513 (context-id unsigned-int))
560af5c5 1514
bbaeff4b 1515(defbinding statusbar-remove () nil
f36ca6af 1516 (statusbar statusbar)
1517 (context-id unsigned-int)
1518 (message-id unsigned-int))
560af5c5 1519
560af5c5 1520
1521
1522;;; Fixed
1523
bbaeff4b 1524(defbinding fixed-put () nil
f36ca6af 1525 (fixed fixed)
1526 (widget widget)
f5b67f2b 1527 (x int) (y int))
560af5c5 1528
bbaeff4b 1529(defbinding fixed-move () nil
f36ca6af 1530 (fixed fixed)
1531 (widget widget)
f5b67f2b 1532 (x int) (y int))
560af5c5 1533
1534
1535
d520140e 1536;;; Notebook
560af5c5 1537
68f519e0 1538(defun %ensure-notebook-position (notebook page)
f5b67f2b 1539 (etypecase page
68f519e0 1540 (position page)
f5b67f2b 1541 (widget (notebook-page-num notebook page t))))
1542
68f519e0 1543(defun %ensure-notebook-child (notebook position)
f5b67f2b 1544 (typecase position
1545 (widget position)
68f519e0 1546 (t (notebook-get-nth-page notebook position))))
f5b67f2b 1547
1548(defbinding (notebook-insert "gtk_notebook_insert_page_menu")
f36ca6af 1549 (notebook position child tab-label &optional menu-label) nil
1550 (notebook notebook)
1551 (child widget)
1552 ((if (stringp tab-label)
f5b67f2b 1553 (make-instance 'label :label tab-label)
f36ca6af 1554 tab-label) widget)
1555 ((if (stringp menu-label)
f5b67f2b 1556 (make-instance 'label :label menu-label)
f36ca6af 1557 menu-label) (or null widget))
68f519e0 1558 ((%ensure-notebook-position notebook position) position))
560af5c5 1559
f5b67f2b 1560(defun notebook-append (notebook child tab-label &optional menu-label)
1561 (notebook-insert notebook :last child tab-label menu-label))
560af5c5 1562
f5b67f2b 1563(defun notebook-prepend (notebook child tab-label &optional menu-label)
1564 (notebook-insert notebook :first child tab-label menu-label))
560af5c5 1565
f5b67f2b 1566(defbinding notebook-remove-page (notebook page) nil
f36ca6af 1567 (notebook notebook)
68f519e0 1568 ((%ensure-notebook-position notebook page) position))
560af5c5 1569
bbaeff4b 1570(defbinding %notebook-page-num () int
f36ca6af 1571 (notebook notebook)
1572 (child widget))
1573
f5b67f2b 1574(defun notebook-page-num (notebook child &optional error-p)
f36ca6af 1575 (let ((page-num (%notebook-page-num notebook child)))
1576 (if (= page-num -1)
f5b67f2b 1577 (when error-p
68f519e0 1578 (error "~A is not a page in ~A" child notebook))
f36ca6af 1579 page-num)))
1580
bbaeff4b 1581(defbinding notebook-next-page () nil
f36ca6af 1582 (notebook notebook))
560af5c5 1583
bbaeff4b 1584(defbinding notebook-prev-page () nil
f36ca6af 1585 (notebook notebook))
1586
f5b67f2b 1587(defbinding notebook-reorder-child (notebook child position) nil
1588 (notebook notebook)
1589 (child widget)
bdc0e300 1590 ((%ensure-notebook-position notebook position) int))
f5b67f2b 1591
bbaeff4b 1592(defbinding notebook-popup-enable () nil
f36ca6af 1593 (notebook notebook))
1594
bbaeff4b 1595(defbinding notebook-popup-disable () nil
f36ca6af 1596 (notebook notebook))
1597
68f519e0 1598(defbinding notebook-get-nth-page () widget
f5b67f2b 1599 (notebook notebook)
68f519e0 1600 (page position))
f5b67f2b 1601
68f519e0 1602(defun %notebook-current-page (notebook)
1603 (when (slot-boundp notebook 'current-page-num)
1604 (notebook-get-nth-page notebook (notebook-current-page-num notebook))))
f5b67f2b 1605
1606(defun (setf notebook-current-page) (page notebook)
68f519e0 1607 (setf (notebook-current-page notebook) (notebook-page-num notebook page)))
f5b67f2b 1608
1047e159 1609(defbinding (notebook-tab-label "gtk_notebook_get_tab_label")
1610 (notebook page) widget
1611 (notebook notebook)
68f519e0 1612 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1613
1047e159 1614(defbinding (notebook-tab-label-text "gtk_notebook_get_tab_label_text")
6bb23851 1615 (notebook page) (copy-of string)
1047e159 1616 (notebook notebook)
68f519e0 1617 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1618
1047e159 1619(defbinding %notebook-set-tab-label () nil
1620 (notebook notebook)
1621 (page widget)
1622 (tab-label widget))
1623
1624(defun (setf notebook-tab-label) (tab-label notebook page)
1625 (let ((widget (if (stringp tab-label)
1626 (make-instance 'label :label tab-label)
1627 tab-label)))
68f519e0 1628 (%notebook-set-tab-label notebook (%ensure-notebook-child notebook page) widget)
1047e159 1629 widget))
f5b67f2b 1630
f5b67f2b 1631
1047e159 1632(defbinding (notebook-menu-label "gtk_notebook_get_menu_label")
1633 (notebook page) widget
1634 (notebook notebook)
68f519e0 1635 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1636
1047e159 1637(defbinding (notebook-menu-label-text "gtk_notebook_get_menu_label_text")
6bb23851 1638 (notebook page) (copy-of string)
1047e159 1639 (notebook notebook)
68f519e0 1640 ((%ensure-notebook-child notebook page) widget))
f5b67f2b 1641
1047e159 1642(defbinding %notebook-set-menu-label () nil
1643 (notebook notebook)
1644 (page widget)
1645 (menu-label widget))
1646
1647(defun (setf notebook-menu-label) (menu-label notebook page)
1648 (let ((widget (if (stringp menu-label)
1649 (make-instance 'label :label menu-label)
1650 menu-label)))
68f519e0 1651 (%notebook-set-menu-label notebook (%ensure-notebook-child notebook page) widget)
1047e159 1652 widget))
f5b67f2b 1653
1654
1655(defbinding notebook-query-tab-label-packing (notebook page) nil
f36ca6af 1656 (notebook notebook)
bdc0e300 1657 ((%ensure-notebook-child notebook page) widget)
f36ca6af 1658 (expand boolean :out)
1659 (fill boolean :out)
1660 (pack-type pack-type :out))
1661
f5b67f2b 1662(defbinding notebook-set-tab-label-packing
1663 (notebook page expand fill pack-type) nil
f36ca6af 1664 (notebook notebook)
bdc0e300 1665 ((%ensure-notebook-child notebook page) widget)
f36ca6af 1666 (expand boolean)
1667 (fill boolean)
1668 (pack-type pack-type))
1669
560af5c5 1670
1671
d520140e 1672;;; Paned
560af5c5 1673
bbaeff4b 1674(defbinding paned-pack1 () nil
d520140e 1675 (paned paned)
1676 (child widget)
1677 (resize boolean)
1678 (shrink boolean))
560af5c5 1679
bbaeff4b 1680(defbinding paned-pack2 () nil
d520140e 1681 (paned paned)
1682 (child widget)
1683 (resize boolean)
1684 (shrink boolean))
560af5c5 1685
560af5c5 1686
d520140e 1687;;; Layout
560af5c5 1688
bbaeff4b 1689(defbinding layout-put () nil
d520140e 1690 (layout layout)
68f519e0 1691 (child widget)
d520140e 1692 (x int)
1693 (y int))
560af5c5 1694
bbaeff4b 1695(defbinding layout-move () nil
d520140e 1696 (layout layout)
68f519e0 1697 (child widget)
d520140e 1698 (x int)
1699 (y int))
560af5c5 1700
68f519e0 1701(defbinding layout-set-size () nil
1702 (layout layout)
1703 (width unsigned-int)
1704 (height unsigned-int))
1705
1706(defbinding layout-get-size () nil
1707 (layout layout)
1708 (width unsigned-int :out)
1709 (height unsigned-int :out))
560af5c5 1710
1711
560af5c5 1712;;; Menu shell
1713
f5b67f2b 1714(defbinding menu-shell-insert (menu-shell menu-item position) nil
f36ca6af 1715 (menu-shell menu-shell)
1716 (menu-item menu-item)
f5b67f2b 1717 ((case position
1718 (:first 0)
1719 (:last -1)
1720 (t position)) int))
560af5c5 1721
f36ca6af 1722(defun menu-shell-append (menu-shell menu-item)
f5b67f2b 1723 (menu-shell-insert menu-shell menu-item :last))
560af5c5 1724
f36ca6af 1725(defun menu-shell-prepend (menu-shell menu-item)
f5b67f2b 1726 (menu-shell-insert menu-shell menu-item :fisrt))
560af5c5 1727
bbaeff4b 1728(defbinding menu-shell-deactivate () nil
f36ca6af 1729 (menu-shell menu-shell))
560af5c5 1730
bbaeff4b 1731(defbinding menu-shell-select-item () nil
f36ca6af 1732 (menu-shell menu-shell)
1733 (menu-item menu-item))
560af5c5 1734
d76e9fca 1735(defbinding menu-shell-select-first () nil
1736 (menu-shell menu-shell)
1737 (search-sensitive boolean))
1738
bbaeff4b 1739(defbinding menu-shell-deselect () nil
f36ca6af 1740 (menu-shell menu-shell))
560af5c5 1741
bbaeff4b 1742(defbinding menu-shell-activate-item () nil
f36ca6af 1743 (menu-shell menu-shell)
1744 (menu-item menu-item)
1745 (fore-deactivate boolean))
560af5c5 1746
d76e9fca 1747(defbinding menu-shell-cancel () nil
1748 (menu-shell menu-shell))
560af5c5 1749
1750
f5b67f2b 1751;;; Menu
560af5c5 1752
f5b67f2b 1753(defun %menu-position (menu child)
1754 (etypecase child
1755 (int child)
1756 (keyword (case child
1757 (:first 0)
1758 (:last -1)
1047e159 1759 (t (error "Invalid position keyword: ~A" child))))
f5b67f2b 1760 (widget (menu-child-position menu child))))
560af5c5 1761
1762
f5b67f2b 1763(defbinding menu-reorder-child (menu menu-item position) nil
1764 (menu menu)
1765 (menu-item menu-item)
1766 ((%menu-position menu position) int))
560af5c5 1767
d76e9fca 1768(defbinding menu-attach () nil
1769 (menu menu)
1770 (menu-item menu-item)
1771 (left-attach unsigned-int)
1772 (right-attach unsigned-int)
1773 (top-attach unsigned-int)
1774 (bottom-attach unsigned-int))
1775
1776(def-callback-marshal %menu-position-func (nil (menu menu) (x int) (y int) (push-in boolean)))
560af5c5 1777
f5b67f2b 1778(defbinding %menu-popup () nil
1779 (menu menu)
1780 (parent-menu-shell (or null menu-shell))
1781 (parent-menu-item (or null menu-item))
1782 (callback-func (or null pointer))
1783 (callback-id unsigned-int)
1784 (button unsigned-int)
1785 (activate-time (unsigned 32)))
1786
1787(defun menu-popup (menu button activate-time &key callback parent-menu-shell
1788 parent-menu-item)
1789 (if callback
1a1949c7 1790 (with-callback-function (id callback)
1791 (%menu-popup
1792 menu parent-menu-shell parent-menu-item
d76e9fca 1793 (callback %menu-position-func) id button activate-time))
f5b67f2b 1794 (%menu-popup
1795 menu parent-menu-shell parent-menu-item nil 0 button activate-time)))
1796
1797(defbinding menu-set-accel-path () nil
1798 (menu menu)
1799 (accel-path string))
560af5c5 1800
bbaeff4b 1801(defbinding menu-reposition () nil
f36ca6af 1802 (menu menu))
560af5c5 1803
bbaeff4b 1804(defbinding menu-popdown () nil
f36ca6af 1805 (menu menu))
560af5c5 1806
f5b67f2b 1807(defun menu-child-position (menu child)
1808 (position child (container-children menu)))
1809
1810(defun menu-active-num (menu)
1811 (menu-child-position menu (menu-active menu)))
1812
bbaeff4b 1813(defbinding %menu-set-active () nil
f36ca6af 1814 (menu menu)
1815 (index unsigned-int))
560af5c5 1816
f5b67f2b 1817(defun (setf menu-active) (menu child)
1818 (%menu-set-active menu (%menu-position menu child))
1819 child)
d520140e 1820
d76e9fca 1821(defcallback %menu-detach-func (nil (widget widget) (menu menu))
1822 (funcall (object-data menu 'detach-func) widget menu))
1823
1824(defbinding %menu-attach-to-widget () nil
1825 (menu menu)
1826 (widget widget)
1827 ((callback %menu-detach-func) pointer))
1828
1829(defun menu-attach-to-widget (menu widget function)
1830 (setf (object-data menu 'detach-func) function)
1831 (%menu-attach-to-widget menu widget))
1832
1833(defbinding menu-detach () nil
1834 (menu menu))
1835
1836#+gtk2.6
1837(defbinding menu-get-for-attach-widget () (copy-of (glist widget))
1838 (widget widget))
1839
1840(defbinding menu-set-monitor () nil
1841 (menu menu)
1842 (monitor-num int))
560af5c5 1843
1844
f36ca6af 1845;;; Table
560af5c5 1846
bbaeff4b 1847(defbinding table-resize () nil
f36ca6af 1848 (table table)
1849 (rows unsigned-int)
1850 (columns unsigned-int))
560af5c5 1851
bbaeff4b 1852(defbinding table-attach (table child left right top bottom
c49be931 1853 &key options x-options y-options
1854 (x-padding 0) (y-padding 0)) nil
f36ca6af 1855 (table table)
1856 (child widget)
1857 (left unsigned-int)
1858 (right unsigned-int)
1859 (top unsigned-int)
1860 (bottom unsigned-int)
c49be931 1861 ((append (mklist options) (mklist x-options)) attach-options)
1862 ((append (mklist options) (mklist y-options)) attach-options)
f36ca6af 1863 (x-padding unsigned-int)
1864 (y-padding unsigned-int))
1865
e5b416f0 1866
bbaeff4b 1867(defbinding %table-set-row-spacing () nil
f36ca6af 1868 (table table)
1869 (row unsigned-int)
1870 (spacing unsigned-int))
1871
e5b416f0 1872(defbinding %table-set-row-spacings () nil
1873 (table table)
1874 (spacing unsigned-int))
1875
1876(defun (setf table-row-spacing) (spacing table &optional row)
1877 (if row
1878 (%table-set-row-spacing table row spacing)
1879 (%table-set-row-spacings table spacing))
f36ca6af 1880 spacing)
1881
e5b416f0 1882(defbinding %table-get-row-spacing () unsigned-int
f36ca6af 1883 (table table)
e5b416f0 1884 (row unsigned-int))
1885
1886(defbinding %table-get-default-row-spacing () unsigned-int
1887 (table table))
1888
1889(defun table-row-spacing (table &optional row)
1890 (if row
1891 (%table-get-row-spacing table row)
1892 (%table-get-default-row-spacing table)))
1893
f36ca6af 1894
bbaeff4b 1895(defbinding %table-set-col-spacing () nil
f36ca6af 1896 (table table)
1897 (col unsigned-int)
1898 (spacing unsigned-int))
1899
e5b416f0 1900(defbinding %table-set-col-spacings () nil
1901 (table table)
1902 (spacing unsigned-int))
1903
1904(defun (setf table-col-spacing) (spacing table &optional col)
1905 (if col
1906 (%table-set-col-spacing table col spacing)
1907 (%table-set-col-spacings table spacing))
f36ca6af 1908 spacing)
1909
e5b416f0 1910(defbinding %table-get-col-spacing () unsigned-int
f36ca6af 1911 (table table)
e5b416f0 1912 (col unsigned-int))
1913
1914(defbinding %table-get-default-col-spacing () unsigned-int
1915 (table table))
1916
1917(defun table-col-spacing (table &optional col)
1918 (if col
1919 (%table-get-col-spacing table col)
1920 (%table-get-default-col-spacing table)))
1921
1922
f36ca6af 1923
1924;;; Toolbar
1925
cb4bf772 1926(defmethod initialize-instance ((toolbar toolbar) &rest initargs &key tooltips)
1927 (if (eq tooltips t)
1928 (apply #'call-next-method toolbar
1929 :tooltips (make-instance 'tooltips) initargs)
1930 (call-next-method)))
560af5c5 1931
cb4bf772 1932(defbinding %toolbar-insert () nil
f5b67f2b 1933 (toolbar toolbar)
cb4bf772 1934 (tool-item tool-item)
1935 (position position))
f36ca6af 1936
cb4bf772 1937(defun toolbar-insert (toolbar tool-item &optional (position :end))
1938 (%toolbar-insert toolbar tool-item position)
1939 (%tool-item-update-tooltips tool-item))
f5b67f2b 1940
cb4bf772 1941(defbinding toolbar-get-item-index () int
1942 (toolbar toolbar)
1943 (item tool-item))
f36ca6af 1944
cb4bf772 1945(defbinding toolbar-get-nth-item () tool-item
1946 (toolbar toolbar)
1947 (n int))
f36ca6af 1948
cb4bf772 1949(defbinding toolbar-get-drop-index () int
1950 (toolbar toolbar)
1951 (x int) (y int))
f36ca6af 1952
cb4bf772 1953(defbinding toolbar-set-drop-highlight-item () nil
1954 (toolbar toolbar)
1955 (tool-item tool-item)
1956 (index int))
f36ca6af 1957
560af5c5 1958
cb4bf772 1959;;; Tool button
560af5c5 1960
cb4bf772 1961(defmethod initialize-instance ((button tool-button) &rest initargs &key icon)
1962 (if (and icon (not (typep icon 'widget)))
1963 (apply #'call-next-method button :icon (create-image-widget icon) initargs)
1964 (call-next-method)))
560af5c5 1965
1966
cb4bf772 1967;;; Tool item
560af5c5 1968
cb4bf772 1969(defbinding tool-item-set-tooltip () nil
1970 (tool-item tool-item)
1971 (tooltips tooltips)
1972 (tip-text string)
1973 (tip-private string))
560af5c5 1974
560af5c5 1975
cb4bf772 1976(defun %tool-item-update-tooltips (tool-item)
1977 (when (and
1978 (slot-boundp tool-item 'parent)
1979 (or
1980 (user-data-p tool-item 'tip-text)
1981 (user-data-p tool-item 'tip-private)))
1982 (tool-item-set-tooltip
1983 tool-item (toolbar-tooltips (widget-parent tool-item))
1984 (or (user-data tool-item 'tip-text) "")
1985 (or (user-data tool-item 'tip-private) ""))))
1986
1987(defmethod (setf tool-item-tip-text) ((tip-text string) (tool-item tool-item))
1988 (setf (user-data tool-item 'tip-text) tip-text)
1989 (%tool-item-update-tooltips tool-item)
1990 tip-text)
1991
1992(defmethod (setf tool-item-tip-private) ((tip-private string) (tool-item tool-item))
1993 (setf (user-data tool-item 'tip-private) tip-private)
1994 (%tool-item-update-tooltips tool-item)
1995 tip-private)
1996
1997(defmethod container-add ((toolbar toolbar) (tool-item tool-item) &rest args)
1998 (declare (ignore args))
1999 (prog1
2000 (call-next-method)
2001 (%tool-item-update-tooltips tool-item)))
560af5c5 2002
d76e9fca 2003
2004(defbinding tool-item-retrieve-proxy-menu-item () widget
2005 (tool-item tool-item))
2006
2007(defbinding (tool-item-proxy-menu-item
2008 "gtk_tool_item_get_proxy_menu_item") () menu-item
2009 (tool-item tool-item)
2010 (menu-item-id string))
2011
2012(defbinding %tool-item-set-proxy-menu-item () nil
2013 (tool-item tool-item)
2014 (menu-item-id string)
2015 (menu-item menu-item))
2016
2017(defun (setf tool-item-proxy-menu-item) (menu-item menu-item-id tool-item)
2018 (%tool-item-set-proxy-menu-item menu-item-id tool-item menu-item)
2019 menu-item)
2020
2021#+gtk2.6
2022(defbinding tool-item-rebuild-menu () nil
2023 (tool-item tool-item))
2024
2025
bbaeff4b 2026;;; Editable
1047e159 2027
bbaeff4b 2028(defbinding editable-select-region (editable &optional (start 0) end) nil
f36ca6af 2029 (editable editable)
2030 (start int)
2031 ((or end -1) int))
560af5c5 2032
1047e159 2033(defbinding editable-get-selection-bounds (editable) nil
2034 (editable editable)
2035 (start int :out)
2036 (end int :out))
2037
d76e9fca 2038(defbinding editable-insert-text (editable text &optional (position 0)) nil
f36ca6af 2039 (editable editable)
2040 (text string)
2041 ((length text) int)
34fe0ead 2042 (position position :in-out))
560af5c5 2043
f36ca6af 2044(defun editable-append-text (editable text)
2045 (editable-insert-text editable text nil))
560af5c5 2046
f36ca6af 2047(defun editable-prepend-text (editable text)
2048 (editable-insert-text editable text 0))
560af5c5 2049
bbaeff4b 2050(defbinding editable-delete-text (editable &optional (start 0) end) nil
f36ca6af 2051 (editable editable)
2052 (start int)
2053 ((or end -1) int))
560af5c5 2054
bbaeff4b 2055(defbinding (editable-text "gtk_editable_get_chars")
f36ca6af 2056 (editable &optional (start 0) end) string
2057 (editable editable)
2058 (start int)
2059 ((or end -1) int))
560af5c5 2060
f36ca6af 2061(defun (setf editable-text) (text editable)
2062 (if text
2063 (editable-delete-text
2064 editable
2065 (editable-insert-text editable text))
2066 (editable-delete-text editable))
2067 text)
560af5c5 2068
bbaeff4b 2069(defbinding editable-cut-clipboard () nil
f36ca6af 2070 (editable editable))
560af5c5 2071
bbaeff4b 2072(defbinding editable-copy-clipboard () nil
f36ca6af 2073 (editable editable))
560af5c5 2074
bbaeff4b 2075(defbinding editable-paste-clipboard () nil
f36ca6af 2076 (editable editable))
560af5c5 2077
bbaeff4b 2078(defbinding editable-delete-selection () nil
f36ca6af 2079 (editable editable))
560af5c5 2080
560af5c5 2081
560af5c5 2082
f36ca6af 2083;;; Spin button
560af5c5 2084
d76e9fca 2085(defbinding spin-button-configure () nil
2086 (spin-button spin-button)
2087 (adjustment adjustment)
2088 (climb-rate double-float)
2089 (digits unsigned-int))
2090
2091(defbinding spin-button-set-range () nil
2092 (spin-button spin-button)
2093 (min double-float)
2094 (max double-float))
2095
2096(defbinding spin-button-get-range () nil
2097 (spin-button spin-button)
2098 (min double-float :out)
2099 (max double-float :out))
2100
f36ca6af 2101(defun spin-button-value-as-int (spin-button)
2102 (round (spin-button-value spin-button)))
560af5c5 2103
510fbcc1 2104(defbinding %spin-button-spin () nil
f36ca6af 2105 (spin-button spin-button)
2106 (direction spin-type)
510fbcc1 2107 (increment double-float))
2108
2109(defun spin-button-spin (spin-button value)
2110 (etypecase value
2111 (real (%spin-button-spin spin-button :spin-user-defined value))
2112 (spin-type (%spin-button-spin spin-button value 0))))
2113
560af5c5 2114
bbaeff4b 2115(defbinding spin-button-update () nil
f36ca6af 2116 (spin-button spin-button))
560af5c5 2117
2118
2119
2120; ;;; Ruler
2121
bbaeff4b 2122(defbinding ruler-set-range () nil
f36ca6af 2123 (ruler ruler)
2124 (lower single-float)
2125 (upper single-float)
2126 (position single-float)
2127 (max-size single-float))
560af5c5 2128
68f519e0 2129(defbinding ruler-get-range () nil
2130 (ruler ruler)
2131 (lower single-float :out)
2132 (upper single-float :out)
2133 (position single-float :out)
2134 (max-size single-float :out))
560af5c5 2135
560af5c5 2136
560af5c5 2137
d520140e 2138;;; Range
560af5c5 2139
1047e159 2140(defun range-lower (range)
2141 (adjustment-lower (range-adjustment range)))
560af5c5 2142
1047e159 2143(defun range-upper (range)
2144 (adjustment-upper (range-adjustment range)))
560af5c5 2145
1047e159 2146(defun (setf range-lower) (value range)
2147 (setf (adjustment-lower (range-adjustment range)) value))
560af5c5 2148
1047e159 2149(defun (setf range-upper) (value range)
2150 (setf (adjustment-upper (range-adjustment range)) value))
560af5c5 2151
1047e159 2152(defun range-page-increment (range)
2153 (adjustment-page-increment (range-adjustment range)))
560af5c5 2154
1047e159 2155(defun range-step-increment (range)
2156 (adjustment-step-increment (range-adjustment range)))
560af5c5 2157
1047e159 2158(defun (setf range-page-increment) (value range)
2159 (setf (adjustment-page-increment (range-adjustment range)) value))
560af5c5 2160
1047e159 2161(defun (setf range-step-increment) (value range)
2162 (setf (adjustment-step-increment (range-adjustment range)) value))
560af5c5 2163
1047e159 2164(defbinding range-set-range () nil
d520140e 2165 (range range)
1047e159 2166 (lower double-float)
2167 (upper double-float))
560af5c5 2168
1047e159 2169(defbinding range-set-increments () nil
d520140e 2170 (range range)
1047e159 2171 (step double-float)
2172 (page double-float))
560af5c5 2173
560af5c5 2174
d520140e 2175;;; Scale
560af5c5 2176
68f519e0 2177(defbinding scale-get-layout-offsets () nil
2178 (scale scale)
2179 (x int :out)
2180 (y int :out))
560af5c5 2181
560af5c5 2182
d520140e 2183;;; Progress bar
560af5c5 2184
bbaeff4b 2185(defbinding progress-bar-pulse () nil
d520140e 2186 (progress-bar progress-bar))
560af5c5 2187
2188
c49be931 2189;;; Size group
2190
2191(defmethod initialize-instance ((size-group size-group) &rest initargs
2192 &key widget widgets)
2193 (declare (ignore widget widgets))
2194 (prog1
2195 (call-next-method)
2196 (initial-add size-group #'size-group-add-widget
2197 initargs :widget :widgets)))
2198
2199
2200(defbinding size-group-add-widget () nil
2201 (size-group size-group)
2202 (widget widget))
2203
2204(defbinding size-group-remove-widget () nil
2205 (size-group size-group)
2206 (widget widget))
2207
560af5c5 2208
f5b67f2b 2209;;; Stock items
2210
73d58e01 2211(defbinding %stock-item-copy () pointer
2212 (location pointer))
2213
2214(defbinding %stock-item-free () nil
2215 (location pointer))
f5b67f2b 2216
73d58e01 2217(defmethod reference-foreign ((class (eql (find-class 'stock-item))) location)
2218 (%stock-item-copy location))
2219
2220(defmethod unreference-foreign ((class (eql (find-class 'stock-item))) location)
2221 (%stock-item-free location))
2222
2223(defbinding stock-add (stock-item) nil
2224 (stock-item stock-item)
2225 (1 unsigned-int))
2226
2227(defbinding stock-list-ids () (gslist string))
2228
2229(defbinding %stock-lookup () boolean
2230 (stock-id string)
2231 (location pointer))
2232
2233(defun stock-lookup (stock-id)
2234 (let ((location
1eae767d 2235 (allocate-memory (foreign-size (find-class 'stock-item)))))
73d58e01 2236 (unwind-protect
2237 (when (%stock-lookup stock-id location)
2238 (ensure-proxy-instance 'stock-item (%stock-item-copy location)))
2239 (deallocate-memory location))))
560af5c5 2240
2241
2242;;; Tooltips
2243
bbaeff4b 2244(defbinding tooltips-enable () nil
d520140e 2245 (tooltips tooltips))
560af5c5 2246
bbaeff4b 2247(defbinding tooltips-disable () nil
d520140e 2248 (tooltips tooltips))
560af5c5 2249
e5b416f0 2250(defun (setf tooltips-enabled-p) (enable tooltips)
2251 (if enable
2252 (tooltips-enable tooltips)
2253 (tooltips-disable tooltips)))
2254
bbaeff4b 2255(defbinding tooltips-set-tip () nil
d520140e 2256 (tooltips tooltips)
2257 (widget widget)
2258 (tip-text string)
2259 (tip-private string))
560af5c5 2260
d76e9fca 2261(defbinding tooltips-data-get () tooltips-data
2262 (widget widget))
2263
bbaeff4b 2264(defbinding tooltips-force-window () nil
d520140e 2265 (tooltips tooltips))
560af5c5 2266
d76e9fca 2267(defbinding tooltips-get-info-from-tip-window () boolean
2268 (tip-window window)
2269 (tooltips tooltips :out)
2270 (current-widget widget :out))
560af5c5 2271
2272
c1c0746b 2273;;; Resource Files
560af5c5 2274
bbaeff4b 2275(defbinding rc-add-default-file (filename) nil
d520140e 2276 ((namestring (truename filename)) string))
560af5c5 2277
bbaeff4b 2278(defbinding rc-parse (filename) nil
d520140e 2279 ((namestring (truename filename)) string))
560af5c5 2280
bbaeff4b 2281(defbinding rc-parse-string () nil
d520140e 2282 (rc-string string))
560af5c5 2283
bbaeff4b 2284(defbinding rc-reparse-all () nil)
560af5c5 2285
bbaeff4b 2286(defbinding rc-get-style () style
d520140e 2287 (widget widget))