X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fuisupport%2Fbufferview.cpp;h=0ebfdea0ea15e76bf0589ad587cae70a24594f5b;hp=840f5d7e6fdaef417c6e6fe7e7b86abdec6ea335;hb=620882e248fafe97a736e545d8e3eb72569a078b;hpb=5b560ec1a01349562ac58051ca7e7fa899d4b994 diff --git a/src/uisupport/bufferview.cpp b/src/uisupport/bufferview.cpp index 840f5d7e..0ebfdea0 100644 --- a/src/uisupport/bufferview.cpp +++ b/src/uisupport/bufferview.cpp @@ -19,8 +19,12 @@ ***************************************************************************/ #include "client.h" +#include "buffersyncer.h" #include "bufferview.h" #include "networkmodel.h" +#include "network.h" + +#include "uisettings.h" /***************************************** * The TreeView showing the Buffers @@ -28,6 +32,10 @@ // Please be carefull when reimplementing methods which are used to inform the view about changes to the data // to be on the safe side: call QTreeView's method aswell BufferView::BufferView(QWidget *parent) : QTreeView(parent) { + setContextMenuPolicy(Qt::CustomContextMenu); + + connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), + this, SLOT(showContextMenu(const QPoint &))); } void BufferView::init() { @@ -70,7 +78,7 @@ void BufferView::setModel(QAbstractItemModel *model) { QString sectionName; QAction *showSection; - for(int i = 0; i < model->columnCount(); i++) { + for(int i = 1; i < model->columnCount(); i++) { sectionName = (model->headerData(i, Qt::Horizontal, Qt::DisplayRole)).toString(); showSection = new QAction(sectionName, header()); showSection->setCheckable(true); @@ -118,3 +126,128 @@ void BufferView::toggleHeader(bool checked) { QAction *action = qobject_cast(sender()); header()->setSectionHidden((action->property("column")).toInt(), !checked); } + +void BufferView::showContextMenu(const QPoint &pos) { + QModelIndex index = indexAt(pos); + if(!index.isValid()) return; + QMenu contextMenu(this); + QAction *connectNetAction = new QAction(tr("Connect"), this); + QAction *disconnectNetAction = new QAction(tr("Disconnect"), this); + + QAction *joinBufferAction = new QAction(tr("Join"), this); + QAction *partBufferAction = new QAction(tr("Part"), this); + QAction *removeBufferAction = new QAction(tr("Delete buffer"), this); + + QMenu *hideEventsMenu = new QMenu(tr("Hide Events"), this); + QAction *hideJoinAction = hideEventsMenu->addAction(tr("Join Events")); + QAction *hidePartAction = hideEventsMenu->addAction(tr("Part Events")); + QAction *hideKillAction = hideEventsMenu->addAction(tr("Kill Events")); + QAction *hideQuitAction = hideEventsMenu->addAction(tr("Quit Events")); + QAction *hideModeAction = hideEventsMenu->addAction(tr("Mode Events")); + hideJoinAction->setCheckable(true); + hidePartAction->setCheckable(true); + hideKillAction->setCheckable(true); + hideQuitAction->setCheckable(true); + hideModeAction->setCheckable(true); + hideJoinAction->setEnabled(false); + hidePartAction->setEnabled(false); + hideKillAction->setEnabled(false); + hideQuitAction->setEnabled(false); + hideModeAction->setEnabled(false); + + QAction *ignoreListAction = new QAction(tr("Ignore list"), this); + ignoreListAction->setEnabled(false); + QAction *whoBufferAction = new QAction(tr("WHO"), this); + + if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType) { + if(index.data(NetworkModel::ItemActiveRole).toBool()) { + contextMenu.addAction(disconnectNetAction); + } else { + contextMenu.addAction(connectNetAction); + } + } + + BufferInfo bufferInfo = index.data(NetworkModel::BufferInfoRole).value(); + QString channelname = index.sibling(index.row(), 0).data().toString(); + + if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::BufferItemType) { + if(bufferInfo.type() != BufferInfo::ChannelBuffer && bufferInfo.type() != BufferInfo::QueryBuffer) return; + contextMenu.addAction(joinBufferAction); + contextMenu.addAction(partBufferAction); + contextMenu.addAction(removeBufferAction); + contextMenu.addMenu(hideEventsMenu); + contextMenu.addAction(ignoreListAction); + contextMenu.addAction(whoBufferAction); + + if(bufferInfo.type() == BufferInfo::ChannelBuffer) { + if(index.data(NetworkModel::ItemActiveRole).toBool()) { + removeBufferAction->setEnabled(false); + removeBufferAction->setToolTip("To delete the buffer, part the channel first."); + joinBufferAction->setVisible(false); + } else { + partBufferAction->setVisible(false); + } + } else { + joinBufferAction->setVisible(false); + partBufferAction->setVisible(false); + } + } + + QAction *result = contextMenu.exec(QCursor::pos()); + if(result == connectNetAction || result == disconnectNetAction) { + const Network *network = Client::network(index.data(NetworkModel::NetworkIdRole).value()); + if(!network) return; + if(network->connectionState() == Network::Disconnected) + network->requestConnect(); + else + network->requestDisconnect(); + } else + if(result == joinBufferAction) { + Client::instance()->userInput(bufferInfo, QString("/JOIN %1").arg(channelname)); + } else + if(result == partBufferAction) { + Client::instance()->userInput(bufferInfo, QString("/PART %1").arg(channelname)); + } else + if(result == removeBufferAction) { + int res = QMessageBox::question(this, tr("Remove buffer permanently?"), + tr("Do you want to delete the buffer \"%1\" permanently? This will delete all related data, including all backlog " + "data, from the core's database!").arg(bufferInfo.bufferName()), + QMessageBox::Yes|QMessageBox::No, QMessageBox::No); + if(res == QMessageBox::Yes) { + Client::removeBuffer(bufferInfo.bufferId()); + } + } else + if(result == whoBufferAction) { + Client::instance()->userInput(bufferInfo, QString("/WHO %1").arg(channelname)); + } +} + +void BufferView::wheelEvent(QWheelEvent* event) +{ + UiSettings s; + if(s.value("MouseWheelChangesBuffers",QVariant(true)).toBool()) { + int rowDelta = ( event->delta() > 0 ) ? -1 : 1; + QModelIndex currentIndex = selectionModel()->currentIndex(); + QModelIndex resultingIndex; + if( model()->hasIndex( currentIndex.row() + rowDelta, currentIndex.column(), currentIndex.parent() ) ) + { + resultingIndex = currentIndex.sibling( currentIndex.row() + rowDelta, currentIndex.column() ); + } + else //if we scroll into a the parent node... + { + QModelIndex parent = currentIndex.parent(); + QModelIndex aunt = parent.sibling( parent.row() + rowDelta, parent.column() ); + if( rowDelta == -1 ) + resultingIndex = aunt.child( model()->rowCount( aunt ) - 1, 0 ); + else + resultingIndex = aunt.child( 0, 0 ); + if( !resultingIndex.isValid() ) + return; + } + selectionModel()->setCurrentIndex( resultingIndex, QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows ); + selectionModel()->select( resultingIndex, QItemSelectionModel::ClearAndSelect ); + } else { + QAbstractScrollArea::wheelEvent(event); + } +} +