summaryrefslogtreecommitdiffstats
path: root/src/gui/graphicsview/qgraphicsanchorlayout_p.h
diff options
context:
space:
mode:
authorCaio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>2009-08-13 23:53:48 (GMT)
committerCaio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>2009-08-13 23:53:48 (GMT)
commitfcd2540c1e5190b9edaebc6842263630a5d2da2b (patch)
treefe21b0ab31d46a2878b84091498b3ee74d01d410 /src/gui/graphicsview/qgraphicsanchorlayout_p.h
parent23441f49a23cbf936b60140c5c8a6d5cb3ca00a7 (diff)
downloadQt-fcd2540c1e5190b9edaebc6842263630a5d2da2b.zip
Qt-fcd2540c1e5190b9edaebc6842263630a5d2da2b.tar.gz
Qt-fcd2540c1e5190b9edaebc6842263630a5d2da2b.tar.bz2
QGraphicsAnchorLayout: prepare ground for doing less simplifications
Add variables to track whether the graph is simplified or not, as well as make the functions that need it simplified/restored call the corresponding functions. The functions look at the state variables, so it's safe to just call them. Also added Q_ASSERT() through the code paths that SHOULD have the full graph (not simplified), for making easy to track bugs in future refactorings. Ironically this commit cause more calls to simplify/restore right now, but the state will be better when we fix some functions to be simplification compatible ;-) Signed-off-by: Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org> Reviewed-by: Artur Duque de Souza <artur.souza@openbossa.org>
Diffstat (limited to 'src/gui/graphicsview/qgraphicsanchorlayout_p.h')
-rw-r--r--src/gui/graphicsview/qgraphicsanchorlayout_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/graphicsview/qgraphicsanchorlayout_p.h b/src/gui/graphicsview/qgraphicsanchorlayout_p.h
index af58065..21a4a3f 100644
--- a/src/gui/graphicsview/qgraphicsanchorlayout_p.h
+++ b/src/gui/graphicsview/qgraphicsanchorlayout_p.h
@@ -403,5 +403,8 @@ public:
Interval interpolationInterval[2];
qreal interpolationProgress[2];
+ // ###
+ bool graphSimplified[2];
+
uint calculateGraphCacheDirty : 1;
};