OSDN Git Service

c10863704387189d2df4d393f2ca6fb07ba887ac
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / designercore / model / internalnodelistproperty.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
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, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "internalnodelistproperty.h"
35 #include "internalnode_p.h"
36 #include <QList>
37
38 namespace QmlDesigner {
39 namespace Internal {
40
41 InternalNodeListProperty::InternalNodeListProperty(const QString &name, const InternalNodePointer &propertyOwner)
42         : InternalNodeAbstractProperty(name, propertyOwner)
43 {
44 }
45
46 InternalNodeListProperty::Pointer InternalNodeListProperty::create(const QString &name, const InternalNodePointer &propertyOwner)
47 {
48     InternalNodeListProperty *newPointer(new InternalNodeListProperty(name, propertyOwner));
49     InternalProperty::Pointer smartPointer(newPointer);
50
51     newPointer->setInternalWeakPointer(smartPointer.toWeakRef());
52
53     return smartPointer.staticCast<InternalNodeListProperty>();
54 }
55
56 bool InternalNodeListProperty::isValid() const
57 {
58     return InternalProperty::isValid() && isNodeListProperty();
59 }
60
61 bool InternalNodeListProperty::isEmpty() const
62 {
63     return m_nodeList.isEmpty();
64 }
65
66 int InternalNodeListProperty::count() const
67 {
68     return m_nodeList.count();
69 }
70
71 int InternalNodeListProperty::indexOf(const InternalNode::Pointer &node) const
72 {
73     if (node.isNull())
74         return -1;
75
76     return m_nodeList.indexOf(node);
77 }
78
79 InternalNode::Pointer InternalNodeListProperty::at(int index) const
80 {
81     Q_ASSERT(index >=0 || index < m_nodeList.count());
82     return InternalNode::Pointer(m_nodeList.at(index));
83 }
84
85 bool InternalNodeListProperty::isNodeListProperty() const
86 {
87     return true;
88 }
89
90 void InternalNodeListProperty::add(const InternalNode::Pointer &internalNode)
91 {
92     Q_ASSERT(!m_nodeList.contains(internalNode));
93     m_nodeList.append(internalNode);
94 }
95
96 void InternalNodeListProperty::remove(const InternalNodePointer &internalNode)
97 {
98     Q_ASSERT(m_nodeList.contains(internalNode));
99     m_nodeList.removeAll(internalNode);
100 }
101
102 const QList<InternalNode::Pointer> &InternalNodeListProperty::nodeList() const
103 {
104     return m_nodeList;
105 }
106
107 void InternalNodeListProperty::slide(int from, int to)
108 {
109     InternalNode::Pointer internalNode = m_nodeList.takeAt(from);
110     m_nodeList.insert(to, internalNode);
111 }
112
113 QList<InternalNode::Pointer> InternalNodeListProperty::allSubNodes() const
114 {
115     QList<InternalNode::Pointer> nodeList;
116     foreach(const InternalNode::Pointer &childNode, m_nodeList) {
117         nodeList.append(childNode->allSubNodes());
118         nodeList.append(childNode);
119     }
120
121     return nodeList;
122 }
123
124 QList<InternalNodePointer> InternalNodeListProperty::allDirectSubNodes() const
125 {
126     return nodeList();
127 }
128
129 } // namespace Internal
130 } // namespace QmlDesigner