* See \ref dw-interrupted-drawing for details. */
| 211 | * See \ref dw-interrupted-drawing for details. |
| 212 | */ |
| 213 | void Widget::drawInterruption (View *view, Rectangle *area, |
| 214 | DrawingContext *context) |
| 215 | { |
| 216 | Rectangle thisArea; |
| 217 | if (intersects (layout->topLevel, context->getToplevelArea (), &thisArea)) |
| 218 | draw (view, &thisArea, context); |
| 219 | |
| 220 | context->addWidgetProcessedAsInterruption (this); |
| 221 | } |
| 222 | |
| 223 | Widget *Widget::getWidgetAtPoint (int x, int y, |
| 224 | GettingWidgetAtPointContext *context) |
no test coverage detected