X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=cb646eda090a06bd369a76d1b2d1dd513701df90;hb=8167358f52bf097c5b46be9372ce1caaf9bed707;hp=511d27522520e6730079cab26afbef1a9fbaa3d9;hpb=fb6f5bcbdebd8660f355a558dd7cc47f6df45965;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 511d2752..cb646eda 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,6 +31,18 @@ TopicWidget::TopicWidget(QWidget *parent) 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) { if(_topic == newtopic) return; @@ -42,8 +54,8 @@ void TopicWidget::setTopic(const QString &newtopic) { } void TopicWidget::on_topicLineEdit_returnPressed() { + emit topicChanged(ui.topicLineEdit->text()); switchPlain(); - emit topicChanged(topic()); } void TopicWidget::on_topicButton_clicked() { @@ -59,9 +71,16 @@ void TopicWidget::switchEditable() { 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); @@ -69,7 +88,6 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { if(keyEvent->key() == Qt::Key_Escape) { switchPlain(); - ui.topicLineEdit->setText(_topic); return true; }