summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicswidget_p.h
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@gmail.com>2009-09-30 18:18:23 (GMT)
committerAlexis Menard <alexis.menard@nokia.com>2009-12-03 09:36:54 (GMT)
commit3f18623dd8f26857d9af032c41095818f5346910 (patch)
tree35efdb96b3b7794e949c2d7af7004e665238e29f /src/gui/graphicsview/qgraphicswidget_p.h
parentb93000823d11575b6c30490ea97a2649a0119f86 (diff)
downloadQt-3f18623dd8f26857d9af032c41095818f5346910.zip
Qt-3f18623dd8f26857d9af032c41095818f5346910.tar.gz
Qt-3f18623dd8f26857d9af032c41095818f5346910.tar.bz2
Added QGraphicsWidget::autoFillBackground property.
This add a property to QGraphicsWidget to fill its background. QWidget has the same. Merge-Request: 1656 Reviewed-by: Alexis Menard <alexis.menard@nokia.com>
Diffstat (limited to 'src/gui/graphicsview/qgraphicswidget_p.h')
-rw-r--r--src/gui/graphicsview/qgraphicswidget_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/graphicsview/qgraphicswidget_p.h b/src/gui/graphicsview/qgraphicswidget_p.h
index eb53649..d2f898e 100644
--- a/src/gui/graphicsview/qgraphicswidget_p.h
+++ b/src/gui/graphicsview/qgraphicswidget_p.h
@@ -80,6 +80,7 @@ public:
inSetGeometry(0),
polished(0),
inSetPos(0),
+ autoFillBackground(0),
focusPolicy(Qt::NoFocus),
focusNext(0),
focusPrev(0),
@@ -172,6 +173,7 @@ public:
quint32 inSetGeometry : 1;
quint32 polished: 1;
quint32 inSetPos : 1;
+ quint32 autoFillBackground : 1;
// Focus
Qt::FocusPolicy focusPolicy;