X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftopicwidget.cpp;h=a8b414f011813e2d96e774fe155c1c0d0c24ac5c;hp=f5e6c9e1ae93ed2c853aa659f3d5b1c67c1d92f7;hb=8e9f08aa0f4e663473b634511b1bcc40145e9ba9;hpb=1b2d3ea62867220d7bffc3b23dda1dc14d429007 diff --git a/src/qtui/topicwidget.cpp b/src/qtui/topicwidget.cpp index f5e6c9e1..a8b414f0 100644 --- a/src/qtui/topicwidget.cpp +++ b/src/qtui/topicwidget.cpp @@ -20,73 +20,189 @@ #include "topicwidget.h" -#include +#include "client.h" +#include "iconloader.h" +#include "networkmodel.h" +#include "uisettings.h" TopicWidget::TopicWidget(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())); + + _mouseEntered = false; + _readonly = false; } void TopicWidget::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { Q_UNUSED(previous); - setTopicForIndex(current); + setTopic(current); } void TopicWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { QItemSelectionRange changedArea(topLeft, bottomRight); - QModelIndex currentIndex = selectionModel()->currentIndex(); - if(changedArea.contains(currentIndex)) - setTopicForIndex(currentIndex); + QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 1); + if(changedArea.contains(currentTopicIndex)) + setTopic(selectionModel()->currentIndex()); }; -void TopicWidget::setTopicForIndex(const QModelIndex &index) { - QModelIndex topicIndex = index.sibling(index.row(), 1); - setTopic(topicIndex.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) + +void TopicWidget::setTopic(const QModelIndex &index) { + BufferId id = index.sibling(index.row(), 0).data(NetworkModel::BufferIdRole).value(); + if(!id.isValid()) return; - + + const Network *network = Client::network(Client::networkModel()->networkId(id)); + + QString newtopic; + if(Client::networkModel()->bufferType(id) == BufferInfo::StatusBuffer) { + newtopic = QString("%1 (%2) | %3 | %4") + .arg(Qt::escape(network->networkName())) + .arg(Qt::escape(network->currentServer())) + .arg(tr("Users: %1").arg(network->ircUsers().count())) + .arg(tr("Lag: %1 msecs").arg(network->latency())); + _readonly = true; + } else if(Client::networkModel()->bufferType(id) == BufferInfo::QueryBuffer) { + newtopic = QString("%1").arg(index.sibling(index.row(), 0).data().toString()); + const IrcUser *user = network->ircUser(QString(index.sibling(index.row(), 0).data().toString())); + if (user) { + if(!user->userModes().isEmpty()) + newtopic.append(QString(" (+%1)").arg(user->userModes())); + if(!user->realName().isEmpty()) + newtopic.append(QString(" | %1").arg(user->realName())); + newtopic.append(QString(" | %1").arg(user->hostmask().remove(0, user->hostmask().indexOf("!")+1))); + } + _readonly = true; + } else if(Client::networkModel()->bufferType(id) == BufferInfo::ChannelBuffer) { + newtopic = index.sibling(index.row(), 1).data().toString(); + _readonly = false; + } + else { + newtopic = ""; + _readonly = true; + } + + ui.topicEditButton->setVisible(!_readonly); + _topic = newtopic; - ui.topicButton->setAndStyleText(newtopic); + ui.topicLabel->setText(newtopic); ui.topicLineEdit->setText(newtopic); switchPlain(); } -void TopicWidget::on_topicLineEdit_returnPressed() { - emit topicChanged(ui.topicLineEdit->text()); +void TopicWidget::setReadOnly(const bool &readonly) { + if(_readonly == readonly) + return; + + _readonly = readonly; +} + +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_topicButton_clicked() { +void TopicWidget::on_topicEditButton_clicked() { switchEditable(); } void TopicWidget::switchEditable() { - ui.topicButton->hide(); - ui.topicLineEdit->show(); + ui.stackedWidget->setCurrentIndex(1); ui.topicLineEdit->setFocus(); + ui.topicLineEdit->moveCursor(QTextCursor::End,QTextCursor::MoveAnchor); + updateGeometry(); } void TopicWidget::switchPlain() { - ui.topicLineEdit->hide(); - ui.topicButton->show(); + ui.stackedWidget->setCurrentIndex(0); ui.topicLineEdit->setText(_topic); + updateGeometry(); + emit switchedPlain(); } // filter for the input widget to switch back to normal mode bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { - if(event->type() == QEvent::FocusOut) { + + if(event->type() == QEvent::FocusOut && !_mouseEntered) { switchPlain(); return true; } - if(event->type() != QEvent::KeyPress) + if(event->type() == QEvent::Enter) { + _mouseEntered = true; + } + + if(event->type() == QEvent::Leave) { + _mouseEntered = false; + } + + if(event->type() != QEvent::KeyRelease) return QObject::eventFilter(obj, event); QKeyEvent *keyEvent = static_cast(event); @@ -95,6 +211,6 @@ bool TopicWidget::eventFilter(QObject *obj, QEvent *event) { switchPlain(); return true; } - + return false; -} +} \ No newline at end of file