diff options
author | Sebastian Geerken <devnull@localhost> | 2014-09-12 12:38:52 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-09-12 12:38:52 +0200 |
commit | 3590571500d5e00bdb65e70ce777735a26318a39 (patch) | |
tree | 562d3178c6124a301a75d5ddc4009245e207556e /dw/textblock.hh | |
parent | a42d8297257c9d68062811467a3bd2aaab7c16ff (diff) |
OOFAwareWidget: moving some stuff from Textblock to OOFAwareWidget.
Diffstat (limited to 'dw/textblock.hh')
-rw-r--r-- | dw/textblock.hh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dw/textblock.hh b/dw/textblock.hh index 67f55569..ec47ec9b 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -3,8 +3,6 @@ #include <limits.h> -#include "core.hh" -#include "outofflowmgr.hh" #include "oofawarewidget.hh" #include "../lout/misc.hh" @@ -248,13 +246,6 @@ private: static const char *hyphenDrawChar; protected: - enum { OOFM_FLOATS, OOFM_ABSOLUTE, OOFM_FIXED, NUM_OOFM }; - enum { PARENT_REF_OOFM_BITS = 2, - PARENT_REF_OOFM_MASK = (1 << PARENT_REF_OOFM_BITS) - 1 }; - - Textblock *containingBlock[NUM_OOFM]; - oof::OutOfFlowMgr *outOfFlowMgr[NUM_OOFM]; - inline bool isParentRefOOF (int parentRef) { return parentRef != -1 && (parentRef & PARENT_REF_OOFM_MASK); } |