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/outofflowmgr.hh | |
parent | af3aa61519ae6c37dd4984100697f7aa032403de (diff) |
SRDOP: OOFFloatsMgr now regards positions relative to container. (Code compiles, not more!)
Diffstat (limited to 'dw/outofflowmgr.hh')
-rw-r--r-- | dw/outofflowmgr.hh | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 88ec349d..5ded99d5 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -77,8 +77,8 @@ public: * but is 0 if there is no float, so a caller should also consider * other borders. */ - virtual int getLeftBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) = 0; + virtual int getLeftBorder (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; /** * Get the right border for the vertical position of *y*, for a height @@ -86,8 +86,8 @@ public: * * See also getLeftBorder(). */ - virtual int getRightBorder (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) = 0; + virtual int getRightBorder (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; /** * Return whether there is a float on the left side. *y* is @@ -95,8 +95,8 @@ public: * * See also getLeftBorder(). */ - virtual bool hasFloatLeft (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) = 0; + virtual bool hasFloatLeft (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; /** * Return whether there is a float on the right side. *y* is @@ -104,8 +104,8 @@ public: * * See also hasFloatLeft(), getLeftBorder(); */ - virtual bool hasFloatRight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) = 0; + virtual bool hasFloatRight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; /** * Assuming there is a float on the left side, return the rest @@ -113,9 +113,8 @@ public: * * See also getLeftBorder(). */ - virtual int getLeftFloatHeight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) - = 0; + virtual int getLeftFloatHeight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; /** * Assuming there is a float on the right side, return the rest @@ -123,9 +122,8 @@ public: * * See also getLeftFloatHeight(), getLeftBorder(). */ - virtual int getRightFloatHeight (OOFAwareWidget *widget, int y, int h, - OOFAwareWidget *lastGen, int lastExtIndex) - = 0; + virtual int getRightFloatHeight (int y, int h, OOFAwareWidget *lastGen, + int lastExtIndex) = 0; virtual bool affectsLeftBorder (core::Widget *widget) = 0; virtual bool affectsRightBorder (core::Widget *widget) = 0; |