diff options
author | Sebastian Geerken <devnull@localhost> | 2015-05-25 00:03:13 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-05-25 00:03:13 +0200 |
commit | 06071421eeff3b781ccef3117fb6f39e2ebe89ec (patch) | |
tree | 51bae9310727be0d46e5dacead4844a47d97e312 /dw/outofflowmgr.hh | |
parent | d07e57413ca9d2c6308d98f29dbbf9e3a85fe2b3 (diff) |
SRDOP/coordinates, part 1: comments.
Diffstat (limited to 'dw/outofflowmgr.hh')
-rw-r--r-- | dw/outofflowmgr.hh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 67b18f50..6dff2055 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -52,8 +52,7 @@ public: * \brief Called after tellPosition1. * * An implementation should only implement either tellPosition1 or - * tellPosition2. Coordinates are relative to the allocation of the - * generator. + * tellPosition2. Coordinates are relative to the *container*. */ virtual void tellPosition2 (core::Widget *widget, int x, int y) = 0; @@ -65,8 +64,7 @@ public: /** * Get the left border for the vertical position of *y*, for a height - * of *h", based on floats; relative to the allocation of the calling - * textblock. + * of *h", based on floats; relative to the *container*. * * The border includes marging/border/padding of the calling textblock * but is 0 if there is no float, so a caller should also consider @@ -77,7 +75,7 @@ public: /** * Get the right border for the vertical position of *y*, for a height - * of *h*, based on floats. + * of *h*, based on floats; relative to the *container*. * * See also getLeftBorder(). */ @@ -85,7 +83,8 @@ public: OOFAwareWidget *lastGen, int lastExtIndex) = 0; /** - * Return whether there is a float on the left side. + * Return whether there is a float on the left side. *y* is + * relative to the *container*. * * See also getLeftBorder(). */ @@ -93,7 +92,8 @@ public: OOFAwareWidget *lastGen, int lastExtIndex) = 0; /** - * Return whether there is a float on the right side. + * Return whether there is a float on the right side. *y* is + * relative to the *container*. * * See also hasFloatLeft(), getLeftBorder(); */ @@ -102,7 +102,7 @@ public: /** * Assuming there is a float on the left side, return the rest - * height of it. + * height of it. *y* is relative to the *container*. * * See also getLeftBorder(). */ @@ -112,7 +112,7 @@ public: /** * Assuming there is a float on the right side, return the rest - * height of it. + * height of it. *y* is relative to the *container*. * * See also getLeftFloatHeight(), getLeftBorder(). */ |