chiark / gitweb /
Updated for atk 1.0
[clg] / gtk / gtkcontainer.lisp
index e103c1908ef3bc36c71ad22963afe3293c493f27..073dd3631fe8d55216fabf7d49c8679e48ea4dcd 100644 (file)
 ;; License along with this library; if not, write to the Free Software
 ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
-;; $Id: gtkcontainer.lisp,v 1.4 2001-10-21 23:20:13 espen Exp $
+;; $Id: gtkcontainer.lisp,v 1.6 2001-11-20 18:25:53 espen Exp $
 
 (in-package "GTK")
-
-(defmethod initialize-instance ((container container) &rest initargs)
+            
+(defmethod shared-initialize ((container container) names &rest initargs)
   (call-next-method)
   (dolist (child (get-all initargs :child))
     (apply #'container-add container (mklist child))))
@@ -49,6 +49,19 @@ (defun container-remove (container widget)
   (slot-makunbound widget 'child-slots))
 
 
+(defbinding %container-child-get-property () nil
+  (container container)
+  (child widget)
+  (property-name string)
+  (value gvalue))
+
+(defbinding %container-child-set-property () nil
+  (container container)
+  (child widget)
+  (property-name string)
+  (value gvalue))
+  
+
 (defbinding container-check-resize () nil
   (container container))