1 ;; Common Lisp bindings for GTK+ v2.0
2 ;; Copyright (C) 2000-2001 Espen S. Johnsen <espen@users.sourceforge.net>
4 ;; This library is free software; you can redistribute it and/or
5 ;; modify it under the terms of the GNU Lesser General Public
6 ;; License as published by the Free Software Foundation; either
7 ;; version 2 of the License, or (at your option) any later version.
9 ;; This library is distributed in the hope that it will be useful,
10 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 ;; Lesser General Public License for more details.
14 ;; You should have received a copy of the GNU Lesser General Public
15 ;; License along with this library; if not, write to the Free Software
16 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 ;; $Id: gtkwidget.lisp,v 1.7 2001/12/12 20:24:41 espen Exp $
23 (defmethod shared-initialize ((widget widget) names &rest initargs &key parent)
24 (declare (ignore initargs names))
27 (let ((old-parent (widget-parent widget))
28 (parent-widget (first (mklist parent)))
29 (args (rest (mklist parent))))
31 (container-remove old-parent widget))
32 (apply #'container-add parent-widget widget args))))
34 (defmethod shared-initialize :after ((widget widget) names &rest initargs
36 (declare (ignore initargs names))
38 (widget-show-all widget)))
41 (defmethod slot-unbound ((class gobject-class) (object widget) slot)
43 ((and (eq slot 'child-slots) (slot-value object 'parent))
44 (with-slots (parent child-slots) object
48 (gethash (class-of parent) *container-to-child-class-mappings*)
49 :parent parent :child object))))
50 (t (call-next-method))))
53 (defun child-slot-value (widget slot)
54 (slot-value (widget-child-slots widget) slot))
56 (defun (setf child-slot-value) (value widget slot)
57 (setf (slot-value (widget-child-slots widget) slot) value))
59 (defmacro with-child-slots (slots widget &body body)
60 `(with-slots ,slots (widget-child-slots ,widget)
63 (defmacro widget-destroyed (place)
66 (defbinding widget-destroy () nil
69 (defbinding widget-unparent () nil
72 (defbinding widget-show () nil
75 (defbinding widget-show-now () nil
78 (defbinding widget-hide () nil
81 (defbinding widget-show-all () nil
84 (defbinding widget-hide-all () nil
87 (defbinding widget-map () nil
90 (defbinding widget-unmap () nil
93 (defbinding widget-realize () nil
96 (defbinding widget-unrealize () nil
100 (defbinding widget-add-accelerator
101 (widget signal accel-group key modifiers flags) nil
103 ((name-to-string signal) string)
104 (accel-group accel-group)
105 ((gdk:keyval-from-name key) unsigned-int)
106 (modifiers gdk:modifier-type)
109 (defbinding widget-remove-accelerator
110 (widget accel-group key modifiers) nil
112 (accel-group accel-group)
113 ((gdk:keyval-from-name key) unsigned-int)
114 (modifiers gdk:modifier-type))
116 (defbinding widget-accelerator-signal
117 (widget accel-group key modifiers) unsigned-int
119 (accel-group accel-group)
120 ((gdk:keyval-from-name key) unsigned-int)
121 (modifiers gdk:modifier-type))
123 (defbinding widget-lock-accelerators () nil
126 (defbinding widget-unlock-accelerators () nil
129 (defbinding (widget-accelerators-locked-p "gtk_widget_accelerators_locked")
134 (defbinding widget-event () int
138 (defbinding get-event-widget () widget
141 (defbinding widget-activate () boolean
144 (defbinding widget-set-scroll-adjustments () boolean
146 (hadjustment adjustment)
147 (vadjustment adjustment))
149 (defbinding widget-reparent () nil
153 ; (defbinding widget-popup () nil
158 (defbinding widget-grab-focus () nil
161 (defbinding widget-grab-default () nil
164 (defbinding grab-add () nil
167 (defbinding grab-get-current () widget)
169 (defbinding grab-remove () nil
172 (defbinding widget-allocation () nil
177 (defbinding widget-add-events () nil
179 (events gdk:event-mask))
181 (defbinding (widget-toplevel "gtk_widget_get_toplevel") () widget
184 (defbinding (widget-ancestor "gtk_widget_get_ancestor") (widget type) widget
186 ((find-type-number type) type-number))
188 (defbinding (widget-pointer "gtk_widget_get_pointer") () nil
193 (defbinding (widget-is-ancestor-p "gtk_widget_is_ancestor") () boolean
197 (defbinding widget-ensure-style () nil
200 (defbinding widget-reset-rc-styles () nil
203 (defun (setf widget-cursor) (cursor-type widget)
204 (let ((cursor (gdk:cursor-new cursor-type))
205 (window (widget-window widget)))
206 (gdk:window-set-cursor window cursor)
207 ;(gdk:cursor-destroy cursor)
210 ;; Push/pop pairs, to change default values upon a widget's creation.
211 ;; This will override the values that got set by the
212 ;; widget-set-default-* functions.
214 (defbinding widget-push-colormap () nil
215 (colormap gdk:colormap))
217 (defbinding widget-push-composite-child () nil)
219 (defbinding widget-pop-colormap () nil)
221 (defbinding widget-pop-composite-child () nil)
224 ;; Set certain default values to be used at widget creation time.
226 (defbinding widget-set-default-colormap () nil
227 (colormap gdk:colormap))
229 (defbinding widget-get-default-style () style)
231 (defbinding widget-get-default-colormap () gdk:colormap)
233 (defbinding widget-shape-combine-mask () nil
235 (shape-mask gdk:bitmap)
239 ;; defined in gtkglue.c
240 (defbinding widget-mapped-p () boolean