| 184 | } |
| 185 | |
| 186 | void OverlayWidget::paintEvent(QPaintEvent *) |
| 187 | { |
| 188 | QPainter p(this); |
| 189 | p.setPen(m_outerRectColor); |
| 190 | p.drawRect(m_outerRect); |
| 191 | |
| 192 | QBrush brush(Qt::BDiagPattern); |
| 193 | brush.setColor(Qt::blue); |
| 194 | |
| 195 | if (!m_drawLayoutOutlineOnly) |
| 196 | p.fillPath(m_layoutPath, brush); |
| 197 | |
| 198 | p.setPen(Qt::blue); |
| 199 | p.drawPath(m_layoutPath); |
| 200 | } |