X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=ab901fd6193e17d8aa40d21f99eed0e7bb6359b0;hb=fd90abd3f3baa4fc98fa7e3df0e22e9bd3d77d95;hp=f5e6c9e1ae93ed2c853aa659f3d5b1c67c1d92f7;hpb=1b2d3ea62867220d7bffc3b23dda1dc14d429007;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index f5e6c9e1..ab901fd6 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -22,60 +22,64 @@ #include +#include "client.h" +#include "networkmodel.h" + TopicWidget::TopicWidget(QWidget *parent) : AbstractItemView(parent) { ui.setupUi(this); ui.topicLineEdit->hide(); ui.topicLineEdit->installEventFilter(this); - ui.topicButton->show(); + ui.topicLabel->show(); } void TopicWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { Q_UNUSED(previous); - setTopicForIndex(current); + setTopic(current.sibling(current.row(), 1).data().toString()); } void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { QItemSelectionRange changedArea(topLeft, bottomRight); - QModelIndex currentIndex = selectionModel()->currentIndex(); - if(changedArea.contains(currentIndex)) - setTopicForIndex(currentIndex); + QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 1); + if(changedArea.contains(currentTopicIndex)) + setTopic(currentTopicIndex.data().toString()); }; -void TopicWidget::setTopicForIndex(const QModelIndex &index) { - QModelIndex topicIndex = index.sibling(index.row(), 1); - setTopic(topicIndex.data().toString()); -} - void TopicWidget::setTopic(const QString &newtopic) { if(_topic == newtopic) return; _topic = newtopic; - ui.topicButton->setAndStyleText(newtopic); + ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); switchPlain(); } void TopicWidget::on_topicLineEdit_returnPressed() { - emit topicChanged(ui.topicLineEdit->text()); + QModelIndex currentIdx = currentIndex(); + if(currentIdx.isValid() && currentIdx.data(NetworkModel::BufferTypeRole) == BufferInfo::ChannelBuffer) { + BufferInfo bufferInfo = currentIdx.data(NetworkModel::BufferInfoRole).value(); + Client::userInput(bufferInfo, QString("/topic %1").arg(ui.topicLineEdit->text())); + } switchPlain(); } -void TopicWidget::on_topicButton_clicked() { +void TopicWidget::on_topicEditButton_clicked() { switchEditable(); } void TopicWidget::switchEditable() { - ui.topicButton->hide(); + ui.topicLabel->hide(); + ui.topicEditButton->hide(); ui.topicLineEdit->show(); ui.topicLineEdit->setFocus(); } void TopicWidget::switchPlain() { ui.topicLineEdit->hide(); - ui.topicButton->show(); + ui.topicLabel->show(); + ui.topicEditButton->show(); ui.topicLineEdit->setText(_topic); } @@ -98,3 +102,4 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { return false; } +