]>
git.saurik.com Git - iphone-api.git/blob - WebCore/CounterNode.h
2 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
3 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
25 #include <wtf/Noncopyable.h>
27 // This implements a counter tree that is used for finding parents in counters() lookup,
28 // and for propagating count changes when nodes are added or removed.
30 // Parents represent unique counters and their scope, which are created either explicitly
31 // by "counter-reset" style rules or implicitly by referring to a counter that is not in scope.
32 // Such nodes are tagged as "reset" nodes, although they are not all due to "counter-reset".
34 // Not that render tree children are often counter tree siblings due to counter scoping rules.
40 class CounterNode
: Noncopyable
{
42 CounterNode(RenderObject
*, bool isReset
, int value
);
44 bool isReset() const { return m_isReset
; }
45 int value() const { return m_value
; }
46 int countInParent() const { return m_countInParent
; }
47 RenderObject
* renderer() const { return m_renderer
; }
49 CounterNode
* parent() const { return m_parent
; }
50 CounterNode
* previousSibling() const { return m_previousSibling
; }
51 CounterNode
* nextSibling() const { return m_nextSibling
; }
52 CounterNode
* firstChild() const { return m_firstChild
; }
53 CounterNode
* lastChild() const { return m_lastChild
; }
55 void insertAfter(CounterNode
* newChild
, CounterNode
* beforeChild
);
56 void removeChild(CounterNode
*);
59 int computeCountInParent() const;
65 RenderObject
* m_renderer
;
67 CounterNode
* m_parent
;
68 CounterNode
* m_previousSibling
;
69 CounterNode
* m_nextSibling
;
70 CounterNode
* m_firstChild
;
71 CounterNode
* m_lastChild
;
74 } // namespace WebCore
77 // Outside the WebCore namespace for ease of invocation from gdb.
78 void showTree(const WebCore::CounterNode
*);
81 #endif // CounterNode_h