Lines Matching defs:child
95 void notifyChildAdded(Node &parent, Node &child, Node *ref) {
96 parent.addChild(&child, ref);
99 void notifyChildRemoved(Node &parent, Node &child, Node */*old_ref*/) {
100 parent.removeChild(&child);
103 void notifyChildOrderChanged(Node &parent, Node &child,
106 parent.changeOrder(&child, new_ref);
155 observer.notifyChildRemoved(*this->repr, *this->child, this->ref);
161 observer.notifyChildAdded(*this->repr, *this->child, this->ref);
179 observer.notifyChildOrderChanged(*this->repr, *this->child, this->newref, this->oldref);
214 observer.notifyChildAdded(*this->repr, *this->child, this->ref);
220 observer.notifyChildRemoved(*this->repr, *this->child, this->ref);
238 observer.notifyChildOrderChanged(*this->repr, *this->child, this->oldref, this->newref);
300 opposite->child == action->child &&
367 /* consecutive chgorders for the same child may be combined or
372 chg_order->child == this->child ){
449 void notifyChildAdded(Node &parent, Node &child, Node *ref) {
450 g_warning("Event: Added %s to %s after %s", node_to_string(parent).c_str(), node_to_string(child).c_str(), ref_to_string(ref).c_str());
453 void notifyChildRemoved(Node &parent, Node &child, Node */*ref*/) {
454 g_warning("Event: Removed %s from %s", node_to_string(parent).c_str(), node_to_string(child).c_str());
457 void notifyChildOrderChanged(Node &parent, Node &child,
460 g_warning("Event: Moved %s after %s in %s", node_to_string(child).c_str(), ref_to_string(new_ref).c_str(), node_to_string(parent).c_str());