Yearly copyright bump :)
[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 "mainwin.h"
25
26 TitleSetter::TitleSetter(MainWin *parent)
27   : AbstractItemView(parent),
28     _mainWin(parent)
29 {
30
31 }
32
33 void TitleSetter::currentChanged(const QModelIndex &current, const QModelIndex &previous) {
34   Q_UNUSED(previous);
35   changeWindowTitle(current.sibling(current.row(), 0).data().toString());
36 }
37
38 void TitleSetter::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) {
39   QItemSelectionRange changedArea(topLeft, bottomRight);
40   QModelIndex currentTopicIndex = selectionModel()->currentIndex().sibling(selectionModel()->currentIndex().row(), 0);
41   if(changedArea.contains(currentTopicIndex))
42     changeWindowTitle(currentTopicIndex.data().toString());
43 };
44
45 void TitleSetter::changeWindowTitle(QString title) {
46   QString newTitle = QString("%1 - %2").arg("Quassel IRC").arg(title);
47   _mainWin->setWindowTitle(newTitle);
48   _mainWin->setWindowIconText(newTitle);
49 }