cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / titlesetter.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2022 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 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 void TitleSetter::currentChanged(const QModelIndex& current, const QModelIndex& previous)
33 {
34     Q_UNUSED(previous);
35     changeWindowTitle(current.sibling(current.row(), 0));
36 }
37
38 void TitleSetter::dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight)
39 {
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 {
48     BufferId id = index.data(NetworkModel::BufferIdRole).value<BufferId>();
49     if (!id.isValid())
50         return;
51
52     QString title;
53     if (Client::networkModel()->bufferType(id) == BufferInfo::StatusBuffer)
54         title = index.data().toString();
55     else
56         title = QString("%1 (%2)").arg(index.data().toString(), Client::networkModel()->networkName(id));
57     QString newTitle = QString("%1 - %2").arg("Quassel IRC").arg(title);
58
59     _mainWin->setWindowTitle(newTitle);
60     _mainWin->setWindowIconText(newTitle);
61 }