diff options
author | Sebastian Geerken <devnull@localhost> | 2015-09-22 20:23:27 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-09-22 20:23:27 +0200 |
commit | d11f25560a31a68d56a72abc6d888bc8cf2634b7 (patch) | |
tree | 84a1fed01439eecf6551fba096edf6d91d5312f9 /dw/oofpositionedmgr.hh | |
parent | af3aa61519ae6c37dd4984100697f7aa032403de (diff) |
SRDOP: OOFFloatsMgr now regards positions relative to container. (Code compiles, not more!)
Diffstat (limited to 'dw/oofpositionedmgr.hh')
-rw-r--r-- | dw/oofpositionedmgr.hh | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/dw/oofpositionedmgr.hh b/dw/oofpositionedmgr.hh index 09706235..f8ea0a3c 100644 --- a/dw/oofpositionedmgr.hh +++ b/dw/oofpositionedmgr.hh @@ -109,20 +109,16 @@ public: bool containerMustAdjustExtraSpace (); - int getLeftBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); - int getRightBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); - - bool hasFloatLeft (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); - bool hasFloatRight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); - - int getLeftFloatHeight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); - int getRightFloatHeight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex); + int getLeftBorder (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex); + int getRightBorder (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex); + + bool hasFloatLeft (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex); + bool hasFloatRight (int y, int h, OOFAwareWidget *lastGen, int lastExtIndex); + + int getLeftFloatHeight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex); + int getRightFloatHeight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex); int getClearPosition (OOFAwareWidget *widget); |