summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsitem.h
diff options
context:
space:
mode:
authorQt Continuous Integration System <qt-info@nokia.com>2011-03-16 23:32:03 (GMT)
committerQt Continuous Integration System <qt-info@nokia.com>2011-03-16 23:32:03 (GMT)
commit917fedf1ed887a7b14b034e4ecd5e9bb451f1494 (patch)
tree78a08bdd1d3e7343ec29959d7022d08f40aee2f6 /src/gui/graphicsview/qgraphicsitem.h
parent42a21fb616fa32ffd6a26f801b60cf73b370a31c (diff)
parent73b32e942696156c7c9fe84682394ec26f16c5c6 (diff)
downloadQt-917fedf1ed887a7b14b034e4ecd5e9bb451f1494.zip
Qt-917fedf1ed887a7b14b034e4ecd5e9bb451f1494.tar.gz
Qt-917fedf1ed887a7b14b034e4ecd5e9bb451f1494.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-water-staging into 4.7-integration
* '4.7' of scm.dev.nokia.troll.no:qt/qt-water-staging: Introduce QGraphicsItem::ItemStopsFocusHandling flag
Diffstat (limited to 'src/gui/graphicsview/qgraphicsitem.h')
-rw-r--r--src/gui/graphicsview/qgraphicsitem.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem.h b/src/gui/graphicsview/qgraphicsitem.h
index e59a7c9..67c9cd3 100644
--- a/src/gui/graphicsview/qgraphicsitem.h
+++ b/src/gui/graphicsview/qgraphicsitem.h
@@ -107,7 +107,8 @@ public:
ItemIsPanel = 0x4000,
ItemIsFocusScope = 0x8000, // internal
ItemSendsScenePositionChanges = 0x10000,
- ItemStopsClickFocusPropagation = 0x20000
+ ItemStopsClickFocusPropagation = 0x20000,
+ ItemStopsFocusHandling = 0x40000
// NB! Don't forget to increase the d_ptr->flags bit field by 1 when adding a new flag.
};
Q_DECLARE_FLAGS(GraphicsItemFlags, GraphicsItemFlag)