diff options
author | Marius Bugge Monsen <mmonsen@trolltech.com> | 2009-07-02 12:06:25 (GMT) |
---|---|---|
committer | Marius Bugge Monsen <mmonsen@trolltech.com> | 2009-07-14 11:22:50 (GMT) |
commit | 34fde4a4b7220c92b03dfa92607feb6179454066 (patch) | |
tree | 13cb867a895b31e3dc79ab497db5e83aeef074ce /src/gui/graphicsview/qgraphicsscene_p.h | |
parent | af2b01c4571b468a57cb4e5e72dab481f6d88eb1 (diff) | |
download | Qt-34fde4a4b7220c92b03dfa92607feb6179454066.zip Qt-34fde4a4b7220c92b03dfa92607feb6179454066.tar.gz Qt-34fde4a4b7220c92b03dfa92607feb6179454066.tar.bz2 |
Add QGraphicsView::filtersChildEvents property.
This obsoletes QGraphicsView::handlesChildEvents.
Diffstat (limited to 'src/gui/graphicsview/qgraphicsscene_p.h')
-rw-r--r-- | src/gui/graphicsview/qgraphicsscene_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/graphicsview/qgraphicsscene_p.h b/src/gui/graphicsview/qgraphicsscene_p.h index ffd62d5..9a91acc 100644 --- a/src/gui/graphicsview/qgraphicsscene_p.h +++ b/src/gui/graphicsview/qgraphicsscene_p.h @@ -172,6 +172,7 @@ public: QMultiMap<QGraphicsItem *, QGraphicsItem *> sceneEventFilters; void installSceneEventFilter(QGraphicsItem *watched, QGraphicsItem *filter); void removeSceneEventFilter(QGraphicsItem *watched, QGraphicsItem *filter); + bool filterDescendantEvent(QGraphicsItem *item, QEvent *event); bool filterEvent(QGraphicsItem *item, QEvent *event); bool sendEvent(QGraphicsItem *item, QEvent *event); |