OSDN Git Service

Update license.
[qt-creator-jp/qt-creator-jp.git] / src / plugins / qmldesigner / designercore / instances / qmlgraphicsitemnodeinstance.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 (info@qt.nokia.com)
8 **
9 **
10 ** GNU Lesser General Public License Usage
11 **
12 ** This file may be used under the terms of the GNU Lesser General Public
13 ** License version 2.1 as published by the Free Software Foundation and
14 ** appearing in the file LICENSE.LGPL included in the packaging of this file.
15 ** Please review the following information to ensure the GNU Lesser General
16 ** Public License version 2.1 requirements will be met:
17 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
18 **
19 ** In addition, as a special exception, Nokia gives you certain additional
20 ** rights. These rights are described in the Nokia Qt LGPL Exception
21 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
22 **
23 ** Other Usage
24 **
25 ** Alternatively, this file may be used in accordance with the terms and
26 ** conditions contained in a signed written agreement between you and Nokia.
27 **
28 ** If you have questions regarding the use of this file, please contact
29 ** Nokia at qt-info@nokia.com.
30 **
31 **************************************************************************/
32
33 #ifndef QMLGRAPHICSITEMNODEINSTANCE_H
34 #define QMLGRAPHICSITEMNODEINSTANCE_H
35
36 #include "graphicsobjectnodeinstance.h"
37 #include <QDeclarativeItem>
38 #include <QWeakPointer>
39
40
41 namespace QmlDesigner {
42 namespace Internal {
43
44 class QmlGraphicsItemNodeInstance : public GraphicsObjectNodeInstance
45 {
46 public:
47     typedef QSharedPointer<QmlGraphicsItemNodeInstance> Pointer;
48     typedef QWeakPointer<QmlGraphicsItemNodeInstance> WeakPointer;
49
50     ~QmlGraphicsItemNodeInstance();
51
52     static Pointer create(QObject *objectToBeWrapped);
53
54     bool isQmlGraphicsItem() const;
55
56     QSizeF size() const;
57     QRectF boundingRect() const;
58 //    void updateAnchors();
59
60     void setPropertyVariant(const QString &name, const QVariant &value);
61     void setPropertyBinding(const QString &name, const QString &expression);
62
63     QVariant property(const QString &name) const;
64     void resetProperty(const QString &name);
65
66     void reparent(const ObjectNodeInstance::Pointer &oldParentInstance, const QString &oldParentProperty, const ObjectNodeInstance::Pointer &newParentInstance, const QString &newParentProperty);
67
68     int penWidth() const;
69
70     bool hasAnchor(const QString &name) const;
71     QPair<QString, ServerNodeInstance> anchor(const QString &name) const;
72     bool isAnchoredBySibling() const;
73     bool isAnchoredByChildren() const;
74     void doComponentComplete();
75
76     bool isResizable() const;
77     void setResizable(bool resizeable);
78
79
80     QList<ServerNodeInstance> stateInstances() const;
81
82 protected:
83     QmlGraphicsItemNodeInstance(QDeclarativeItem *item);
84     QDeclarativeItem *qmlGraphicsItem() const;
85     QDeclarativeAnchors *anchors() const;
86     void resetHorizontal();
87     void resetVertical(); 
88     void refresh();
89
90 private: //variables
91     bool m_hasHeight;
92     bool m_hasWidth;
93     bool m_isResizable;
94     double m_x;
95     double m_y;
96     double m_width;
97     double m_height;
98 };
99
100 }
101 }
102 #endif // QMLGRAPHICSITEMNODEINSTANCE_H