X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=ab901fd6193e17d8aa40d21f99eed0e7bb6359b0;hb=c2718511214289f58a02207f7988876c420e8c7e;hp=cb646eda090a06bd369a76d1b2d1dd513701df90;hpb=b68ffc844fc7504ecceeaa9348107ca5c249bd51;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index cb646eda..ab901fd6 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -22,13 +22,16 @@ #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) { @@ -48,29 +51,35 @@ void TopicWidget::setTopic(const QString &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); } @@ -93,3 +102,4 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { return false; } +