X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fqtui%2Ftopicwidget.cpp;h=dbca69e8f0fe8dfad0ddb522cdb8811eece41f32;hb=ef20dd04ad6ed1911fa070c5dafe2498d9a4fc9d;hp=7d2d90bddbe2ba3985e6e35c4b82d60de777a503;hpb=9861cef46e8a052140070b4c643092f9c62aa6df;p=quassel.git diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 7d2d90bd..dbca69e8 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -20,20 +20,17 @@ #include "topicwidget.h" -#include - #include "client.h" +#include "iconloader.h" #include "networkmodel.h" TopicWidget::TopicWidget(QWidget *parent) : AbstractItemView(parent) { ui.setupUi(this); - ui.topicLineEdit->hide(); + ui.topicEditButton->setIcon(SmallIcon("edit-rename")); + ui.topicLineEdit->installEventFilter(this); - 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) { @@ -51,18 +48,21 @@ void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bot void TopicWidget::setTopic(const QString &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(); - Client::userInput(bufferInfo, QString("/topic %1").arg(ui.topicLineEdit->text())); + 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(); } @@ -72,26 +72,15 @@ void TopicWidget::on_topicEditButton_clicked() { } void TopicWidget::switchEditable() { - ui.topicLabel->hide(); - ui.topicEditButton->hide(); - ui.topicLineEdit->show(); + ui.stackedWidget->setCurrentIndex(1); 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(); + updateGeometry(); } void TopicWidget::switchPlain() { - ui.topicLineEdit->hide(); - ui.topicLabel->show(); - ui.topicEditButton->show(); + ui.stackedWidget->setCurrentIndex(0); 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(); + updateGeometry(); } // filter for the input widget to switch back to normal mode @@ -110,6 +99,6 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { switchPlain(); return true; } - + return false; }