Searched defs:child (Results 1 - 25 of 90) sorted by relevance

1234

/inkscape/src/livarot/
H A DAVL.h33 AVLTree *child[2]; member in class:AVLTree
/inkscape/src/
H A Dsp-tag-use.h32 // relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group
33 SPObject *child; member in class:SPTagUse
H A Dsp-use.h33 // relative to the SPUse itself, it is treated as a child, similar to a grouped item relative to its group
34 SPItem *child; member in class:SPUse
H A Dsp-defs.cpp41 SPObject *child = *i; local
42 if (flags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) {
43 child->updateDisplay(ctx, flags);
45 sp_object_unref(child);
57 for ( SPObject *child = this->firstChild() ; child; child = child->getNext() ) {
58 sp_object_ref(child);
59 l = g_slist_prepend(l, child);
65 SPObject *child = SP_OBJECT(l->data); local
[all...]
H A Dsp-object-group.cpp25 void SPObjectGroup::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
26 SPObject::child_added(child, ref);
32 void SPObjectGroup::remove_child(Inkscape::XML::Node *child) { argument
33 SPObject::remove_child(child);
39 void SPObjectGroup::order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) { argument
40 SPObject::order_changed(child, old_ref, new_ref);
53 for ( SPObject *child = this->firstChild() ; child ; child = child
[all...]
H A Dlayer-fns.cpp60 /** Finds the first child of a \a layer
80 /** Finds the last (topmost) child of a \a layer
148 SPObject *child = last_child_layer(layer); local
149 if (child) {
150 result = child;
H A Dsp-font.cpp62 void SPFont::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
63 SPObject::child_added(child, ref);
72 void SPFont::remove_child(Inkscape::XML::Node* child) { argument
73 SPObject::remove_child(child);
H A Dstyle-test.h410 TestCase(gchar const* parent, gchar const* child, gchar const* result) : argument
411 parent(parent), child(child), result(result) {}
413 gchar const* child; member in struct:StyleTest::TestCase
502 style_child.mergeString( cases[i].child );
508 // << " Child: " << cases[i].child
H A Dobject-test.h100 SPObject *child = root->firstChild(); local
101 assert(child != NULL);
102 TS_ASSERT(child->parent == root);
103 TS_ASSERT(child->document == doc);
104 TS_ASSERT(root->isAncestorOf(child));
107 SPObject *next = child->getNext();
109 TS_ASSERT(next->getPrev() == child);
118 TS_ASSERT(child->lastChild() == next);
H A Dsp-flowdiv.cpp30 for (SPObject *child = this->firstChild() ; child ; child = child->getNext() ) {
31 sp_object_ref(child);
32 l = g_slist_prepend(l, child);
38 SPObject *child = SP_OBJECT(l->data); local
39 l = g_slist_remove(l, child);
41 if (childflags || (child->uflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) {
42 if (SP_IS_ITEM(child)) {
76 SPObject *child = SP_OBJECT(l->data); local
179 SPObject *child = SP_OBJECT(l->data); local
217 SPObject *child = SP_OBJECT(l->data); local
318 SPObject *child = SP_OBJECT(l->data); local
354 SPObject *child = SP_OBJECT(l->data); local
[all...]
H A Dsp-font-face.cpp358 void SPFontFace::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
359 SPObject::child_added(child, ref);
368 void SPFontFace::remove_child(Inkscape::XML::Node *child) { argument
369 SPObject::remove_child(child);
H A Dsp-root.cpp165 void SPRoot::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) argument
167 SPGroup::child_added(child, ref);
169 SPObject *co = this->document->getObjectByRepr(child);
173 //g_assert (co != NULL || !strcmp("comment", child->name())); // comment repr node has no object
186 void SPRoot::remove_child(Inkscape::XML::Node *child) argument
188 if (this->defs && (this->defs->getRepr() == child)) {
205 SPGroup::remove_child(child);
H A Dsp-switch.cpp35 for (SPObject *child = this->firstChild() ; child && !first ; child = child->getNext() ) {
36 if (SP_IS_ITEM(child) && sp_item_evaluate(SP_ITEM(child))) {
37 first = child;
49 SPObject *child = _evaluateFirst(); local
51 if (NULL == child)
55 //g_object_ref (G_OBJECT (child));
72 child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) argument
78 remove_child(Inkscape::XML::Node *child) argument
84 order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) argument
106 SPItem * child = SP_ITEM(o); local
139 SPItem * child = SP_ITEM(o); local
[all...]
H A Dsp-symbol.cpp66 void SPSymbol::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
67 SPGroup::child_added(child, ref);
/inkscape/src/xml/
H A Dlog-builder.cpp34 void LogBuilder::addChild(Node &node, Node &child, Node *prev) { argument
35 _log = new Inkscape::XML::EventAdd(&node, &child, prev, _log);
39 void LogBuilder::removeChild(Node &node, Node &child, Node *prev) { argument
40 _log = new Inkscape::XML::EventDel(&node, &child, prev, _log);
44 void LogBuilder::setChildOrder(Node &node, Node &child, argument
47 _log = new Inkscape::XML::EventChgOrder(&node, &child, old_prev, new_prev, _log);
H A Dnode-observer.h65 * 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) { argument
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 Th
88 notifyChildRemoved(Node &node, Node &child, Node *prev) argument
107 notifyChildOrderChanged(Node &node, Node &child, Node *old_prev, Node *new_prev) argument
[all...]
H A Dsimple-document.cpp75 Node &child,
79 _log_builder.addChild(parent, child, prev);
84 Node &child,
88 _log_builder.removeChild(parent, child, prev);
93 Node &child,
98 _log_builder.setChildOrder(parent, child, old_prev, new_prev);
74 notifyChildAdded(Node &parent, Node &child, Node *prev) argument
83 notifyChildRemoved(Node &parent, Node &child, Node *prev) argument
92 notifyChildOrderChanged(Node &parent, Node &child, Node *old_prev, Node *new_prev) argument
H A Dcomposite-node-observer.cpp28 void CompositeNodeObserver::notifyChildAdded(Node &node, Node &child, Node *prev) argument
35 iter->observer.notifyChildAdded(node, child, prev);
41 void CompositeNodeObserver::notifyChildRemoved(Node &node, Node &child, argument
49 iter->observer.notifyChildRemoved(node, child, prev);
55 void CompositeNodeObserver::notifyChildOrderChanged(Node &node, Node &child, argument
64 iter->observer.notifyChildOrderChanged(node, child, old_prev, new_prev);
118 void notifyChildAdded(Node &node, Node &child, Node *prev) { argument
120 vector.child_added(&node, &child, prev, data);
124 void notifyChildRemoved(Node &node, Node &child, Node *prev) { argument
126 vector.child_removed(&node, &child, pre
130 notifyChildOrderChanged(Node &node, Node &child, Node *old_prev, Node *new_prev) argument
[all...]
H A Devent.cpp95 void notifyChildAdded(Node &parent, Node &child, Node *ref) { argument
96 parent.addChild(&child, ref);
99 void notifyChildRemoved(Node &parent, Node &child, Node */*old_ref*/) { argument
100 parent.removeChild(&child);
103 void notifyChildOrderChanged(Node &parent, Node &child, argument
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, thi
449 notifyChildAdded(Node &parent, Node &child, Node *ref) argument
453 notifyChildRemoved(Node &parent, Node &child, Node * ) argument
457 notifyChildOrderChanged(Node &parent, Node &child, Node * , Node *new_ref) argument
[all...]
H A Dsimple-node.h77 void addChild(Node *child, Node *ref);
78 void appendChild(Node *child) { argument
79 SimpleNode::addChild(child, _last_child);
81 void removeChild(Node *child);
82 void changeOrder(Node *child, Node *ref);
136 unsigned _childPosition(SimpleNode const &child) const;
/inkscape/src/filters/
H A Dcomponenttransfer.cpp98 void SPFeComponentTransfer::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
99 SPFilterPrimitive::child_added(child, ref);
108 void SPFeComponentTransfer::remove_child(Inkscape::XML::Node *child) { argument
109 SPFilterPrimitive::remove_child(child);
H A Ddiffuselighting.cpp233 void SPFeDiffuseLighting::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
234 SPFilterPrimitive::child_added(child, ref);
243 void SPFeDiffuseLighting::remove_child(Inkscape::XML::Node *child) { argument
244 SPFilterPrimitive::remove_child(child);
250 void SPFeDiffuseLighting::order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) { argument
251 SPFilterPrimitive::order_changed(child, old_ref, new_ref);
293 //We assume there is at most one child
H A Dspecularlighting.cpp241 void SPFeSpecularLighting::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
242 SPFilterPrimitive::child_added(child, ref);
251 void SPFeSpecularLighting::remove_child(Inkscape::XML::Node *child) { argument
252 SPFilterPrimitive::remove_child(child);
258 void SPFeSpecularLighting::order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) { argument
259 SPFilterPrimitive::order_changed(child, old_ref, new_ref);
304 //We assume there is at most one child
/inkscape/src/widgets/
H A Dege-output-action.cpp227 GtkWidget* child = GTK_WIDGET( g_list_next(children)->data ); local
228 if ( GTK_IS_LABEL(child) ) {
229 GtkLabel* lbl = GTK_LABEL(child);
/inkscape/src/libgdl/
H A Dgdl-dock-item.h106 GtkWidget *child; member in struct:_GdlDockItem

Completed in 28 milliseconds

1234