aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-09-01 13:15:17 +0200
committerSebastian Geerken <devnull@localhost>2014-09-01 13:15:17 +0200
commitdf916f8440731445e6c6cb173ab73b767ad8b46f (patch)
tree223dd2ce4e44355fc3c0ac1e8682102756c5728b
parentf4b8928574720c0de84ad2245e60ed9db4bfdd99 (diff)
Documentation.
-rw-r--r--doc/dw-out-of-flow.doc26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/dw-out-of-flow.doc b/doc/dw-out-of-flow.doc
index d02c3b28..ca2653bb 100644
--- a/doc/dw-out-of-flow.doc
+++ b/doc/dw-out-of-flow.doc
@@ -5,6 +5,32 @@
padding: 0.5em 1em; background-color: #ffffe0"><b>Info:</b>
Should be incorporated into dw::Textblock.</div>
+<div style="border: 2px solid #ff4040; margin-bottom: 0.5em;
+padding: 0.5em 1em; background-color: #fff0f0"><b>Info:</b>
+Not up to date; incorporate these two changes: (i) there are different
+containing blocks for floats and absolutely (furthermore also fixedly)
+positioned elements; (ii) dw::OutOfFlowMgr is now only the base class:
+floats and absolutely positioned elements are seperated:
+\dot
+digraph G {
+ node [shape=record, fontname=Helvetica, fontsize=10];
+ edge [arrowhead="none", arrowtail="empty", dir="both"];
+ fontname=Helvetica; fontsize=8;
+
+ OutOfFlowMgr [URL="\ref dw::OutOfFlowMgr"];
+ OOFFloatsMgr [URL="\ref dw::OOFFloatsMgr"];
+ OOFPositionedMgr [URL="\ref dw::OOFPositionedMgr"];
+ OOFPosAbsMgr [URL="\ref dw::OOFPosAbsMgr"];
+ OOFPosFixedMgr [URL="\ref dw::OOFPosFixedMgr"];
+
+ OutOfFlowMgr -> OOFFloatsMgr;
+ OutOfFlowMgr -> OOFPositionedMgr;
+ OOFPositionedMgr -> OOFPosAbsMgr;
+ OOFPositionedMgr -> OOFPosFixedMgr;
+}
+\enddot
+</div>
+
Introduction
============