diff --git a/doc/ChangeLog b/doc/ChangeLog index cb498b6dc..adc4a4b63 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +2005-03-15 Dan Winship + + * en/Gtk/NodeStore.xml (AddNode): + * en/Gtk/TreeNode.xml (AddChild): I, for one, welcome our new + insert overloads. + + * en/Gtk/TreeNodeRemovedHandler.xml: add "child" arg + 2005-02-23 Dan Winship * en/GnomeDb/EditorClass.xml: gone diff --git a/doc/en/Gtk/NodeStore.xml b/doc/en/Gtk/NodeStore.xml index 4a9c47d17..aa3f7c6c9 100644 --- a/doc/en/Gtk/NodeStore.xml +++ b/doc/en/Gtk/NodeStore.xml @@ -11,7 +11,8 @@ Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. Tree and List store for objects. - + + GLib.Object @@ -36,13 +37,33 @@ - AddNode method + Appends the node to the root level of the tree a Adds to the end of the list of root level nodes. + + + Method + + System.Void + + + + + + + Inserts the node into the root level of the tree + a + the position to insert it at + + Adds to the list of root level nodes before the node + currently at . + + + Method @@ -110,4 +131,4 @@ - + \ No newline at end of file diff --git a/doc/en/Gtk/TreeNode.xml b/doc/en/Gtk/TreeNode.xml index b23542613..8ed549621 100644 --- a/doc/en/Gtk/TreeNode.xml +++ b/doc/en/Gtk/TreeNode.xml @@ -215,7 +215,7 @@ public class MyTreeNode : TreeNode { - AddChild method + Appends a child to the node a Adds the specified to this . The is added to the end of the children list, the @@ -223,6 +223,27 @@ public class MyTreeNode : TreeNode { this node, and the event is raised. + + + Method + + System.Void + + + + + + + Inserts a child at the given position + a + Position among the node's children to insert + Adds the specified to this . + The is added to the children list before the child currently + at position , the + property of is set to this node, and the + event is raised. + + Method diff --git a/doc/en/Gtk/TreeNodeRemovedHandler.xml b/doc/en/Gtk/TreeNodeRemovedHandler.xml index ff865a726..6c30e1421 100644 --- a/doc/en/Gtk/TreeNodeRemovedHandler.xml +++ b/doc/en/Gtk/TreeNodeRemovedHandler.xml @@ -1,5 +1,5 @@ - + gtk-sharp @@ -14,7 +14,7 @@ Event handler for notification of the removal of a child node. The node is already removed when the event is raised, so points to the - former position of the removed node in the child list of . + former position of in the child list of .