931634722ee1fad966c876c5cce1953e34cd4e58
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternssdk / TreeItem.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #ifndef PatternistSDK_TreeItem_H
43 #define PatternistSDK_TreeItem_H
44
45 #include <QObject>
46
47 #include "Global.h"
48
49 QT_BEGIN_HEADER
50
51 QT_BEGIN_NAMESPACE
52
53 class QVariant;
54 template<typename T> class QList;
55 template<typename T> class QPointer;
56
57 namespace QPatternistSDK
58 {
59     /**
60      * @short TreeItem is a node in a hierachial structure and is used together
61      * with TreeModel.
62      *
63      * TreeItem is abstract base class. Instances of sub-classes of TreeItem
64      * can be used with TreeModel in order to use hierarchial data in Qt's
65      * model/view framework.
66      *
67      * TreeItem is a QObject in order to be able to be used with QPointer.
68      *
69      * @author Frans Englich <frans.englich@nokia.com>
70      * @see TreeModel
71      * @ingroup PatternistSDK
72      */
73     class Q_PATTERNISTSDK_EXPORT TreeItem : public QObject
74     {
75         Q_OBJECT
76     public:
77         typedef QList<QPointer<TreeItem> > List;
78
79         virtual ~TreeItem() {}
80         virtual void appendChild(TreeItem *item) = 0;
81         virtual TreeItem *child(const unsigned int row) const = 0;
82         virtual unsigned int childCount() const = 0;
83         virtual TreeItem *parent() const = 0;
84
85         virtual TreeItem::List children() const = 0;
86         virtual int columnCount() const = 0;
87
88         /**
89          * Determines the position among the children of
90          * this TreeItem's parent. This is done by introspecting the result
91          * of children().
92          */
93         int row() const;
94
95         virtual QVariant data(const Qt::ItemDataRole role, int column) const = 0;
96
97     Q_SIGNALS:
98         /**
99          * Emitted whenever this item changed. This is used for keeping
100          * views in synchronization with the item model which houses
101          * this item.
102          *
103          * @param item the item which changed. That is, this TreeItem.
104          */
105         void changed(TreeItem *item);
106     };
107 }
108
109 QT_END_NAMESPACE
110
111 QT_END_HEADER
112
113 #endif
114 // vim: et:ts=4:sw=4:sts=4