cbfa26ebfc2cc86c221b9ccf09b5c3df0e067491
[quassel.git] / src / qtui / settingspages / chatmonitorsettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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 Blank Public License as published by    *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
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 Blank Public License for more details.                            *
14  *                                                                         *
15  *   You should have received a copy of the GNU Blank 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 "chatmonitorsettingspage.h"
22
23 #include "client.h"
24 #include "networkmodel.h"
25 #include "bufferviewconfig.h"
26 #include "buffermodel.h"
27 #include "bufferview.h"
28 #include "bufferviewfilter.h"
29 #include "iconloader.h"
30 #include "chatviewsettings.h"
31
32 #include <QVariant>
33
34 ChatMonitorSettingsPage::ChatMonitorSettingsPage(QWidget *parent)
35   : SettingsPage(tr("General"), tr("Chat Monitor"), parent) {
36   ui.setupUi(this);
37
38   ui.activateBuffer->setIcon(SmallIcon("go-next"));
39   ui.deactivateBuffer->setIcon(SmallIcon("go-previous"));
40
41   // setup available buffers config (for the bufferview on the left)
42   _configAvailable = new BufferViewConfig(-667, this);
43   _configAvailable->setBufferViewName("tmpChatMonitorAvailableBuffers");
44   _configAvailable->setSortAlphabetically(true);
45   _configAvailable->setDisableDecoration(true);
46   _configAvailable->setNetworkId(NetworkId());
47   _configAvailable->setInitialized();
48
49   // setup active buffers config (for the bufferview on the right)
50   _configActive = new BufferViewConfig(-666, this);
51   _configActive->setBufferViewName("tmpChatMonitorActiveBuffers");
52   _configActive->setSortAlphabetically(true);
53   _configActive->setDisableDecoration(true);
54   _configActive->setNetworkId(NetworkId());
55   _configActive->setInitialized();
56
57   // fill combobox with operation modes
58   ui.operationMode->addItem(tr("Opt In"), ChatViewSettings::OptIn);
59   ui.operationMode->addItem(tr("Opt Out"), ChatViewSettings::OptOut);
60
61   // connect slots
62   connect(ui.operationMode, SIGNAL(currentIndexChanged(int)), this, SLOT(switchOperationMode(int)));
63 }
64
65 bool ChatMonitorSettingsPage::hasDefaults() const {
66   return true;
67 }
68
69 void ChatMonitorSettingsPage::defaults() {
70   settings["OperationMode"] = ChatViewSettings::OptOut;
71   settings["ShowHighlights"] = false;
72   settings["Buffers"] = QVariant();
73   settings["Default"] = true;
74   load();
75   widgetHasChanged();
76 }
77
78 void ChatMonitorSettingsPage::load() {
79   if(settings.contains("Default"))
80     settings.remove("Default");
81   else
82     loadSettings();
83
84   ui.operationMode->setCurrentIndex(settings["OperationMode"].toInt() - 1);
85   ui.showHighlights->setChecked(settings["ShowHighlights"].toBool());
86
87   // get all available buffer Ids
88   QList<BufferId> allBufferIds = Client::networkModel()->allBufferIds();
89
90   if(!settings["Buffers"].toList().isEmpty()) {
91     QList<BufferId> bufferIdsFromConfig;
92     // remove all active buffers from the available config
93     foreach(QVariant v, settings["Buffers"].toList()) {
94       bufferIdsFromConfig << v.value<BufferId>();
95       allBufferIds.removeAll(v.value<BufferId>());
96     }
97     qSort(bufferIdsFromConfig.begin(), bufferIdsFromConfig.end(), bufferIdLessThan);
98     _configActive->initSetBufferList(bufferIdsFromConfig);
99   }
100   ui.activeBuffers->setFilteredModel(Client::bufferModel(), _configActive);
101
102   qSort(allBufferIds.begin(), allBufferIds.end(), bufferIdLessThan);
103   _configAvailable->initSetBufferList(allBufferIds);
104   ui.availableBuffers->setFilteredModel(Client::bufferModel(), _configAvailable);
105
106   setChangedState(false);
107 }
108
109 void ChatMonitorSettingsPage::loadSettings() {
110   ChatViewSettings chatViewSettings("ChatMonitor");
111   settings["OperationMode"] = static_cast<ChatViewSettings::OperationMode>(chatViewSettings.value("OperationMode", QVariant()).toInt());
112
113   // Load default behavior if no or invalid settings found
114   if(settings["OperationMode"] == ChatViewSettings::InvalidMode) {
115     switchOperationMode(ui.operationMode->findData(ChatViewSettings::OptOut));
116     settings["OperationMode"] == ChatViewSettings::OptOut;
117   }
118   settings["ShowHighlights"] = chatViewSettings.value("ShowHighlights", false);
119   settings["Buffers"] = chatViewSettings.value("Buffers", QVariantList());
120 }
121
122 void ChatMonitorSettingsPage::save() {
123   ChatViewSettings chatViewSettings("ChatMonitor");
124   // save operation mode
125   chatViewSettings.setValue("OperationMode", settings["OperationMode"]);
126   chatViewSettings.setValue("ShowHighlights", settings["ShowHighlights"]);
127
128   // save list of active buffers
129   QVariantList saveableBufferIdList;
130   foreach(BufferId id, _configActive->bufferList()) {
131     saveableBufferIdList << QVariant::fromValue<BufferId>(id);
132   }
133
134   chatViewSettings.setValue("Buffers", saveableBufferIdList);
135   load();
136   setChangedState(false);
137 }
138
139 void ChatMonitorSettingsPage::widgetHasChanged() {
140   bool changed = testHasChanged();
141   if(changed != hasChanged()) setChangedState(changed);
142 }
143
144 bool ChatMonitorSettingsPage::testHasChanged() {
145   if (_configAvailable != _configActive) return true;
146   return false;
147 }
148
149 //TODO: - support drag 'n drop
150 //      - adding of complete networks(?)
151
152 /*
153   toggleBuffers takes each a bufferView and its config for "input" and "output".
154   Any selected item will be moved over from the input to the output bufferview.
155 */
156 void ChatMonitorSettingsPage::toggleBuffers(BufferView *inView, BufferViewConfig *inCfg, BufferView *outView, BufferViewConfig *outCfg) {
157
158   // Fill QMap with selected items ordered by selection row
159   QMap<int, QList<BufferId> > selectedBuffers;
160   foreach(QModelIndex index, inView->selectionModel()->selectedIndexes()) {
161     BufferId inBufferId = index.data(NetworkModel::BufferIdRole).value<BufferId>();
162     if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType) {
163       // TODO:
164       //  If item is a network: move over all children and skip other selected items of this node
165     }
166     else if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::BufferItemType) {
167       selectedBuffers[index.parent().row()] << inBufferId;
168     }
169   }
170
171   // clear selection to be able to remove the bufferIds without errors
172   inView->selectionModel()->clearSelection();
173
174   /*
175     Invalidate the BufferViewFilters' configs to get constant add/remove times
176     even for huge lists.
177     This can probably be removed whenever BufferViewConfig::bulkAdd or something
178     like that is available.
179   */
180   qobject_cast<BufferViewFilter *>(outView->model())->setConfig(0);
181   qobject_cast<BufferViewFilter *>(inView->model())->setConfig(0);
182
183   // actually move the ids
184   foreach (QList<BufferId> list, selectedBuffers) {
185     foreach (BufferId buffer, list) {
186       outCfg->addBuffer(buffer,0);
187       inCfg->removeBuffer(buffer);
188     }
189   }
190
191   outView->setFilteredModel(Client::bufferModel(), outCfg);
192   inView->setFilteredModel(Client::bufferModel(), inCfg);
193
194   widgetHasChanged();
195 }
196
197 void ChatMonitorSettingsPage::on_activateBuffer_clicked() {
198   if (ui.availableBuffers->currentIndex().isValid() && ui.availableBuffers->selectionModel()->hasSelection()) {
199     toggleBuffers(ui.availableBuffers, _configAvailable, ui.activeBuffers, _configActive);
200     widgetHasChanged();
201   }
202 }
203
204 void ChatMonitorSettingsPage::on_deactivateBuffer_clicked() {
205   if (ui.activeBuffers->currentIndex().isValid() && ui.activeBuffers->selectionModel()->hasSelection()) {
206     toggleBuffers(ui.activeBuffers, _configActive, ui.availableBuffers, _configAvailable);
207     widgetHasChanged();
208   }
209 }
210
211 void ChatMonitorSettingsPage::on_showHighlights_toggled(bool state)
212 {
213   settings["ShowHighlights"] = state;
214   widgetHasChanged();
215 }
216
217 /*
218   switchOperationMode gets called on combobox signal currentIndexChanged.
219   modeIndex is the row id in combobox itemlist
220 */
221 void ChatMonitorSettingsPage::switchOperationMode(int modeIndex) {
222   ChatViewSettings::OperationMode newMode = static_cast<ChatViewSettings::OperationMode>(ui.operationMode->itemData(modeIndex).toInt());
223
224   if(newMode == ChatViewSettings::OptIn) {
225     ui.labelActiveBuffers->setText(tr("Show:"));
226   }
227   else if(newMode == ChatViewSettings::OptOut) {
228     ui.labelActiveBuffers->setText(tr("Ignore:"));
229   }
230
231   if(settings["OperationMode"] != newMode) {
232     setChangedState(true);
233   }
234   settings["OperationMode"] = newMode;
235 }