Lines Matching defs:child
65 * This method is called whenever a child is added to the observed node. The @c prev
66 * parameter is NULL when the newly added child is first in the sibling order.
69 * @param child The newly added child node
70 * @param prev The node after which the new child was inserted into the sibling order, or NULL
72 virtual void notifyChildAdded(Node &node, Node &child, Node *prev) {
74 INK_UNUSED(child);
81 * This method is called whenever a child is removed from the observed node. The @c prev
82 * parameter is NULL when the removed child was first in the sibling order.
85 * @param child The removed child node
88 virtual void notifyChildRemoved(Node &node, Node &child, Node *prev) {
90 INK_UNUSED(child);
103 * @param child The child node that was relocated in the sibling order
104 * @param old_prev The node that was before @c child prior to the order change
105 * @param new_prev The node that is before @c child after the order change
107 virtual void notifyChildOrderChanged(Node &node, Node &child,
110 INK_UNUSED(child);