summaryrefslogtreecommitdiffstats
path: root/tdehtml/rendering/counter_tree.h
blob: 0266dcc75b562ddc176825117d5c1f739b3e8272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * This file is part of the HTML rendering engine for KDE.
 *
 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */
#ifndef _Counter_Tree_h_
#define _Counter_Tree_h_

#include "misc/shared.h"
#include "rendering/render_object.h"

namespace tdehtml {

class CounterReset;

// This file implements a counter-tree that is used for finding all parents in counters() lookup,
// and for propagating count-changes when nodes are added or removed.
// Please note that only counter-reset and root can be parents here, and that render-tree parents
// are just counter-tree siblings

// Implementation of counter-increment and counter-content
class CounterNode
{
public:
    CounterNode(RenderObject *o);
    virtual ~CounterNode();

    CounterReset* parent() const { return m_parent; }
    CounterNode* previousSibling() const { return m_previous; }
    CounterNode* nextSibling() const { return m_next; }
    virtual CounterNode* firstChild() const { return 0; } ;
    virtual CounterNode* lastChild() const { return 0; };
    virtual void insertAfter ( CounterNode *newChild, CounterNode *refChild );
    virtual void removeChild ( CounterNode *oldChild );
    // Convenient self-refering version of the above
    void remove();

    int value() const { return m_value; };
    void setValue(short v) { m_value = v; };
    int count() const { return m_count; };

    virtual bool isReset() { return false; };
    virtual void recount( bool first = false );
    virtual void setSelfDirty();
    virtual void setParentDirty();

    bool hasCounters() const { return m_hasCounters; };
    bool isVisual() const { return m_isVisual; };
    void setHasCounters();
    void setIsVisual() { m_isVisual = true; };
    bool isRoot() { return m_renderer && m_renderer->isRoot(); };

    void setRenderer(RenderObject *o) { m_renderer = o; };
    RenderObject* renderer() const { return m_renderer; };

    friend class CounterReset;
protected:
    bool m_hasCounters : 1;
    bool m_isVisual : 1;
    short m_value;
    short m_count;
    CounterReset *m_parent;
    CounterNode *m_previous;
    CounterNode *m_next;
    RenderObject *m_renderer;
};

// Implementation of counter-reset and root
class CounterReset : public CounterNode
{
public:
    CounterReset(RenderObject *o);
    virtual ~CounterReset();

    virtual CounterNode *firstChild() const { return m_first; };
    virtual CounterNode *lastChild() const { return m_last; };
    virtual void insertAfter ( CounterNode *newChild, CounterNode *refChild );
    virtual void removeChild ( CounterNode *oldChild );

    virtual bool isReset() { return true; };
    virtual void recount( bool first = false );
    virtual void setSelfDirty();
    virtual void setParentDirty();

    void updateTotal(int value);
    // The highest value among children
    int total() const { return m_total; };

protected:
    int m_total;
    CounterNode *m_first;
    CounterNode *m_last;
};

} // namespace

#endif