summaryrefslogtreecommitdiff
path: root/src/backend/bookshelfmodel/item.cpp
blob: ec2dcab0673f500747b8230a00b9c7a84dc645dd (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
/*********
*
* In the name of the Father, and of the Son, and of the Holy Spirit.
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2009 by the BibleTime developers.
* The BibleTime source code is licensed under the GNU General Public License
* version 2.0.
*
**********/

#include "backend/bookshelfmodel/item.h"

#include "backend/bookshelfmodel/categoryitem.h"
#include "backend/bookshelfmodel/distributionitem.h"
#include "backend/bookshelfmodel/languageitem.h"


namespace BookshelfModel {

Item::Item(Type type)
        : m_type(type), m_parent(0), m_checkState(Qt::Unchecked) {
    // Intentionally empty
}

Item::~Item() {
    qDeleteAll(m_children);
}

int Item::indexFor(Item *newItem) {
    Q_ASSERT(newItem != 0);

    if (m_children.empty()) return 0;

    int i(0);
    for (;;) {
        Item *nextItem(m_children.at(i));
        Q_ASSERT(nextItem->type() == newItem->type());
        if (*newItem < *nextItem) {
            return i;
        }
        i++;
        if (i >= m_children.size()) {
            return i;
        }
    }
}

bool Item::operator<(const Item &other) const {
    if (m_type != other.type()) {
        return m_type < other.type();
    }
    return name().localeAwareCompare(other.name()) < 0;
}

bool Item::isHidden() const {
    if (m_children.empty()) return true;
    Q_FOREACH(Item *child, m_children) {
        if (!child->isHidden()) return false;
    }
    return true;
}

} // namespace BookshelfModel