summaryrefslogtreecommitdiffstats
path: root/src/xml
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2008-07-01 23:07:59 +0000
committermental <mental@users.sourceforge.net>2008-07-01 23:07:59 +0000
commitedd9e9d9297c2ce629c1c2bed9f3da901658c6a7 (patch)
tree4338c11ef962d94bd4f6351ad6343e1fbf731922 /src/xml
parentaccess some SimpleNode fields directly (diff)
downloadinkscape-edd9e9d9297c2ce629c1c2bed9f3da901658c6a7.tar.gz
inkscape-edd9e9d9297c2ce629c1c2bed9f3da901658c6a7.zip
remove additional unnecessary indirection in tree operations
(bzr r6109)
Diffstat (limited to 'src/xml')
-rw-r--r--src/xml/simple-node.cpp34
-rw-r--r--src/xml/simple-node.h10
2 files changed, 22 insertions, 22 deletions
diff --git a/src/xml/simple-node.cpp b/src/xml/simple-node.cpp
index 7bbec74ee..3d82eed01 100644
--- a/src/xml/simple-node.cpp
+++ b/src/xml/simple-node.cpp
@@ -186,14 +186,14 @@ SimpleNode::SimpleNode(SimpleNode const &node, Document *document)
_parent = _next = NULL;
_first_child = _last_child = NULL;
- for ( Node *child = node._first_child ;
- child != NULL ; child = child->next() )
+ for ( SimpleNode *child = node._first_child ;
+ child != NULL ; child = child->_next )
{
- Node *child_copy=child->duplicate(document);
+ SimpleNode *child_copy=dynamic_cast<SimpleNode *>(child->duplicate(document));
child_copy->_setParent(this);
if (_last_child) {
- _last_child->_setNext(child_copy);
+ _last_child->_next = child_copy;
} else {
_first_child = child_copy;
}
@@ -243,8 +243,8 @@ unsigned SimpleNode::position() const {
unsigned SimpleNode::_childPosition(Node const &child) const {
if (!_cached_positions_valid) {
unsigned position=0;
- for ( Node *sibling = _first_child ;
- sibling ; sibling = sibling->next() )
+ for ( SimpleNode *sibling = _first_child ;
+ sibling ; sibling = sibling->_next )
{
sibling->_setCachedPosition(position);
position++;
@@ -255,8 +255,8 @@ unsigned SimpleNode::_childPosition(Node const &child) const {
}
Node *SimpleNode::nthChild(unsigned index) {
- Node *child = _first_child;
- for ( ; index > 0 && child ; child = child->next() ) {
+ SimpleNode *child = _first_child;
+ for ( ; index > 0 && child ; child = child->_next ) {
index--;
}
return child;
@@ -371,7 +371,7 @@ void SimpleNode::addChild(Node *generic_child, Node *generic_ref) {
Debug::EventTracker<DebugAddChild> tracker(*this, *child, ref);
- Node *next;
+ SimpleNode *next;
if (ref) {
next = ref->_next;
ref->_next = child;
@@ -413,7 +413,7 @@ void SimpleNode::removeChild(Node *generic_child) {
Debug::EventTracker<DebugRemoveChild> tracker(*this, *child);
- Node *next = child->_next;
+ SimpleNode *next = child->_next;
if (ref) {
ref->_next = next;
} else {
@@ -452,7 +452,7 @@ void SimpleNode::changeOrder(Node *generic_child, Node *generic_ref) {
if (prev == ref) { return; }
- Node *next;
+ SimpleNode *next;
/* Remove from old position. */
next = child->_next;
@@ -490,9 +490,9 @@ void SimpleNode::setPosition(int pos) {
// a position beyond the end of the list means the end of the list;
// a negative position is the same as an infinitely large position
- Node *ref=NULL;
- for ( Node *sibling = _parent->firstChild() ;
- sibling && pos ; sibling = sibling->next() )
+ SimpleNode *ref=NULL;
+ for ( SimpleNode *sibling = _parent->_first_child ;
+ sibling && pos ; sibling = sibling->_next )
{
if ( sibling != this ) {
ref = sibling;
@@ -544,9 +544,9 @@ void SimpleNode::synthesizeEvents(NodeEventVector const *vector, void *data) {
}
}
if (vector->child_added) {
- Node *ref = NULL;
- for ( Node *child = this->_first_child ;
- child ; child = child->next() )
+ SimpleNode *ref = NULL;
+ for ( SimpleNode *child = this->_first_child ;
+ child ; child = child->_next )
{
vector->child_added(this, child, ref, data);
ref = child;
diff --git a/src/xml/simple-node.h b/src/xml/simple-node.h
index 0dece19b9..1d87c6db1 100644
--- a/src/xml/simple-node.h
+++ b/src/xml/simple-node.h
@@ -121,7 +121,7 @@ protected:
public: // ideally these should be protected somehow...
NodeObserver &_subtreeObservers() { return _subtree_observers; }
void _setParent(Node *parent);
- void _setNext(Node *next) { _next = next; }
+ void _setNext(Node *next) { _next = dynamic_cast<SimpleNode *>(next); }
unsigned _childPosition(Node const &child) const;
unsigned _cachedPosition() const { return _cached_position; }
@@ -132,8 +132,8 @@ public: // ideally these should be protected somehow...
private:
void operator=(Node const &); // no assign
- Node *_parent;
- Node *_next;
+ SimpleNode *_parent;
+ SimpleNode *_next;
Document *_document;
mutable unsigned _cached_position;
@@ -145,8 +145,8 @@ private:
unsigned _child_count;
mutable bool _cached_positions_valid;
- Node *_first_child;
- Node *_last_child;
+ SimpleNode *_first_child;
+ SimpleNode *_last_child;
CompositeNodeObserver _observers;
CompositeNodeObserver _subtree_observers;