X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=3afab5a3d45f0ae2e144b3ea295ee0691c5b355c;hp=05515e6870db6fe490de282cc70e615e4af12247;hb=fe155e87ffa75bf4c13ae40311b029adba706816;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49 diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index 05515e68..3afab5a3 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -36,7 +36,7 @@ #include "types.h" NickView::NickView(QWidget *parent) - : QTreeView(parent) + : TreeViewTouch(parent) { setIndentation(10); header()->hide(); @@ -53,11 +53,11 @@ NickView::NickView(QWidget *parent) connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), SLOT(showContextMenu(const QPoint &))); -#if defined Q_WS_QWS || defined Q_WS_X11 - connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(startQuery(QModelIndex))); -#else +#if defined Q_OS_MACOS || defined Q_OS_WIN // afaik this is better on Mac and Windows connect(this, SIGNAL(activated(QModelIndex)), SLOT(startQuery(QModelIndex))); +#else + connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(startQuery(QModelIndex))); #endif } @@ -80,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(); } @@ -104,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())) {