diff options
author | Sebastian Geerken <devnull@localhost> | 2014-06-30 22:35:14 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-06-30 22:35:14 +0200 |
commit | e65756c53e14073da8c13b34c89aad4398595cf8 (patch) | |
tree | 691ce30256d988b1ff2a4f1d829490f3f630487c /dw/textblock.hh | |
parent | 28da617bb9be612aa871fd7757d36a8f6f91b1d0 (diff) |
Adjusted Widget::getAvailHEIGHT[OfChild]. Also, changed definition of 'intrinsic' extremes (not all widgets updated yet).
Diffstat (limited to 'dw/textblock.hh')
-rw-r--r-- | dw/textblock.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dw/textblock.hh b/dw/textblock.hh index 48bd424e..0f73736d 100644 --- a/dw/textblock.hh +++ b/dw/textblock.hh @@ -306,14 +306,18 @@ protected: int parMin; /* The sum of all word minima (plus spaces, hyphen width etc.) since the last possible break within this paragraph. */ + int parMinIntrinsic; int parMax; /* The sum of all word maxima in this paragraph (plus spaces, hyphen width etc.). */ + int parMaxIntrinsic; int maxParMin; /* Maximum of all paragraph minima (value of "parMin"), including this paragraph. */ + int maxParMinIntrinsic; int maxParMax; /* Maximum of all paragraph maxima (value of "parMax""), including this paragraph. */ + int maxParMaxIntrinsic; }; struct Line |