| 88 | } |
| 89 | |
| 90 | void Overview::mousePressEvent(QMouseEvent* e) |
| 91 | { |
| 92 | qint32 h = height() - 1; |
| 93 | qint32 h1 = h * m_pageHeight / std::max(1, m_nofLines) + 3; |
| 94 | |
| 95 | if(h > 0) |
| 96 | Q_EMIT setLine(std::max(0, (e->pos().y() - h1 / 2)) * m_nofLines / h); |
| 97 | } |
| 98 | |
| 99 | void Overview::mouseMoveEvent(QMouseEvent* e) |
| 100 | { |
nothing calls this directly
no outgoing calls
no test coverage detected