]> Pileus Git - ~andy/gtk/commitdiff
Add note about child property changes.
authorOwen Taylor <otaylor@redhat.com>
Mon, 25 Jun 2001 02:15:50 +0000 (02:15 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Mon, 25 Jun 2001 02:15:50 +0000 (02:15 +0000)
Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>

* docs/Changes-2.0.txt: Add note about child property
changes.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
docs/Changes-2.0.txt

index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 1ec7cfe0297c6bab6b6673ac0f51ce828ceb2774..e94c717f15991275e5fd35321e1368916f85f0f5 100644 (file)
@@ -1,3 +1,8 @@
+Sun Jun 24 22:15:16 2001  Owen Taylor  <otaylor@redhat.com>
+
+       * docs/Changes-2.0.txt: Add note about child property
+       changes.
+
 Sun Jun 24 21:34:32 2001  Owen Taylor  <otaylor@redhat.com>
 
        * gtk/gtkenums.h gtk/gtkiconfactory.c: Add a special size for
index 56a8fe88ad6ce9521f6ae969033970d2ca2d55c8..d643b27523eb881544888441f67a09104e504318 100644 (file)
@@ -366,3 +366,20 @@ Incompatible Changes from GTK+-1.2 to GTK+-2.0:
  
 * gtk_rc_set_image_loader() and gtk_rc_load_image() has been removed, now 
   that GTK+ includes decent image loading capabilities itself.
+
+* The child argument facility in gtkcontainer.c has been converted
+  to a child property facility using GParamSpec and other facilities
+  for GObject.   
+
+   - The set_child_arg and get_child_arg virtual methods have been
+     replaced with set_child_property / get_child_property, which
+     work similar to GObject->set_property/get_property.
+
+   - Other removed functions with the replacements:
+
+     gtk_container_add_child_arg_type => gtk_container_class_install_child_property
+     gtk_container_query_child_args   => gtk_container_class_list_child_properties
+     gtk_container_child_getv         => gtk_container_child_set_property
+     gtk_container_child_setv         => gtk_container_child_get_property
+     gtk_container_add_with_args      => gtk_container_add_with_properties
+     gtk_container_addv               => gtk_container_add / gtk_container_child_set_property