X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=cc66bd460427f108ef65108d5b926daecbbed460;hp=511d27522520e6730079cab26afbef1a9fbaa3d9;hb=a25d2ec9cf8caf283624eef270998c0ba9e903dd;hpb=fb6f5bcbdebd8660f355a558dd7cc47f6df45965 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 511d2752..cc66bd46 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -22,46 +22,91 @@ #include +#include "client.h" +#include "iconloader.h" +#include "networkmodel.h" + TopicWidget::TopicWidget(QWidget *parent) - : QWidget(parent) + : AbstractItemView(parent) { ui.setupUi(this); + ui.topicEditButton->setPixmap(BarIcon("edit-rename")); + ui.topicLineEdit->hide(); ui.topicLineEdit->installEventFilter(this); - ui.topicButton->show(); + ui.topicLabel->show(); + setContentsMargins(0,0,0,0); + parent->setMinimumHeight(layout()->sizeHint().height() + 2*qApp->style()->pixelMetric(QStyle::PM_DockWidgetTitleBarButtonMargin)); +} + +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; - + _topic = newtopic; - ui.topicButton->setAndStyleText(newtopic); + ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); switchPlain(); } void TopicWidget::on_topicLineEdit_returnPressed() { + 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.topicLabel->hide(); + ui.topicEditButton->hide(); ui.topicLineEdit->show(); ui.topicLineEdit->setFocus(); + + setFixedHeight(layout()->sizeHint().height()); + // Update the dock widget too, else it won't resize in all styles... FIXME try to sanitize this + qobject_cast(parent())->setMinimumHeight(height() + 2*qApp->style()->pixelMetric(QStyle::PM_DockWidgetTitleBarButtonMargin)); + qobject_cast(parent())->adjustSize(); } void TopicWidget::switchPlain() { ui.topicLineEdit->hide(); - ui.topicButton->show(); + ui.topicLabel->show(); + ui.topicEditButton->show(); + ui.topicLineEdit->setText(_topic); + setFixedHeight(layout()->sizeHint().height()); + // Update the dock widget too, else it won't resize in all styles... FIXME try to sanitize this + qobject_cast(parent())->setMinimumHeight(height() + 2*qApp->style()->pixelMetric(QStyle::PM_DockWidgetTitleBarButtonMargin)); + qobject_cast(parent())->adjustSize(); } +// 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,9 +114,8 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { if(keyEvent->key() == Qt::Key_Escape) { switchPlain(); - ui.topicLineEdit->setText(_topic); return true; } - + return false; }