X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=3b0250219efd62a2bfa09310e1914672315b05cf;hp=06303c8385252c528873208042cebd641d109403;hb=c8467bd28cb62ffbc4d3f6c7b459ce75ef580238;hpb=8699dd758516d0ded076811e8ea656adc95e69d0 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 06303c83..3b025021 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -20,21 +20,144 @@ #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.topicEditButton->setIcon(SmallIcon("edit-rename")); + ui.topicLineEdit->setWordWrapEnabled(true); + ui.topicLineEdit->installEventFilter(this); + + 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()); } -QString TopicWidget::topic() const { - return ui.topicLineEdit->text(); +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) { + if(_topic == newtopic) + return; + + _topic = newtopic; + ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); + switchPlain(); } -TopicWidget::~TopicWidget() { +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(); +} + +void TopicWidget::on_topicEditButton_clicked() { + switchEditable(); +} + +void TopicWidget::switchEditable() { + ui.stackedWidget->setCurrentIndex(1); + ui.topicLineEdit->setFocus(); + updateGeometry(); +} + +void TopicWidget::switchPlain() { + 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); + + QKeyEvent *keyEvent = static_cast(event); + + if(keyEvent->key() == Qt::Key_Escape) { + switchPlain(); + return true; + } + + return false; }