| 8 | // ============================================================================ |
| 9 | |
| 10 | NotesTreeWidget::NotesTreeWidget(QWidget* parent) |
| 11 | : QTreeWidget(parent) |
| 12 | { |
| 13 | m_kineticTimer.setInterval(KINETIC_TICK_MS); |
| 14 | connect(&m_kineticTimer, &QTimer::timeout, |
| 15 | this, &NotesTreeWidget::onKineticScrollTick); |
| 16 | } |
| 17 | |
| 18 | // ============================================================================ |
| 19 | // Mouse / touch handling — mirrors OutlinePanelTreeWidget. |