Build the monolithic client (-DWANT_MONO=ON) by default again, as it's usable now
[quassel.git] / src / core / corebufferviewmanager.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 "corebufferviewmanager.h"
22
23 #include "corebufferviewconfig.h"
24
25 #include "core.h"
26 #include "coresession.h"
27
28 CoreBufferViewManager::CoreBufferViewManager(SignalProxy *proxy, CoreSession *parent)
29   : BufferViewManager(proxy, parent),
30     _coreSession(parent)
31 {
32   QVariantMap views = Core::getUserSetting(_coreSession->user(), "BufferViews").toMap();
33   QVariantMap::iterator iter = views.begin();
34   QVariantMap::iterator iterEnd = views.end();
35   CoreBufferViewConfig *config = 0;
36   while(iter != iterEnd) {
37     config = new CoreBufferViewConfig(iter.key().toInt(), iter.value().toMap(), this);
38     addBufferViewConfig(config);
39     iter++;
40   }
41 }
42
43 CoreBufferViewManager::~CoreBufferViewManager() {
44   QVariantMap views;
45
46   BufferViewConfigHash::const_iterator iter = bufferViewConfigHash().constBegin();
47   BufferViewConfigHash::const_iterator iterEnd = bufferViewConfigHash().constEnd();
48   while(iter != iterEnd) {
49     views[QString::number((*iter)->bufferViewId())] = (*iter)->toVariantMap();
50     iter++;
51   }
52
53   Core::setUserSetting(_coreSession->user(), "BufferViews", views);
54 }
55
56 void CoreBufferViewManager::requestCreateBufferView(const QVariantMap &properties) {
57   QString bufferViewName = properties["bufferViewName"].toString();
58   int maxId = -1;
59   BufferViewConfigHash::const_iterator iter = bufferViewConfigHash().constBegin();
60   BufferViewConfigHash::const_iterator iterEnd = bufferViewConfigHash().constEnd();
61   while(iter != iterEnd) {
62     if((*iter)->bufferViewName() == bufferViewName)
63       return;
64     
65     if((*iter)->bufferViewId() > maxId)
66       maxId = (*iter)->bufferViewId();
67     
68     iter++;
69   }
70   maxId++;
71
72   CoreBufferViewConfig *config = new CoreBufferViewConfig(maxId, properties);
73   addBufferViewConfig(config);
74 }
75
76 void CoreBufferViewManager::requestCreateBufferViews(const QVariantList &properties) {
77   QVariantList::const_iterator iter = properties.constBegin();
78   QVariantList::const_iterator iterEnd = properties.constEnd();
79   while(iter != iterEnd) {
80     requestCreateBufferView((*iter).toMap());
81     iter++;
82   }
83 }
84
85 void CoreBufferViewManager::requestDeleteBufferView(int bufferViewId) {
86   deleteBufferViewConfig(bufferViewId);
87 }
88
89 void CoreBufferViewManager::requestDeleteBufferViews(const QVariantList &bufferViews) {
90   foreach(QVariant bufferView, bufferViews) {
91     deleteBufferViewConfig(bufferView.toInt());
92   }
93 }