| 53 | } |
| 54 | |
| 55 | void drawLineSelected(QPainter &painter, const QRect &rect, const QStaticText &line) |
| 56 | { |
| 57 | painter.fillRect(rect, palette().highlight()); |
| 58 | painter.setPen(palette().color(QPalette::HighlightedText)); |
| 59 | painter.drawStaticText(0, rect.y(), line); |
| 60 | } |
| 61 | |
| 62 | void drawLinePartialSelected(QPainter &painter, const QRect &rect, const QStaticText &line, int startSelectChar, int endSelectChar) |
| 63 | { |