Event backend porting
[quassel.git] / src / qtui / titlesetter.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "titlesetter.h"
22
23 #include "abstractitemview.h"
24 #include "client.h"
25 #include "mainwin.h"
26
27 TitleSetter::TitleSetter(MainWin *parent)
28   : AbstractItemView(parent),
29     _mainWin(parent)
30 {
31
32 }
33
34 void TitleSetter::currentChanged(const QModelIndex &current, const QModelIndex &previous) {
35   Q_UNUSED(previous);
36   changeWindowTitle(current.sibling(current.row(), 0));
37 }
38
39 void TitleSetter::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) {
40   QItemSelectionRange changedArea(topLeft, bottomRight);
41   QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 0);
42   if(changedArea.contains(currentTopicIndex))
43     changeWindowTitle(currentTopicIndex);
44 };
45
46 void TitleSetter::changeWindowTitle(const QModelIndex &index) {
47   BufferId id = index.data(NetworkModel::BufferIdRole).value<BufferId>();
48   if(!id.isValid())
49     return;
50
51   QString title;
52   if(Client::networkModel()->bufferType(id) == BufferInfo::StatusBuffer)
53     title = index.data().toString();
54   else
55     title = QString("%1 (%2)").arg(index.data().toString(), Client::networkModel()->networkName(id));
56   QString newTitle = QString("%1 - %2").arg("Quassel IRC").arg(title);
57
58   _mainWin->setWindowTitle(newTitle);
59   _mainWin->setWindowIconText(newTitle);
60 }