X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=75e4d73df10dc432549e29699163bf6025f9e048;hp=ea29d3fe5e7fb99d629feb127a2bf675121a7312;hb=de2c1a4f9bbae7070cf8fd8247db765a23d28a9c;hpb=7582027d5f569c8487d17959d6aa9e6ca6d2aa33 diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index ea29d3fe..75e4d73d 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -25,8 +25,6 @@ #include #include #include -#include -#include #include "buffermodel.h" #include "client.h" @@ -38,7 +36,7 @@ #include "types.h" NickView::NickView(QWidget *parent) - : QTreeView(parent) + : TreeViewTouch(parent) { setIndentation(10); header()->hide(); @@ -74,7 +72,6 @@ void NickView::init() connect(selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), SIGNAL(selectionUpdated())); connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), SIGNAL(selectionUpdated())); - setAttribute(Qt::WA_AcceptTouchEvents); } @@ -83,14 +80,14 @@ void NickView::setModel(QAbstractItemModel *model_) if (model()) disconnect(model(), 0, this, 0); - QTreeView::setModel(model_); + TreeViewTouch::setModel(model_); init(); } void NickView::rowsInserted(const QModelIndex &parent, int start, int end) { - QTreeView::rowsInserted(parent, start, end); + TreeViewTouch::rowsInserted(parent, start, end); if (model()->data(parent, NetworkModel::ItemTypeRole) == NetworkModel::UserCategoryItemType && !isExpanded(parent)) { unanimatedExpandAll(); } @@ -107,7 +104,7 @@ void NickView::setRootIndex(const QModelIndex &index) QModelIndexList NickView::selectedIndexes() const { - QModelIndexList indexList = QTreeView::selectedIndexes(); + QModelIndexList indexList = TreeViewTouch::selectedIndexes(); // make sure the item we clicked on is first if (indexList.contains(currentIndex())) { @@ -152,40 +149,4 @@ void NickView::startQuery(const QModelIndex &index) return; Client::bufferModel()->switchToOrStartQuery(networkId, ircUser->nick()); -} - -bool NickView::event(QEvent *event) { - if (event->type() == QEvent::TouchBegin && _lastTouchStart < QDateTime::currentMSecsSinceEpoch() - 1000) { //(slow) double tab = normal behaviour = select multiple. 1000 ok? - _touchScrollInProgress = true; - _lastTouchStart = QDateTime::currentMSecsSinceEpoch(); - setVerticalScrollMode(QAbstractItemView::ScrollPerPixel); - return true; - } - - if (event->type() == QEvent::TouchUpdate && _touchScrollInProgress) { - QTouchEvent::TouchPoint p = ((QTouchEvent*)event)->touchPoints().at(0); - verticalScrollBar()->setValue(verticalScrollBar()->value() - (p.pos().y() - p.lastPos().y())); - return true; - } - -#if QT_VERSION >= 0x050000 - if (event->type() == QEvent::TouchEnd || event->type() == QEvent::TouchCancel) { -#else - if (event->type() == QEvent::TouchEnd) { -#endif - _touchScrollInProgress = false; - return true; - } - - return QTreeView::event(event); -} - -void NickView::mousePressEvent(QMouseEvent * event) { - if (!_touchScrollInProgress) - QTreeView::mousePressEvent(event); -} - -void NickView::mouseMoveEvent(QMouseEvent * event) { - if (!_touchScrollInProgress) - QTreeView::mouseMoveEvent(event); -} +} \ No newline at end of file