X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Ftopicwidget.cpp;h=f5e6c9e1ae93ed2c853aa659f3d5b1c67c1d92f7;hb=1b2d3ea62867220d7bffc3b23dda1dc14d429007;hp=8adb0b6b46b3f4cba2ea5e0c222518fe5a400ef5;hpb=a23256347cc47605dd0660127052846427bc998d;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 8adb0b6b..f5e6c9e1 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -23,7 +23,7 @@ #include TopicWidget::TopicWidget(QWidget *parent) - : QWidget(parent) + : AbstractItemView(parent) { ui.setupUi(this); ui.topicLineEdit->hide(); @@ -31,15 +31,36 @@ TopicWidget::TopicWidget(QWidget *parent) ui.topicButton->show(); } +void TopicWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { + Q_UNUSED(previous); + setTopicForIndex(current); +} + +void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { + QItemSelectionRange changedArea(topLeft, bottomRight); + QModelIndex currentIndex = selectionModel()->currentIndex(); + if(changedArea.contains(currentIndex)) + setTopicForIndex(currentIndex); +}; + +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.topicLineEdit->setText(newtopic); switchPlain(); } void TopicWidget::on_topicLineEdit_returnPressed() { + emit topicChanged(ui.topicLineEdit->text()); switchPlain(); - emit topicChanged(topic()); } void TopicWidget::on_topicButton_clicked() { @@ -49,14 +70,22 @@ void TopicWidget::on_topicButton_clicked() { void TopicWidget::switchEditable() { ui.topicButton->hide(); ui.topicLineEdit->show(); + ui.topicLineEdit->setFocus(); } void TopicWidget::switchPlain() { ui.topicLineEdit->hide(); ui.topicButton->show(); + ui.topicLineEdit->setText(_topic); } +// 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);