X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftitlesetter.cpp;h=068a09219ac21ea4455172f6906515c14ffbd207;hp=f48f000b45c86987537e945733257fd5d32e7b3f;hb=HEAD;hpb=d52b78268ad6ab09f896508a94dd7be47a720153 diff --git a/src/qtui/titlesetter.cpp b/src/qtui/titlesetter.cpp index f48f000b..80797b6c 100644 --- a/src/qtui/titlesetter.cpp +++ b/src/qtui/titlesetter.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,35 +15,47 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "titlesetter.h" #include "abstractitemview.h" +#include "client.h" #include "mainwin.h" -TitleSetter::TitleSetter(MainWin *parent) - : AbstractItemView(parent), - _mainWin(parent) -{ +TitleSetter::TitleSetter(MainWin* parent) + : AbstractItemView(parent) + , _mainWin(parent) +{} +void TitleSetter::currentChanged(const QModelIndex& current, const QModelIndex& previous) +{ + Q_UNUSED(previous); + changeWindowTitle(current.sibling(current.row(), 0)); } -void TitleSetter::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { - Q_UNUSED(previous); - changeWindowTitle(current.sibling(current.row(), 0).data().toString()); +void TitleSetter::dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) +{ + QItemSelectionRange changedArea(topLeft, bottomRight); + QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 0); + if (changedArea.contains(currentTopicIndex)) + changeWindowTitle(currentTopicIndex); } -void TitleSetter::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) { - QItemSelectionRange changedArea(topLeft, bottomRight); - QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 0); - if(changedArea.contains(currentTopicIndex)) - changeWindowTitle(currentTopicIndex.data().toString()); -}; - -void TitleSetter::changeWindowTitle(QString title) { - QString newTitle = QString("%1 - %2").arg("Quassel IRC").arg(title); - _mainWin->setWindowTitle(newTitle); - _mainWin->setWindowIconText(newTitle); +void TitleSetter::changeWindowTitle(const QModelIndex& index) +{ + BufferId id = index.data(NetworkModel::BufferIdRole).value(); + if (!id.isValid()) + return; + + QString title; + if (Client::networkModel()->bufferType(id) == BufferInfo::StatusBuffer) + title = index.data().toString(); + else + title = QString("%1 (%2)").arg(index.data().toString(), Client::networkModel()->networkName(id)); + QString newTitle = QString("%1 - %2").arg("Quassel IRC").arg(title); + + _mainWin->setWindowTitle(newTitle); + _mainWin->setWindowIconText(newTitle); }