X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=5f89e11c9ad0853082fb931f95ae8fc25b44b2bf;hb=d04e108c6bf0405c4a4855d3c4d2df7beb817b40;hp=7197a24edcfc2a07eb71708b126089d14b937910;hpb=695758015a80eb8c158a9ac4c0f1c0b547e70df3;p=quassel.git diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index 7197a24e..5f89e11c 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -59,6 +59,7 @@ void ChatView::init(MessageFilter *filter) _currentScaleFactor = 1; _invalidateFilter = false; + setAttribute(Qt::WA_AcceptTouchEvents); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); setAlignment(Qt::AlignLeft|Qt::AlignBottom); @@ -108,7 +109,24 @@ bool ChatView::event(QEvent *event) } } - if (event->type() == QEvent::Wheel) { + if (event->type() == QEvent::TouchBegin && _lastTouchStart < QDateTime::currentMSecsSinceEpoch() - 1000) { //(slow) double tab = normal behaviour = select text. 1000 ok? + setDragMode(QGraphicsView::ScrollHandDrag); + setInteractive(false); + _lastTouchStart = QDateTime::currentMSecsSinceEpoch(); + if (verticalScrollBar()->isVisible()) return true; //if scrollbar is not visible we need to request backlog below + } + +#if QT_VERSION >= 0x050000 + if (event->type() == QEvent::TouchEnd || event->type() == QEvent::TouchCancel) { +#else + if (event->type() == QEvent::TouchEnd) { +#endif + setDragMode(QGraphicsView::NoDrag); + setInteractive(true); + return true; + } + + if (event->type() == QEvent::Wheel || event->type() == QEvent::TouchBegin || event->type() == QEvent::TouchUpdate) { if (!verticalScrollBar()->isVisible()) { scene()->requestBacklog(); return true;