| 63 | return d->amountOfLeftOverlap; |
| 64 | } |
| 65 | int AbstractArea::rightOverlap(bool doNotRecalculate) const |
| 66 | { |
| 67 | // Re-calculate the sizes, |
| 68 | // so we also get the amountOf..Overlap members set newly: |
| 69 | if (!doNotRecalculate) |
| 70 | sizeHint(); |
| 71 | return d->amountOfRightOverlap; |
| 72 | } |
| 73 | int AbstractArea::topOverlap(bool doNotRecalculate) const |
| 74 | { |
| 75 | // Re-calculate the sizes, |