X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=89aeb0616225b75fd3fd89c80c6c7f4020b50fb0;hp=a8b414f011813e2d96e774fe155c1c0d0c24ac5c;hb=b7c4bc3c2d51d3a48e86963d61b36960b5f5de21;hpb=8e9f08aa0f4e663473b634511b1bcc40145e9ba9 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index a8b414f0..89aeb061 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -89,48 +89,66 @@ void TopicWidget::setCustomFont(const QFont &f) { } void TopicWidget::setTopic(const QModelIndex &index) { - BufferId id = index.sibling(index.row(), 0).data(NetworkModel::BufferIdRole).value(); - if(!id.isValid()) - return; - - const Network *network = Client::network(Client::networkModel()->networkId(id)); - QString newtopic; - if(Client::networkModel()->bufferType(id) == BufferInfo::StatusBuffer) { - newtopic = QString("%1 (%2) | %3 | %4") - .arg(Qt::escape(network->networkName())) - .arg(Qt::escape(network->currentServer())) - .arg(tr("Users: %1").arg(network->ircUsers().count())) - .arg(tr("Lag: %1 msecs").arg(network->latency())); - _readonly = true; - } else if(Client::networkModel()->bufferType(id) == BufferInfo::QueryBuffer) { - newtopic = QString("%1").arg(index.sibling(index.row(), 0).data().toString()); - const IrcUser *user = network->ircUser(QString(index.sibling(index.row(), 0).data().toString())); - if (user) { - if(!user->userModes().isEmpty()) - newtopic.append(QString(" (+%1)").arg(user->userModes())); - if(!user->realName().isEmpty()) - newtopic.append(QString(" | %1").arg(user->realName())); - newtopic.append(QString(" | %1").arg(user->hostmask().remove(0, user->hostmask().indexOf("!")+1))); + bool readonly = true; + + BufferId id = index.data(NetworkModel::BufferIdRole).value(); + if(id.isValid()) { + QModelIndex index0 = index.sibling(index.row(), 0); + const Network *network = Client::network(Client::networkModel()->networkId(id)); + + switch(Client::networkModel()->bufferType(id)) { + case BufferInfo::StatusBuffer: + if(network) { + newtopic = QString("%1 (%2) | %3 | %4") + .arg(Qt::escape(network->networkName())) + .arg(Qt::escape(network->currentServer())) + .arg(tr("Users: %1").arg(network->ircUsers().count())) + .arg(tr("Lag: %1 msecs").arg(network->latency())); + } else { + newtopic = index0.data(Qt::DisplayRole).toString(); + } + break; + + case BufferInfo::ChannelBuffer: + newtopic = index.sibling(index.row(), 1).data().toString(); + readonly = false; + break; + + case BufferInfo::QueryBuffer: + { + QString nickname = index0.data(Qt::DisplayRole).toString(); + if(network) { + const IrcUser *user = network->ircUser(nickname); + if(user) { + newtopic = QString("%1%2%3 | %4@%5").arg(nickname) + .arg(user->userModes().isEmpty() ? QString() : QString(" (+%1)").arg(user->userModes())) + .arg(user->realName().isEmpty() ? QString() : QString(" | %1").arg(user->realName())) + .arg(user->user()) + .arg(user->host()); + } else { // no such user + newtopic = nickname; + } + } else { // no valid Network-Obj. + newtopic = nickname; + } + break; + } + default: + newtopic = index0.data(Qt::DisplayRole).toString(); } - _readonly = true; - } else if(Client::networkModel()->bufferType(id) == BufferInfo::ChannelBuffer) { - newtopic = index.sibling(index.row(), 1).data().toString(); - _readonly = false; } - else { - newtopic = ""; - _readonly = true; - } - - ui.topicEditButton->setVisible(!_readonly); _topic = newtopic; + _readonly = readonly; + + ui.topicEditButton->setVisible(!_readonly); ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); switchPlain(); } + void TopicWidget::setReadOnly(const bool &readonly) { if(_readonly == readonly) return; @@ -213,4 +231,4 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { } return false; -} \ No newline at end of file +}