/inkscape/src/livarot/ |
H A D | AVL.h | 33 AVLTree *child[2]; member in class:AVLTree
|
/inkscape/src/ |
H A D | sp-tag-use.h | 32 // 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 D | sp-use.h | 33 // 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 D | sp-defs.cpp | 41 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 D | sp-object-group.cpp | 25 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 D | layer-fns.cpp | 60 /** 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 D | sp-font.cpp | 62 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 D | style-test.h | 410 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 D | object-test.h | 100 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 D | sp-flowdiv.cpp | 30 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 D | sp-font-face.cpp | 358 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 D | sp-root.cpp | 165 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 D | sp-switch.cpp | 35 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 D | sp-symbol.cpp | 66 void SPSymbol::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument 67 SPGroup::child_added(child, ref);
|
/inkscape/src/xml/ |
H A D | log-builder.cpp | 34 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 D | node-observer.h | 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) { 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 D | simple-document.cpp | 75 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 D | composite-node-observer.cpp | 28 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 D | event.cpp | 95 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 D | simple-node.h | 77 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 D | componenttransfer.cpp | 98 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 D | diffuselighting.cpp | 233 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 D | specularlighting.cpp | 241 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 D | ege-output-action.cpp | 227 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 D | gdl-dock-item.h | 106 GtkWidget *child; member in struct:_GdlDockItem
|