X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Ftitlesetter.cpp;h=297b4cecbf76307afef5c61da689f04181988a88;hp=f48f000b45c86987537e945733257fd5d32e7b3f;hb=c3f1b84a9d98b886ada6aff962eadae1a6000b6d;hpb=d52b78268ad6ab09f896508a94dd7be47a720153 diff --git a/src/qtui/titlesetter.cpp b/src/qtui/titlesetter.cpp index f48f000b..297b4cec 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-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "titlesetter.h" #include "abstractitemview.h" +#include "client.h" #include "mainwin.h" TitleSetter::TitleSetter(MainWin *parent) @@ -32,18 +33,28 @@ TitleSetter::TitleSetter(MainWin *parent) void TitleSetter::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) { Q_UNUSED(previous); - changeWindowTitle(current.sibling(current.row(), 0).data().toString()); + changeWindowTitle(current.sibling(current.row(), 0)); } 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()); + changeWindowTitle(currentTopicIndex); }; -void TitleSetter::changeWindowTitle(QString title) { +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); }