| 397 | } |
| 398 | |
| 399 | bool isObscured(QWidget *w) |
| 400 | { |
| 401 | return !(checkPoint(QPoint(0, 0), w) |
| 402 | && checkPoint(QPoint(w->width() - 1, 0), w) |
| 403 | && checkPoint(QPoint(0, w->height() - 1), w) |
| 404 | && checkPoint(QPoint(w->width() - 1, w->height() - 1), w) |
| 405 | && checkPoint(QPoint(w->width() / 2, w->height() / 2), w)); |
| 406 | } |
| 407 | |
| 408 | void bringToFront(QWidget* w) |
| 409 | { |
no test coverage detected