| 646 | // =============================================================== |
| 647 | |
| 648 | Rect Widget::childrenBounds() const |
| 649 | { |
| 650 | return Rect(m_bounds.x + border().left(), |
| 651 | m_bounds.y + border().top(), |
| 652 | m_bounds.w - border().width(), |
| 653 | m_bounds.h - border().height()); |
| 654 | } |
| 655 | |
| 656 | Rect Widget::clientChildrenBounds() const |
| 657 | { |
no test coverage detected