X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fuisupport%2Fnickview.cpp;h=bbb36a75081bf9e2ffea3e93dbe68f56c609f854;hb=6830a6398744950fc33c63d9d194641f189bbec1;hp=dd7d1af53ae3c8adebf530428916e91994f717e0;hpb=a5aa42bfbd30790c2063cc88b5949519b5b0c4a4;p=quassel.git diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index dd7d1af5..bbb36a75 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -20,6 +20,7 @@ #include "nickview.h" +#include #include #include #include @@ -27,10 +28,13 @@ #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" class ExpandAllEvent : public QEvent { public: @@ -45,7 +49,6 @@ NickView::NickView(QWidget *parent) setItemDelegate(newDelegate); delete oldDelegate; - setIndentation(10); setAnimated(true); header()->hide(); @@ -64,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() { @@ -72,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)) { @@ -92,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()); } @@ -158,11 +183,20 @@ void NickView::customEvent(QEvent *event) { NickViewDelegate::NickViewDelegate(QObject *parent) : QStyledItemDelegate(parent) { + UiSettings s("QtUiStyle/Colors"); + _FgOnlineStatus = s.value("onlineStatusFG", QVariant(QColor(Qt::black))).value(); + _FgAwayStatus = s.value("awayStatusFG", QVariant(QColor(Qt::gray))).value(); } void NickViewDelegate::initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const { QStyledItemDelegate::initStyleOption(option, index); + if(!index.isValid()) + return; + + QColor fgColor = _FgOnlineStatus; if(!index.data(NetworkModel::ItemActiveRole).toBool()) - option->palette.setColor(QPalette::Text, option->palette.color(QPalette::Dark)); + fgColor = _FgAwayStatus; + + option->palette.setColor(QPalette::Text, fgColor); }