X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=3b0250219efd62a2bfa09310e1914672315b05cf;hp=2f8f5fa4e29c62f75f4c8813c2dfbd987db4993f;hb=3474e986630907fa2a3f4143012ac2a42796609e;hpb=6ce1966d5d3070ad461a976a2bee7cc28e8b9149 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index 2f8f5fa4..3b025021 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -23,6 +23,7 @@ #include "client.h" #include "iconloader.h" #include "networkmodel.h" +#include "uisettings.h" TopicWidget::TopicWidget(QWidget *parent) : AbstractItemView(parent) @@ -33,6 +34,19 @@ TopicWidget::TopicWidget(QWidget *parent) 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) { @@ -47,6 +61,31 @@ void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bot 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) { if(_topic == newtopic) return; @@ -57,6 +96,19 @@ void TopicWidget::setTopic(const QString &newtopic) { switchPlain(); } +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);