X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=bbb36a75081bf9e2ffea3e93dbe68f56c609f854;hb=0cbdf2e324edc5f6ec3cee3842ee6b1830a57e23;hp=d6ced9b4f8a0299a4506f8b11a2a2be99faac6e6;hpb=b3a8232d4959903591c309d765da9c271d0a761f;p=quassel.git diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index d6ced9b4..bbb36a75 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -20,6 +20,7 @@ #include "nickview.h" +#include #include #include #include @@ -27,9 +28,11 @@ #include "buffermodel.h" #include "client.h" +#include "contextmenuactionprovider.h" +#include "graphicalui.h" +#include "nickview.h" #include "nickviewfilter.h" #include "networkmodel.h" -#include "quasselui.h" #include "types.h" #include "uisettings.h" @@ -46,7 +49,6 @@ NickView::NickView(QWidget *parent) setItemDelegate(newDelegate); delete oldDelegate; - setIndentation(10); setAnimated(true); header()->hide(); @@ -65,6 +67,10 @@ NickView::NickView(QWidget *parent) // afaik this is better on Mac and Windows connect(this, SIGNAL(activated(QModelIndex)), SLOT(startQuery(QModelIndex))); #endif + + UiStyleSettings s("QtUiStyle/Fonts"); // li'l dirty here, but fonts are stored in QtUiStyle :/ + s.notify("BufferView", this, SLOT(setCustomFont(QVariant))); // yes, we share the BufferView settings + setCustomFont(s.value("BufferView", QFont())); } void NickView::init() { @@ -73,13 +79,26 @@ 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())); } -void NickView::setModel(QAbstractItemModel *model) { - QTreeView::setModel(model); +void NickView::setModel(QAbstractItemModel *model_) { + if(model()) + disconnect(model(), 0, this, 0); + + QTreeView::setModel(model_); init(); } +void NickView::setCustomFont(const QVariant &v) { + QFont font = v.value(); + if(font.family().isEmpty()) + font = QApplication::font(); + setFont(font); +} + void NickView::rowsInserted(const QModelIndex &parent, int start, int end) { QTreeView::rowsInserted(parent, start, end); if(model()->data(parent, NetworkModel::ItemTypeRole) == NetworkModel::UserCategoryItemType && !isExpanded(parent)) { @@ -93,18 +112,23 @@ void NickView::setRootIndex(const QModelIndex &index) { QCoreApplication::postEvent(this, new ExpandAllEvent); } -void NickView::showContextMenu(const QPoint & pos ) { - QModelIndex index = indexAt(pos); - if(index.data(NetworkModel::ItemTypeRole) != NetworkModel::IrcUserItemType) - return; +QModelIndexList NickView::selectedIndexes() const { + QModelIndexList indexList = QTreeView::selectedIndexes(); - QModelIndexList indexList = selectedIndexes(); // make sure the item we clicked on is first - indexList.removeAll(index); - indexList.prepend(index); + if(indexList.contains(currentIndex())) { + indexList.removeAll(currentIndex()); + indexList.prepend(currentIndex()); + } + + return indexList; +} + +void NickView::showContextMenu(const QPoint &pos ) { + Q_UNUSED(pos); QMenu contextMenu(this); - Client::mainUi()->actionProvider()->addActions(&contextMenu, indexList); + GraphicalUi::contextMenuActionProvider()->addActions(&contextMenu, selectedIndexes()); contextMenu.exec(QCursor::pos()); }