X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=644d008d7cbeff3ac1a01c52a3e235207de7fe83;hp=b1a5a4d1e8bce1ffe777ce137927d7bd2901c1e5;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index b1a5a4d1..644d008d 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -21,22 +21,22 @@ #include "nickview.h" #include -#include -#include #include +#include #include +#include #include "buffermodel.h" #include "client.h" #include "contextmenuactionprovider.h" #include "graphicalui.h" +#include "networkmodel.h" #include "nickview.h" #include "nickviewfilter.h" -#include "networkmodel.h" #include "types.h" -NickView::NickView(QWidget *parent) - : QTreeView(parent) +NickView::NickView(QWidget* parent) + : TreeViewTouch(parent) { setIndentation(10); header()->hide(); @@ -47,21 +47,18 @@ NickView::NickView(QWidget *parent) setContextMenuPolicy(Qt::CustomContextMenu); setSelectionMode(QAbstractItemView::ExtendedSelection); -// // breaks with Qt 4.8 -// if(QString("4.8.0") > qVersion()) // FIXME breaks with Qt versions >= 4.10! setAnimated(true); - connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), SLOT(showContextMenu(const QPoint &))); + connect(this, &QWidget::customContextMenuRequested, this, &NickView::showContextMenu); -#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))); + connect(this, &QAbstractItemView::activated, this, &NickView::startQuery); +#else + connect(this, &QAbstractItemView::doubleClicked, this, &NickView::startQuery); #endif } - void NickView::init() { if (!model()) @@ -70,41 +67,37 @@ void NickView::init() for (int i = 1; i < model()->columnCount(); i++) setColumnHidden(i, true); - connect(selectionModel(), SIGNAL(currentChanged(QModelIndex, QModelIndex)), SIGNAL(selectionUpdated())); - connect(selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)), SIGNAL(selectionUpdated())); + connect(selectionModel(), &QItemSelectionModel::currentChanged, this, &NickView::selectionUpdated); + connect(selectionModel(), &QItemSelectionModel::selectionChanged, this, &NickView::selectionUpdated); } - -void NickView::setModel(QAbstractItemModel *model_) +void NickView::setModel(QAbstractItemModel* model_) { if (model()) - disconnect(model(), 0, this, 0); + disconnect(model(), nullptr, this, nullptr); - QTreeView::setModel(model_); + TreeViewTouch::setModel(model_); init(); } - -void NickView::rowsInserted(const QModelIndex &parent, int start, int end) +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(); } } - -void NickView::setRootIndex(const QModelIndex &index) +void NickView::setRootIndex(const QModelIndex& index) { QAbstractItemView::setRootIndex(index); if (index.isValid()) unanimatedExpandAll(); } - 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())) { @@ -115,7 +108,6 @@ QModelIndexList NickView::selectedIndexes() const return indexList; } - void NickView::unanimatedExpandAll() { // since of Qt Version 4.8.0 the default expandAll will not properly work if @@ -127,8 +119,7 @@ void NickView::unanimatedExpandAll() setAnimated(wasAnimated); } - -void NickView::showContextMenu(const QPoint &pos) +void NickView::showContextMenu(const QPoint& pos) { Q_UNUSED(pos); @@ -137,13 +128,12 @@ void NickView::showContextMenu(const QPoint &pos) contextMenu.exec(QCursor::pos()); } - -void NickView::startQuery(const QModelIndex &index) +void NickView::startQuery(const QModelIndex& index) { if (index.data(NetworkModel::ItemTypeRole) != NetworkModel::IrcUserItemType) return; - IrcUser *ircUser = qobject_cast(index.data(NetworkModel::IrcUserRole).value()); + auto* ircUser = qobject_cast(index.data(NetworkModel::IrcUserRole).value()); NetworkId networkId = index.data(NetworkModel::NetworkIdRole).value(); if (!ircUser || !networkId.isValid()) return;