QQuickCanvas renames
[profile/ivi/qtdeclarative.git] / src / quick / items / qquickitem.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 QtQml module 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 QQUICKITEM_H
43 #define QQUICKITEM_H
44
45 #include <QtQuick/qtquickglobal.h>
46 #include <QtQml/qqml.h>
47 #include <QtQml/qqmlcomponent.h>
48
49 #include <QtCore/QObject>
50 #include <QtCore/QList>
51 #include <QtGui/qevent.h>
52 #include <QtGui/qfont.h>
53 #include <QtGui/qaccessible.h>
54
55 QT_BEGIN_HEADER
56
57 QT_BEGIN_NAMESPACE
58
59 class QQuickItem;
60 class QQuickTransformPrivate;
61 class QQuickTransform : public QObject
62 {
63     Q_OBJECT
64 public:
65     QQuickTransform(QObject *parent = 0);
66     ~QQuickTransform();
67
68     void appendToItem(QQuickItem *);
69     void prependToItem(QQuickItem *);
70
71     virtual void applyTo(QMatrix4x4 *matrix) const = 0;
72
73 protected Q_SLOTS:
74     void update();
75
76 protected:
77     QQuickTransform(QQuickTransformPrivate &dd, QObject *parent);
78
79 private:
80     Q_DECLARE_PRIVATE(QQuickTransform)
81 };
82
83 class QQuickItemLayer;
84 class QQmlV8Function;
85 class QQuickState;
86 class QQuickAnchorLine;
87 class QQuickTransition;
88 class QQuickKeyEvent;
89 class QQuickAnchors;
90 class QQuickItemPrivate;
91 class QQuickWindow;
92 class QTouchEvent;
93 class QSGNode;
94 class QSGTransformNode;
95 class QSGTextureProvider;
96
97 class Q_QUICK_EXPORT QQuickItem : public QObject, public QQmlParserStatus
98 {
99     Q_OBJECT
100     Q_INTERFACES(QQmlParserStatus)
101
102     Q_PROPERTY(QQuickItem *parent READ parentItem WRITE setParentItem NOTIFY parentChanged DESIGNABLE false FINAL)
103     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QObject> data READ data DESIGNABLE false)
104     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QObject> resources READ resources DESIGNABLE false)
105     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickItem> children READ children NOTIFY childrenChanged DESIGNABLE false)
106
107     Q_PROPERTY(QPointF pos READ pos FINAL)
108     Q_PROPERTY(qreal x READ x WRITE setX NOTIFY xChanged FINAL)
109     Q_PROPERTY(qreal y READ y WRITE setY NOTIFY yChanged FINAL)
110     Q_PROPERTY(qreal z READ z WRITE setZ NOTIFY zChanged FINAL)
111     Q_PROPERTY(qreal width READ width WRITE setWidth NOTIFY widthChanged RESET resetWidth FINAL)
112     Q_PROPERTY(qreal height READ height WRITE setHeight NOTIFY heightChanged RESET resetHeight FINAL)
113
114     Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity NOTIFY opacityChanged FINAL)
115     Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
116     Q_PROPERTY(bool visible READ isVisible WRITE setVisible NOTIFY visibleChanged FINAL)
117     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickItem> visibleChildren READ visibleChildren NOTIFY visibleChildrenChanged DESIGNABLE false)
118
119     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickState> states READ states DESIGNABLE false)
120     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickTransition> transitions READ transitions DESIGNABLE false)
121     Q_PROPERTY(QString state READ state WRITE setState NOTIFY stateChanged)
122     Q_PROPERTY(QRectF childrenRect READ childrenRect NOTIFY childrenRectChanged DESIGNABLE false FINAL)
123     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchors * anchors READ anchors DESIGNABLE false CONSTANT FINAL)
124     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine left READ left CONSTANT FINAL)
125     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine right READ right CONSTANT FINAL)
126     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine horizontalCenter READ horizontalCenter CONSTANT FINAL)
127     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine top READ top CONSTANT FINAL)
128     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine bottom READ bottom CONSTANT FINAL)
129     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine verticalCenter READ verticalCenter CONSTANT FINAL)
130     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine baseline READ baseline CONSTANT FINAL)
131     Q_PROPERTY(qreal baselineOffset READ baselineOffset WRITE setBaselineOffset NOTIFY baselineOffsetChanged)
132
133     Q_PROPERTY(bool clip READ clip WRITE setClip NOTIFY clipChanged)
134
135     Q_PROPERTY(bool focus READ hasFocus WRITE setFocus NOTIFY focusChanged FINAL)
136     Q_PROPERTY(bool activeFocus READ hasActiveFocus NOTIFY activeFocusChanged FINAL)
137
138     Q_PROPERTY(qreal rotation READ rotation WRITE setRotation NOTIFY rotationChanged)
139     Q_PROPERTY(qreal scale READ scale WRITE setScale NOTIFY scaleChanged)
140     Q_PROPERTY(TransformOrigin transformOrigin READ transformOrigin WRITE setTransformOrigin NOTIFY transformOriginChanged)
141     Q_PROPERTY(QPointF transformOriginPoint READ transformOriginPoint)  // XXX todo - notify?
142     Q_PROPERTY(QQmlListProperty<QQuickTransform> transform READ transform DESIGNABLE false FINAL)
143
144     Q_PROPERTY(bool smooth READ smooth WRITE setSmooth NOTIFY smoothChanged)
145     Q_PROPERTY(bool antialiasing READ antialiasing WRITE setAntialiasing NOTIFY antialiasingChanged)
146     Q_PROPERTY(qreal implicitWidth READ implicitWidth WRITE setImplicitWidth NOTIFY implicitWidthChanged)
147     Q_PROPERTY(qreal implicitHeight READ implicitHeight WRITE setImplicitHeight NOTIFY implicitHeightChanged)
148
149     Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickItemLayer *layer READ layer DESIGNABLE false CONSTANT FINAL)
150
151     Q_ENUMS(TransformOrigin)
152     Q_CLASSINFO("DefaultProperty", "data")
153     Q_CLASSINFO("qt_HasQmlAccessors", "true")
154
155 public:
156     enum Flag {
157         ItemClipsChildrenToShape  = 0x01,
158         ItemAcceptsInputMethod    = 0x02,
159         ItemIsFocusScope          = 0x04,
160         ItemHasContents           = 0x08,
161         ItemAcceptsDrops          = 0x10
162         // Remember to increment the size of QQuickItemPrivate::flags
163     };
164     Q_DECLARE_FLAGS(Flags, Flag)
165
166     enum ItemChange {
167         ItemChildAddedChange,      // value.item
168         ItemChildRemovedChange,    // value.item
169         ItemSceneChange,           // value.window
170         ItemVisibleHasChanged,     // value.boolValue
171         ItemParentHasChanged,      // value.item
172         ItemOpacityHasChanged,     // value.realValue
173         ItemActiveFocusHasChanged, // value.boolValue
174         ItemRotationHasChanged     // value.realValue
175     };
176
177     union ItemChangeData {
178         ItemChangeData(QQuickItem *v) : item(v) {}
179         ItemChangeData(QQuickWindow *v) : window(v) {}
180         ItemChangeData(qreal v) : realValue(v) {}
181         ItemChangeData(bool v) : boolValue(v) {}
182
183         QQuickItem *item;
184         QQuickWindow *window;
185         qreal realValue;
186         bool boolValue;
187     };
188
189     enum TransformOrigin {
190         TopLeft, Top, TopRight,
191         Left, Center, Right,
192         BottomLeft, Bottom, BottomRight
193     };
194
195     QQuickItem(QQuickItem *parent = 0);
196     virtual ~QQuickItem();
197
198     //canvas() is being removed in favor of window() really soon now
199     QQuickWindow *canvas() const { return window(); }
200     QQuickWindow *window() const;
201     QQuickItem *parentItem() const;
202     void setParentItem(QQuickItem *parent);
203     void stackBefore(const QQuickItem *);
204     void stackAfter(const QQuickItem *);
205
206     QRectF childrenRect();
207     QList<QQuickItem *> childItems() const;
208
209     bool clip() const;
210     void setClip(bool);
211
212     QString state() const;
213     void setState(const QString &);
214
215     qreal baselineOffset() const;
216     void setBaselineOffset(qreal);
217
218     QQmlListProperty<QQuickTransform> transform();
219
220     qreal x() const;
221     qreal y() const;
222     QPointF pos() const;
223     void setX(qreal);
224     void setY(qreal);
225     void setPos(const QPointF &);
226
227     qreal width() const;
228     void setWidth(qreal);
229     void resetWidth();
230     qreal implicitWidth() const;
231
232     qreal height() const;
233     void setHeight(qreal);
234     void resetHeight();
235     qreal implicitHeight() const;
236
237     void setSize(const QSizeF &size);
238
239     TransformOrigin transformOrigin() const;
240     void setTransformOrigin(TransformOrigin);
241     QPointF transformOriginPoint() const;
242     void setTransformOriginPoint(const QPointF &);
243
244     qreal z() const;
245     void setZ(qreal);
246
247     qreal rotation() const;
248     void setRotation(qreal);
249     qreal scale() const;
250     void setScale(qreal);
251
252     qreal opacity() const;
253     void setOpacity(qreal);
254
255     bool isVisible() const;
256     void setVisible(bool);
257
258     bool isEnabled() const;
259     void setEnabled(bool);
260
261     bool smooth() const;
262     void setSmooth(bool);
263
264     bool antialiasing() const;
265     void setAntialiasing(bool);
266
267     Flags flags() const;
268     void setFlag(Flag flag, bool enabled = true);
269     void setFlags(Flags flags);
270
271     virtual QRectF boundingRect() const;
272     virtual QRectF clipRect() const;
273
274     bool hasActiveFocus() const;
275     bool hasFocus() const;
276     void setFocus(bool);
277     bool isFocusScope() const;
278     QQuickItem *scopedFocusItem() const;
279
280     Qt::MouseButtons acceptedMouseButtons() const;
281     void setAcceptedMouseButtons(Qt::MouseButtons buttons);
282     bool acceptHoverEvents() const;
283     void setAcceptHoverEvents(bool enabled);
284
285     bool isUnderMouse() const;
286     void grabMouse();
287     void ungrabMouse();
288     bool keepMouseGrab() const;
289     void setKeepMouseGrab(bool);
290     bool filtersChildMouseEvents() const;
291     void setFiltersChildMouseEvents(bool filter);
292
293     void grabTouchPoints(const QVector<int> &ids);
294     void ungrabTouchPoints();
295     bool keepTouchGrab() const;
296     void setKeepTouchGrab(bool);
297
298     Q_INVOKABLE virtual bool contains(const QPointF &point) const;
299
300     QTransform itemTransform(QQuickItem *, bool *) const;
301     QPointF mapToItem(const QQuickItem *item, const QPointF &point) const;
302     QPointF mapToScene(const QPointF &point) const;
303     QRectF mapRectToItem(const QQuickItem *item, const QRectF &rect) const;
304     QRectF mapRectToScene(const QRectF &rect) const;
305     QPointF mapFromItem(const QQuickItem *item, const QPointF &point) const;
306     QPointF mapFromScene(const QPointF &point) const;
307     QRectF mapRectFromItem(const QQuickItem *item, const QRectF &rect) const;
308     QRectF mapRectFromScene(const QRectF &rect) const;
309
310     void polish();
311
312     Q_INVOKABLE void mapFromItem(QQmlV8Function*) const;
313     Q_INVOKABLE void mapToItem(QQmlV8Function*) const;
314     Q_INVOKABLE void forceActiveFocus();
315     Q_INVOKABLE QQuickItem *childAt(qreal x, qreal y) const;
316
317     virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
318
319     struct UpdatePaintNodeData {
320        QSGTransformNode *transformNode;
321     private:
322        friend class QQuickWindowPrivate;
323        UpdatePaintNodeData();
324     };
325
326     virtual bool isTextureProvider() const;
327     virtual QSGTextureProvider *textureProvider() const;
328
329 public Q_SLOTS:
330     void update();
331
332 Q_SIGNALS:
333     void childrenRectChanged(const QRectF &);
334     void baselineOffsetChanged(qreal);
335     void stateChanged(const QString &);
336     void focusChanged(bool);
337     void activeFocusChanged(bool);
338     void parentChanged(QQuickItem *);
339     void transformOriginChanged(TransformOrigin);
340     void smoothChanged(bool);
341     void antialiasingChanged(bool);
342     void clipChanged(bool);
343
344     // XXX todo
345     void childrenChanged();
346     void opacityChanged();
347     void enabledChanged();
348     void visibleChanged();
349     void visibleChildrenChanged();
350     void rotationChanged();
351     void scaleChanged();
352
353     void xChanged();
354     void yChanged();
355     void widthChanged();
356     void heightChanged();
357     void zChanged();
358     void implicitWidthChanged();
359     void implicitHeightChanged();
360
361 protected:
362     virtual bool event(QEvent *);
363
364     bool isComponentComplete() const;
365     virtual void itemChange(ItemChange, const ItemChangeData &);
366
367     void updateInputMethod(Qt::InputMethodQueries queries = Qt::ImQueryInput);
368
369     void setImplicitWidth(qreal);
370     bool widthValid() const; // ### better name?
371     void setImplicitHeight(qreal);
372     bool heightValid() const; // ### better name?
373     void setImplicitSize(qreal, qreal);
374
375     virtual void classBegin();
376     virtual void componentComplete();
377
378     virtual void keyPressEvent(QKeyEvent *event);
379     virtual void keyReleaseEvent(QKeyEvent *event);
380     virtual void inputMethodEvent(QInputMethodEvent *);
381     virtual void focusInEvent(QFocusEvent *);
382     virtual void focusOutEvent(QFocusEvent *);
383     virtual void mousePressEvent(QMouseEvent *event);
384     virtual void mouseMoveEvent(QMouseEvent *event);
385     virtual void mouseReleaseEvent(QMouseEvent *event);
386     virtual void mouseDoubleClickEvent(QMouseEvent *event);
387     virtual void mouseUngrabEvent(); // XXX todo - params?
388     virtual void touchUngrabEvent();
389     virtual void wheelEvent(QWheelEvent *event);
390     virtual void touchEvent(QTouchEvent *event);
391     virtual void hoverEnterEvent(QHoverEvent *event);
392     virtual void hoverMoveEvent(QHoverEvent *event);
393     virtual void hoverLeaveEvent(QHoverEvent *event);
394 #ifndef QT_NO_DRAGANDDROP
395     virtual void dragEnterEvent(QDragEnterEvent *);
396     virtual void dragMoveEvent(QDragMoveEvent *);
397     virtual void dragLeaveEvent(QDragLeaveEvent *);
398     virtual void dropEvent(QDropEvent *);
399 #endif
400     virtual bool childMouseEventFilter(QQuickItem *, QEvent *);
401     virtual void windowDeactivateEvent();
402
403     virtual void geometryChanged(const QRectF &newGeometry,
404                                  const QRectF &oldGeometry);
405
406     virtual QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *);
407     virtual void releaseResources();
408     virtual void updatePolish();
409
410 protected:
411     QQuickItem(QQuickItemPrivate &dd, QQuickItem *parent = 0);
412
413 private:
414     friend class QQuickWindow;
415     friend class QQuickWindowPrivate;
416     friend class QSGRenderer;
417     friend class QAccessibleQuickItem;
418     friend class QQuickAccessibleAttached;
419     Q_DISABLE_COPY(QQuickItem)
420     Q_DECLARE_PRIVATE(QQuickItem)
421 };
422
423 // XXX todo
424 Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickItem::Flags)
425
426 #ifndef QT_NO_DEBUG_STREAM
427 QDebug Q_QUICK_EXPORT operator<<(QDebug debug, QQuickItem *item);
428 #endif
429
430 QT_END_NAMESPACE
431
432 QML_DECLARE_TYPE(QQuickItem)
433 QML_DECLARE_TYPE(QQuickTransform)
434
435 QT_END_HEADER
436
437 #endif // QQUICKITEM_H