summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxitem.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2009-07-31 00:09:33 (GMT)
committerMichael Brasser <michael.brasser@nokia.com>2009-07-31 00:09:33 (GMT)
commit8d9690cca4a13d4951b3d303eb57dbe4e25ce21c (patch)
tree29e53f5d03792cd87cbe1cf566a14cc74db010b0 /src/declarative/fx/qfxitem.h
parent0ce2bedf9b5da9d480b994a9b812c37d1f5caa39 (diff)
downloadQt-8d9690cca4a13d4951b3d303eb57dbe4e25ce21c.zip
Qt-8d9690cca4a13d4951b3d303eb57dbe4e25ce21c.tar.gz
Qt-8d9690cca4a13d4951b3d303eb57dbe4e25ce21c.tar.bz2
More QFxItem cleanup.
Diffstat (limited to 'src/declarative/fx/qfxitem.h')
-rw-r--r--src/declarative/fx/qfxitem.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/declarative/fx/qfxitem.h b/src/declarative/fx/qfxitem.h
index 884a6d8..2050ab9 100644
--- a/src/declarative/fx/qfxitem.h
+++ b/src/declarative/fx/qfxitem.h
@@ -198,12 +198,9 @@ public:
qreal width() const;
void setWidth(qreal);
- void setImplicitWidth(qreal);
- bool widthValid() const; // ### better name?
+
qreal height() const;
void setHeight(qreal);
- void setImplicitHeight(qreal);
- bool heightValid() const; // ### better name?
TransformOrigin transformOrigin() const;
void setTransformOrigin(TransformOrigin);
@@ -211,8 +208,6 @@ public:
QRectF boundingRect() const;
virtual void paintContents(QPainter &);
- QFxItem *mouseGrabberItem() const;
-
virtual bool hasFocus() const;
void setFocus(bool);
bool hasActiveFocus() const;
@@ -229,9 +224,6 @@ Q_SIGNALS:
void parentChanged();
void keyPress(QFxKeyEvent *event);
void keyRelease(QFxKeyEvent *event);
- void rotationChanged();
- void scaleChanged();
- void qmlChanged();
protected:
bool isComponentComplete() const;
@@ -243,6 +235,11 @@ protected:
virtual bool mouseFilter(QGraphicsSceneMouseEvent *);
virtual void mouseUngrabEvent();
+ void setImplicitWidth(qreal);
+ bool widthValid() const; // ### better name?
+ void setImplicitHeight(qreal);
+ bool heightValid() const; // ### better name?
+
virtual void classBegin();
virtual void componentComplete();
virtual void focusChanged(bool);