X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Finputwidget.cpp;h=86052a00d39f76875ec43e7ed7b3dc6045cffded;hp=c246f2e7e18191569905ea4a9ccaba9b1c724a33;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=04315f46a16fc3627218377071e008b6b9744992 diff --git a/src/qtui/inputwidget.cpp b/src/qtui/inputwidget.cpp index c246f2e7..86052a00 100644 --- a/src/qtui/inputwidget.cpp +++ b/src/qtui/inputwidget.cpp @@ -65,6 +65,7 @@ InputWidget::InputWidget(QWidget *parent) ui.underlineButton->setIcon(SmallIcon("format-text-underline")); ui.textcolorButton->setIcon(SmallIcon("format-text-color")); ui.highlightcolorButton->setIcon(SmallIcon("format-fill-color")); + ui.encryptionIconLabel->hide(); _colorMenu = new QMenu(); _colorFillMenu = new QMenu(); @@ -289,8 +290,24 @@ void InputWidget::dataChanged(const QModelIndex &topLeft, const QModelIndex &bot QItemSelectionRange changedArea(topLeft, bottomRight); if (changedArea.contains(selectionModel()->currentIndex())) { updateEnabledState(); + + bool encrypted = false; + + IrcChannel *chan = qobject_cast(Client::bufferModel()->data(selectionModel()->currentIndex(), NetworkModel::IrcChannelRole).value()); + if (chan) + encrypted = chan->encrypted(); + + IrcUser *user = qobject_cast(Client::bufferModel()->data(selectionModel()->currentIndex(), NetworkModel::IrcUserRole).value()); + if (user) + encrypted = user->encrypted(); + + if (encrypted) + ui.encryptionIconLabel->show(); + else + ui.encryptionIconLabel->hide(); } -}; +} + void InputWidget::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) {