Add bindings; add information on bindings coverage
[cl-gtk2.git] / gtk / gtk.widget.lisp
index 69a459c..25df5fb 100644 (file)
 
 (export 'widget-flags)
 
-(defcstruct %gtk-requisition
-  (:width :int)
-  (:height :int))
-
-(defcstruct %gtk-allocation
-  (:x :int)
-  (:y :int)
-  (:width :int)
-  (:height :int))
-
 (defcstruct %gtk-widget
   (:object %gtk-object)
   (:private-flags :uint16)
@@ -29,8 +19,8 @@
   (:saved-state state-type)
   (:name (:pointer :char))
   (:style :pointer)
-  (:requisition %gtk-requisition)
-  (:allocation %gtk-allocation)
+  (:requisition requisition-cstruct)
+  (:allocation allocation-cstruct)
   (:window :pointer)
   (:parent :pointer))