| 559 | } |
| 560 | |
| 561 | void drawSelectBorder(QPainter* p, const QRect& rc, const QColor& color, int width) |
| 562 | { |
| 563 | p->save(); |
| 564 | // p->setRenderHint(QPainter::Antialiasing); |
| 565 | QPen pen; |
| 566 | pen.setWidth(width); |
| 567 | pen.setColor(color); |
| 568 | p->setPen(pen); |
| 569 | p->setBrush(Qt::NoBrush); |
| 570 | p->drawRect(rc); |
| 571 | p->restore(); |
| 572 | } |
| 573 | |
| 574 | void WizStyleHelper::drawListViewItemBackground(QPainter* p, const QRect& rc, bool bFocus, bool bSelect) |
| 575 | { |
no test coverage detected