X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=8a49d2758ae621f43730dc15f3dd674b36e8cf3a;hb=1489728cd358f6bf7151bcdd87b9ea2cbdff7bec;hp=8adb0b6b46b3f4cba2ea5e0c222518fe5a400ef5;hpb=a23256347cc47605dd0660127052846427bc998d;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 8adb0b6b..8a49d275 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -20,43 +20,77 @@ #include "topicwidget.h" -#include +#include "client.h" +#include "iconloader.h" +#include "networkmodel.h" TopicWidget::TopicWidget(QWidget *parent) - : QWidget(parent) + : AbstractItemView(parent) { ui.setupUi(this); - ui.topicLineEdit->hide(); + ui.topicEditButton->setIcon(SmallIcon("edit-rename")); + ui.topicLineEdit->setWordWrapEnabled(true); + ui.topicLineEdit->installEventFilter(this); - ui.topicButton->show(); } +void TopicWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { + Q_UNUSED(previous); + setTopic(current.sibling(current.row(), 1).data().toString()); +} + +void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { + QItemSelectionRange changedArea(topLeft, bottomRight); + QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 1); + if(changedArea.contains(currentTopicIndex)) + setTopic(currentTopicIndex.data().toString()); +}; + void TopicWidget::setTopic(const QString &newtopic) { - ui.topicButton->setAndStyleText(newtopic); + if(_topic == newtopic) + return; + + _topic = newtopic; + ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); switchPlain(); } -void TopicWidget::on_topicLineEdit_returnPressed() { +void TopicWidget::on_topicLineEdit_textEntered() { + QModelIndex currentIdx = currentIndex(); + if(currentIdx.isValid() && currentIdx.data(NetworkModel::BufferTypeRole) == BufferInfo::ChannelBuffer) { + BufferInfo bufferInfo = currentIdx.data(NetworkModel::BufferInfoRole).value(); + if(ui.topicLineEdit->text().isEmpty()) + Client::userInput(bufferInfo, QString("/quote TOPIC %1 :").arg(bufferInfo.bufferName())); + else + Client::userInput(bufferInfo, QString("/topic %1").arg(ui.topicLineEdit->text())); + } switchPlain(); - emit topicChanged(topic()); } -void TopicWidget::on_topicButton_clicked() { +void TopicWidget::on_topicEditButton_clicked() { switchEditable(); } void TopicWidget::switchEditable() { - ui.topicButton->hide(); - ui.topicLineEdit->show(); + ui.stackedWidget->setCurrentIndex(1); + ui.topicLineEdit->setFocus(); + updateGeometry(); } void TopicWidget::switchPlain() { - ui.topicLineEdit->hide(); - ui.topicButton->show(); + ui.stackedWidget->setCurrentIndex(0); + ui.topicLineEdit->setText(_topic); + updateGeometry(); } +// filter for the input widget to switch back to normal mode bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { + if(event->type() == QEvent::FocusOut) { + switchPlain(); + return true; + } + if(event->type() != QEvent::KeyPress) return QObject::eventFilter(obj, event); @@ -66,6 +100,6 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { switchPlain(); return true; } - + return false; }