| 71 | return d->amountOfRightOverlap; |
| 72 | } |
| 73 | int AbstractArea::topOverlap(bool doNotRecalculate) const |
| 74 | { |
| 75 | // Re-calculate the sizes, |
| 76 | // so we also get the amountOf..Overlap members set newly: |
| 77 | if (!doNotRecalculate) |
| 78 | sizeHint(); |
| 79 | return d->amountOfTopOverlap; |
| 80 | } |
| 81 | int AbstractArea::bottomOverlap(bool doNotRecalculate) const |
| 82 | { |
| 83 | // Re-calculate the sizes, |