OSDN Git Service

d9c6d4777eecfe903711fc08ba8c878155aeb6d5
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / designercore / model / internalproperty.h
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 #ifndef INTERNALPROPERTY_H
35 #define INTERNALPROPERTY_H
36
37 #include "corelib_global.h"
38
39 #include <QVariant>
40 #include <QString>
41 #include <QRegExp>
42 #include <QSize>
43 #include <QSizeF>
44 #include <QPoint>
45 #include <QPointF>
46 #include <QSharedPointer>
47
48 namespace QmlDesigner {
49
50 namespace Internal {
51
52 class InternalBindingProperty;
53 class InternalVariantProperty;
54 class InternalNodeListProperty;
55 class InternalNodeProperty;
56 class InternalNodeAbstractProperty;
57 class InternalNode;
58
59 typedef QSharedPointer<InternalNode> InternalNodePointer;
60 typedef QWeakPointer<InternalNode> InternalNodeWeakPointer;
61
62 class CORESHARED_EXPORT InternalProperty
63 {
64 public:
65     typedef QSharedPointer<InternalProperty> Pointer;
66     typedef QWeakPointer<InternalProperty> WeakPointer;
67
68
69     InternalProperty();
70     virtual ~InternalProperty();
71
72     virtual bool isValid() const;
73
74     QString name() const;
75
76     virtual bool isBindingProperty() const;
77     virtual bool isVariantProperty() const;
78     virtual bool isNodeListProperty() const;
79     virtual bool isNodeProperty() const;
80     virtual bool isNodeAbstractProperty() const;
81
82     QSharedPointer<InternalBindingProperty> toBindingProperty() const;
83     QSharedPointer<InternalVariantProperty> toVariantProperty() const;
84     QSharedPointer<InternalNodeListProperty> toNodeListProperty() const;
85     QSharedPointer<InternalNodeProperty> toNodeProperty() const;
86     QSharedPointer<InternalNodeAbstractProperty> toNodeAbstractProperty() const;
87
88     InternalNodePointer propertyOwner() const;
89
90     virtual void remove();
91
92
93     QString dynamicTypeName() const;
94
95     void resetDynamicTypeName();
96
97 protected: // functions
98     InternalProperty(const QString &name, const InternalNodePointer &propertyOwner);
99     Pointer internalPointer() const;
100     void setInternalWeakPointer(const Pointer &pointer);
101     void setDynamicTypeName(const QString &name);
102 private:
103     WeakPointer m_internalPointer;
104     QString m_name;
105     QString m_dynamicType;
106     InternalNodeWeakPointer m_propertyOwner;
107
108 };
109
110 } // namespace Internal
111 } // namespace QmlDesigner
112
113 #endif // INTERNALPROPERTY_H