Change copyrights from Nokia to Digia
[profile/ivi/qtxmlpatterns.git] / tests / auto / xmlpatternssdk / ASTItem.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the test suite of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia.  For licensing terms and
14 ** conditions see http://qt.digia.com/licensing.  For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights.  These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file.  Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include <QList>
43 #include <QPointer>
44 #include <QVariant>
45
46 #include "ASTItem.h"
47
48 using namespace QPatternistSDK;
49
50 /**
51  * This is what the AST rendering is indented with.
52  */
53 static const QLatin1String astIndent("  ");
54 // STATIC DATA
55
56 ASTItem::ASTItem(ASTItem *p,
57                  const QString &name,
58                  const QString &details,
59                  const QString &staticType,
60                  const QString &reqType) : m_name(name),
61                                               m_details(details),
62                                               m_reqType(reqType),
63                                               m_staticType(staticType),
64                                               m_parent(p)
65 {
66 }
67
68 ASTItem::~ASTItem()
69 {
70     qDeleteAll(m_children);
71 }
72
73 QString ASTItem::toString() const
74 {
75     /* The first ASTItem* is a virtual root node, so skip "this". */
76     Q_ASSERT(m_children.count() == 1);
77     TreeItem *treeChild = m_children.first();
78     Q_ASSERT(treeChild);
79
80     ASTItem *astChild = static_cast<ASTItem *>(treeChild);
81
82     return astChild->toString(QString());
83 }
84
85 QString ASTItem::toString(const QString &indent) const
86 {
87     QString retval;
88
89     retval += indent;
90     retval += m_name;
91     retval += QLatin1Char('(');
92     retval += m_details;
93     retval += QLatin1String(")\n");
94
95     const TreeItem::List::const_iterator end(m_children.constEnd());
96
97     for(TreeItem::List::const_iterator it(m_children.constBegin()); it != end; ++it)
98     {
99         TreeItem *treeChild = *it; /* Cast away the QPointer with its casting operator. */
100         ASTItem *astChild = static_cast<ASTItem *>(treeChild);
101
102         retval += astChild->toString(indent + astIndent);
103     }
104
105     return retval;
106 }
107
108 QVariant ASTItem::data(const Qt::ItemDataRole role, int column) const
109 {
110     if(role != Qt::DisplayRole)
111         return QVariant();
112
113     switch(column)
114     {
115         case 0:
116             return m_name;
117         case 1:
118             return m_details;
119         case 2:
120             return m_staticType;
121         case 3:
122             return m_reqType;
123         default:
124         {
125             Q_ASSERT(false);
126             return QVariant();
127         }
128     }
129 }
130
131 int ASTItem::columnCount() const
132 {
133     return 4;
134 }
135
136 TreeItem::List ASTItem::children() const
137 {
138     return m_children;
139 }
140
141 void ASTItem::appendChild(TreeItem *item)
142 {
143     m_children.append(item);
144 }
145
146 TreeItem *ASTItem::child(const unsigned int rowP) const
147 {
148     return m_children.value(rowP);
149 }
150
151 unsigned int ASTItem::childCount() const
152 {
153     return m_children.count();
154 }
155
156 TreeItem *ASTItem::parent() const
157 {
158     return m_parent;
159 }
160
161 // vim: et:ts=4:sw=4:sts=4