X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=3b0250219efd62a2bfa09310e1914672315b05cf;hp=ede4a71e6529a102cdc12cbfc58bdbc64289578d;hb=c8467bd28cb62ffbc4d3f6c7b459ce75ef580238;hpb=2ae6793b7327ec1701b790eb4f15dc5b7afc6427 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index ede4a71e..3b025021 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -20,44 +20,135 @@ #include "topicwidget.h" -#include +#include "client.h" +#include "iconloader.h" +#include "networkmodel.h" +#include "uisettings.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(); + + connect(ui.topicLabel, SIGNAL(clickableActivated(Clickable)), SLOT(clickableActivated(Clickable))); + connect(ui.topicLineEdit, SIGNAL(noTextEntered()), SLOT(on_topicLineEdit_textEntered())); + + UiSettings s("TopicWidget"); + s.notify("DynamicResize", this, SLOT(updateResizeMode())); + s.notify("ResizeOnHover", this, SLOT(updateResizeMode())); + updateResizeMode(); + + UiStyleSettings fs("Fonts"); + fs.notify("UseCustomTopicWidgetFont", this, SLOT(setUseCustomFont(QVariant))); + fs.notify("TopicWidget", this, SLOT(setCustomFont(QVariant))); + if(fs.value("UseCustomTopicWidgetFont", false).toBool()) + setCustomFont(fs.value("TopicWidget", QFont())); + +} + +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::setUseCustomFont(const QVariant &v) { + if(v.toBool()) { + UiStyleSettings fs("Fonts"); + setCustomFont(fs.value("TopicWidget").value()); + } else + setCustomFont(QFont()); +} + +void TopicWidget::setCustomFont(const QVariant &v) { + UiStyleSettings fs("Fonts"); + if(!fs.value("UseCustomTopicWidgetFont", false).toBool()) + return; + + setCustomFont(v.value()); +} + +void TopicWidget::setCustomFont(const QFont &f) { + QFont font = f; + if(font.family().isEmpty()) + font = QApplication::font(); + + ui.topicLineEdit->setCustomFont(font); + ui.topicLabel->setCustomFont(font); } 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::updateResizeMode() { + StyledLabel::ResizeMode mode = StyledLabel::NoResize; + UiSettings s("TopicWidget"); + if(s.value("DynamicResize", true).toBool()) { + if(s.value("ResizeOnHover", true).toBool()) + mode = StyledLabel::ResizeOnHover; + else + mode = StyledLabel::DynamicResize; + } + + ui.topicLabel->setResizeMode(mode); +} + +void TopicWidget::clickableActivated(const Clickable &click) { + NetworkId networkId = selectionModel()->currentIndex().data(NetworkModel::NetworkIdRole).value(); + click.activate(networkId, _topic); +} + +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); @@ -67,6 +158,6 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { switchPlain(); return true; } - + return false; }