Searched refs:child (Results 1 - 25 of 178) sorted by relevance

12345678

/inkscape/src/livarot/
H A DAVL.cpp31 child[i] = NULL;
55 if (from == child[1 - s]) {
56 if (child[s]) {
57 return child[s]->leafFromParent(this, s);
63 else if (from == child[s]) {
74 if (child[s]) {
75 return child[s]->leafFromParent(this, s);
93 if (from == child[LEFT])
95 if (from == child[RIGHT])
103 if (from == child[RIGH
[all...]
/inkscape/src/
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-flowregion.cpp27 static void GetDest(SPObject* child,Shape **computed);
39 void SPFlowregion::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { argument
40 SPItem::child_added(child, ref);
47 void SPFlowregion::remove_child(Inkscape::XML::Node * child) { argument
48 SPItem::remove_child(child);
66 for ( SPObject *child = this->firstChild() ; child ; child = child->getNext() ) {
67 sp_object_ref(child);
74 SPObject *child = reinterpret_cast<SPObject *>(l->data); local
129 SPObject *child = reinterpret_cast<SPObject *>(l->data); local
195 child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) argument
203 remove_child(Inkscape::XML::Node * child) argument
232 SPObject *child = reinterpret_cast<SPObject *>(l->data); local
284 SPObject *child = reinterpret_cast<SPObject *>(l->data); local
351 GetDest(SPObject* child,Shape **computed) argument
[all...]
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-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 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-clippath.cpp105 void SPClipPath::child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) { argument
107 SPObjectGroup::child_added(child, ref);
110 SPObject *ochild = this->document->getObjectByRepr(child);
131 for ( SPObject *child = this->firstChild(); child; child = child->getNext()) {
132 sp_object_ref(child);
133 l = g_slist_prepend(l, child);
139 SPObject *child local
178 SPObject *child = SP_OBJECT(l->data); local
[all...]
H A Dsp-mask.cpp115 void SPMask::child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) { argument
117 SPObjectGroup::child_added(child, ref);
120 SPObject *ochild = this->document->getObjectByRepr(child);
142 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children.end();++child) {
143 sp_object_ref(*child);
147 for (std::vector<SPObject *>::const_iterator child = children.begin();child != children.end();++child) {
[all...]
H A Dsp-tspan.cpp178 for (SPObject* child = this->firstChild() ; child ; child = child->getNext() ) {
181 if ( SP_IS_TSPAN(child) || SP_IS_TREF(child) ) {
182 c_repr = child->updateRepr(xml_doc, NULL, flags);
183 } else if ( SP_IS_TEXTPATH(child) ) {
184 //c_repr = child->updateRepr(xml_doc, NULL, flags); // shouldn't happen
185 } else if ( SP_IS_STRING(child) ) {
[all...]
H A Dsp-use.cpp45 child(NULL),
67 if (this->child) {
68 this->detach(this->child);
69 this->child = NULL;
86 // We don't need to create child here:
88 // which will call SPUse::href_changed, and that will take care of the child
92 if (this->child) {
93 this->detach(this->child);
94 this->child = NULL;
180 SPShape *shape = dynamic_cast<SPShape *>(child);
[all...]
H A Dsp-tag-use.cpp41 if (child) {
42 detach(child);
43 child = NULL;
59 // We don't need to create child here:
61 // which will call sp_tag_use_href_changed, and that will take care of the child
68 if (child) {
69 detach(child);
70 child = NULL;
141 * Note that the returned is the clone object, i.e. the child of an SPTagUse (of the argument one for
147 SPObject *orig = child;
[all...]
H A Dsp-object-group.h28 virtual void child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref);
29 virtual void remove_child(Inkscape::XML::Node* child);
31 virtual void order_changed(Inkscape::XML::Node* child, Inkscape::XML::Node* old, Inkscape::XML::Node* new_repr);
H A Dsp-hatch.cpp92 SPHatchPath *child = *child_iter; local
93 child->hide(view_iter->key);
109 void SPHatch::child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) argument
111 SPObject::child_added(child, ref);
113 SPHatchPath *path_child = dynamic_cast<SPHatchPath *>(document->getObjectByRepr(child));
126 //FIXME: notify all hatches that refer to this child set
237 for (SPObject const *child = hatch->firstChild(); child && !matched; child = child
294 SPHatchPath* child = *iter; local
327 SPObject *child = *iter; local
373 SPHatchPath *child = *child_iter; local
377 SPHatchPath *child = *child_iter; local
499 SPHatchPath const *child = *iter; local
519 SPHatchPath *child = *iter; local
537 SPHatchPath *child = *iter; local
559 SPHatchPath const *child = *iter; local
[all...]
H A Dsp-object.cpp370 g_critical("Attempt to append repr as child of cloned object");
389 for ( SPObject *child = firstChild() ; child; child = child->getNext() ) {
391 sp_object_ref (child);
394 l.push_back(child);
457 for (SPObject *child = firstChild(); child; child
623 child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) argument
653 remove_child(Inkscape::XML::Node* child) argument
664 order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node * , Inkscape::XML::Node *new_ref) argument
687 SPObject* child = SPFactory::createObject(typeString); local
777 appendChild(Inkscape::XML::Node *child) argument
783 addChild(Inkscape::XML::Node *child, Inkscape::XML::Node * prev) argument
841 repr_child_added(Inkscape::XML::Node * , Inkscape::XML::Node *child, Inkscape::XML::Node *ref, gpointer data) argument
848 repr_child_removed(Inkscape::XML::Node * , Inkscape::XML::Node *child, Inkscape::XML::Node * , gpointer data) argument
855 repr_order_changed(Inkscape::XML::Node * , Inkscape::XML::Node *child, Inkscape::XML::Node *old, Inkscape::XML::Node *newer, gpointer data) argument
1504 SPObject *child; local
[all...]
H A Dsp-pattern.cpp226 for (SPObject *child = pat_i->firstChild(); child; child = child->getNext()) {
227 l.push_back(child);
248 SPObject *child = *it; local
250 sp_object_ref(child, NULL);
252 if (flags || (child->mflags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_CHILD_MODIFIED_FLAG))) {
253 child->updateDisplay(ctx, flags);
256 sp_object_unref(child, NUL
274 SPObject *child = *it; local
341 SPObject *child = document->getObjectById(child_id); local
[all...]
H A Dsp-item-group.cpp85 void SPGroup::child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref) { argument
86 SPLPEItem::child_added(child, ref);
90 if (last_child && last_child->getRepr() == child) {
91 // optimization for the common special case where the child is being added at the end
106 SPItem *item = dynamic_cast<SPItem *>(get_child_by_repr(child));
128 void SPGroup::remove_child(Inkscape::XML::Node *child) { argument
129 SPLPEItem::remove_child(child);
134 void SPGroup::order_changed (Inkscape::XML::Node *child, Inkscape::XML::Node *old_ref, Inkscape::XML::Node *new_ref) argument
136 SPLPEItem::order_changed(child, old_ref, new_ref);
138 SPItem *item = dynamic_cast<SPItem *>(get_child_by_repr(child));
166 SPObject *child = *i; local
210 SPObject *child = *i; local
573 SPObject *child = (ref) ? ref->getNext() : group->firstChild(); local
786 SPItem * child = dynamic_cast<SPItem *>(o); local
[all...]
/inkscape/src/xml/
H A Dsimple-node.cpp83 DebugAddChild(Node const &node, Node const &child, Node const *prev) argument
84 : DebugXMLNode(node, Util::share_static_string("add-child"))
86 _addProperty("child", stringify_node(child));
93 DebugRemoveChild(Node const &node, Node const &child) argument
94 : DebugXMLNode(node, Util::share_static_string("remove-child"))
96 _addProperty("child", stringify_node(child));
102 DebugSetChildPosition(Node const &node, Node const &child, argument
104 : DebugXMLNode(node, Util::share_static_string("set-child
263 SimpleNode *child = _first_child; local
411 SimpleNode *child=dynamic_cast<SimpleNode *>(generic_child); local
454 SimpleNode *child=dynamic_cast<SimpleNode *>(generic_child); local
487 SimpleNode *const child=dynamic_cast<SimpleNode *>(generic_child); local
553 child_added(Node *node, Node *child, Node *ref, void *data) argument
557 child_removed(Node *node, Node *child, Node *ref, void *data) argument
569 order_changed(Node *node, Node *child, Node *old_ref, Node *new_ref, void *data) argument
[all...]
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 Dlog-builder.h53 void addChild(Node &node, Node &child, Node *prev);
55 void removeChild(Node &node, Node &child, Node *prev);
57 void setChildOrder(Node &node, Node &child,
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
/inkscape/src/helper/
H A Dstock-items.cpp207 for ( SPObject *child = defs->firstChild(); child; child = child->getNext() )
209 if (child->getRepr()->attribute("inkscape:stockid") &&
210 !strcmp(name_p, child->getRepr()->attribute("inkscape:stockid")) &&
211 SP_IS_MARKER(child))
213 object = child;
219 for ( SPObject *child = defs->firstChild() ; child; chil
[all...]
/inkscape/src/libgdl/
H A Dgdl-dock-notebook.c69 GdlDockObject *child,
73 GdlDockObject *child);
184 item->child = gdl_switcher_new ();
185 gtk_widget_set_parent (item->child, GTK_WIDGET (notebook));
186 gtk_notebook_set_tab_pos (GTK_NOTEBOOK (item->child), GTK_POS_BOTTOM);
187 g_signal_connect (item->child, "switch-page",
189 g_signal_connect (item->child, "notify::page",
191 g_signal_connect (item->child, "button-press-event",
193 g_signal_connect (item->child, "button-release-event",
195 gtk_notebook_set_scrollable (GTK_NOTEBOOK (item->child), TRU
447 gdl_dock_notebook_child_placement(GdlDockObject *object, GdlDockObject *child, GdlDockPlacement *placement) argument
477 gdl_dock_notebook_present(GdlDockObject *object, GdlDockObject *child) argument
[all...]
H A Dgdl-dock-bar.c466 GList *child; local
477 for (child = gtk_container_get_children (GTK_CONTAINER (box));
478 child != NULL; child = g_list_next (child))
480 if (gtk_widget_get_visible (GTK_WIDGET (child->data)))
487 gtk_widget_size_request (GTK_WIDGET (child->data), &child_requisition);
490 child->data,
529 GList *child; local
548 for (child
733 GList *child; local
797 GList *child; local
[all...]
H A Dgdl-dock-paned.c74 GdlDockObject *child,
196 if (item->child)
197 gtk_widget_unparent (GTK_WIDGET (item->child));
201 item->child = gtk_hpaned_new ();
203 item->child = gtk_vpaned_new ();
206 g_signal_connect (item->child, "notify::position",
208 g_signal_connect (item->child, "button-press-event",
210 g_signal_connect (item->child, "button-release-event",
213 gtk_widget_set_parent (item->child, GTK_WIDGET (item));
214 gtk_widget_show (item->child);
637 gdl_dock_paned_child_placement(GdlDockObject *object, GdlDockObject *child, GdlDockPlacement *placement) argument
[all...]

Completed in 553 milliseconds

12345678