X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fchatmonitorsettingspage.cpp;h=8a8faf7ca2b9816fda65da9490246233b1d66c8f;hp=0170e870d7d38427342c7b238b069f0d85431f42;hb=52209badc8e769e50aa3019b63689dda0e79e9d0;hpb=b36066bf47b54a48c56ccc46830b74ce64ccf4a7 diff --git a/src/qtui/settingspages/chatmonitorsettingspage.cpp b/src/qtui/settingspages/chatmonitorsettingspage.cpp index 0170e870..8a8faf7c 100644 --- a/src/qtui/settingspages/chatmonitorsettingspage.cpp +++ b/src/qtui/settingspages/chatmonitorsettingspage.cpp @@ -1,242 +1,281 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU Blank Public License as published by * + * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU Blank Public License for more details. * + * GNU General Public License for more details. * * * - * You should have received a copy of the GNU Blank Public License * + * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "chatmonitorsettingspage.h" -#include "client.h" -#include "networkmodel.h" -#include "bufferviewconfig.h" +#include + #include "buffermodel.h" #include "bufferview.h" +#include "bufferviewconfig.h" #include "bufferviewfilter.h" -#include "iconloader.h" #include "chatviewsettings.h" - -#include - -ChatMonitorSettingsPage::ChatMonitorSettingsPage(QWidget *parent) - : SettingsPage(tr("General"), tr("Chat Monitor"), parent) { - ui.setupUi(this); - - ui.activateBuffer->setIcon(SmallIcon("go-next")); - ui.deactivateBuffer->setIcon(SmallIcon("go-previous")); - - // setup available buffers config (for the bufferview on the left) - _configAvailable = new BufferViewConfig(-667, this); - _configAvailable->setBufferViewName("tmpChatMonitorAvailableBuffers"); - _configAvailable->setSortAlphabetically(true); - _configAvailable->setDisableDecoration(true); - _configAvailable->setNetworkId(NetworkId()); - _configAvailable->setInitialized(); - - // setup active buffers config (for the bufferview on the right) - _configActive = new BufferViewConfig(-666, this); - _configActive->setBufferViewName("tmpChatMonitorActiveBuffers"); - _configActive->setSortAlphabetically(true); - _configActive->setDisableDecoration(true); - _configActive->setNetworkId(NetworkId()); - _configActive->setInitialized(); - - // fill combobox with operation modes - ui.operationMode->addItem(tr("Opt In"), ChatViewSettings::OptIn); - ui.operationMode->addItem(tr("Opt Out"), ChatViewSettings::OptOut); - - // connect slots - connect(ui.operationMode, SIGNAL(currentIndexChanged(int)), SLOT(switchOperationMode(int))); - connect(ui.showHighlights, SIGNAL(toggled(bool)), SLOT(widgetHasChanged())); - connect(ui.showOwnMessages, SIGNAL(toggled(bool)), SLOT(widgetHasChanged())); +#include "client.h" +#include "icon.h" +#include "networkmodel.h" +#include "util.h" + +ChatMonitorSettingsPage::ChatMonitorSettingsPage(QWidget* parent) + : SettingsPage(tr("Interface"), tr("Chat Monitor"), parent) +{ + ui.setupUi(this); + + ui.activateBuffer->setIcon(icon::get("go-next")); + ui.deactivateBuffer->setIcon(icon::get("go-previous")); + + // setup available buffers config (for the bufferview on the left) + _configAvailable = new BufferViewConfig(-667, this); + _configAvailable->setBufferViewName("tmpChatMonitorAvailableBuffers"); + _configAvailable->setSortAlphabetically(true); + _configAvailable->setDisableDecoration(true); + _configAvailable->setNetworkId(NetworkId()); + _configAvailable->setInitialized(); + + // setup active buffers config (for the bufferview on the right) + _configActive = new BufferViewConfig(-666, this); + _configActive->setBufferViewName("tmpChatMonitorActiveBuffers"); + _configActive->setSortAlphabetically(true); + _configActive->setDisableDecoration(true); + _configActive->setNetworkId(NetworkId()); + _configActive->setInitialized(); + + // fill combobox with operation modes + ui.operationMode->addItem(tr("Opt In"), ChatViewSettings::OptIn); + ui.operationMode->addItem(tr("Opt Out"), ChatViewSettings::OptOut); + + // connect slots + connect(ui.operationMode, selectOverload(&QComboBox::currentIndexChanged), this, &ChatMonitorSettingsPage::switchOperationMode); + connect(ui.showHighlights, &QAbstractButton::toggled, this, &ChatMonitorSettingsPage::widgetHasChanged); + connect(ui.showOwnMessages, &QAbstractButton::toggled, this, &ChatMonitorSettingsPage::widgetHasChanged); + connect(ui.alwaysOwn, &QAbstractButton::toggled, this, &ChatMonitorSettingsPage::widgetHasChanged); + connect(ui.showBacklog, &QAbstractButton::toggled, this, &ChatMonitorSettingsPage::widgetHasChanged); + connect(ui.includeRead, &QAbstractButton::toggled, this, &ChatMonitorSettingsPage::widgetHasChanged); } -bool ChatMonitorSettingsPage::hasDefaults() const { - return true; +bool ChatMonitorSettingsPage::hasDefaults() const +{ + return true; } -void ChatMonitorSettingsPage::defaults() { - settings["OperationMode"] = ChatViewSettings::OptOut; - settings["ShowHighlights"] = false; - settings["ShowOwnMsgs"] = false; - settings["Buffers"] = QVariant(); - settings["Default"] = true; - load(); - widgetHasChanged(); +void ChatMonitorSettingsPage::defaults() +{ + // NOTE: Whenever changing defaults here, also update ChatMonitorFilter::ChatMonitorFilter() + // and ChatMonitorSettingsPage::loadSettings() to match + + settings["OperationMode"] = ChatViewSettings::OptOut; + settings["ShowHighlights"] = false; + settings["ShowOwnMsgs"] = true; + settings["AlwaysOwn"] = false; + settings["Buffers"] = QVariant(); + settings["Default"] = true; + settings["ShowBacklog"] = true; + settings["IncludeRead"] = false; + load(); + widgetHasChanged(); } -void ChatMonitorSettingsPage::load() { - if(settings.contains("Default")) - settings.remove("Default"); - else - loadSettings(); - - switchOperationMode(settings["OperationMode"].toInt() - 1); - ui.operationMode->setCurrentIndex(settings["OperationMode"].toInt() - 1); - ui.showHighlights->setChecked(settings["ShowHighlights"].toBool()); - ui.showOwnMessages->setChecked(settings["ShowOwnMsgs"].toBool()); - - // get all available buffer Ids - QList allBufferIds = Client::networkModel()->allBufferIds(); - - if(!settings["Buffers"].toList().isEmpty()) { - QList bufferIdsFromConfig; - // remove all active buffers from the available config - foreach(QVariant v, settings["Buffers"].toList()) { - bufferIdsFromConfig << v.value(); - allBufferIds.removeAll(v.value()); +void ChatMonitorSettingsPage::load() +{ + if (settings.contains("Default")) + settings.remove("Default"); + else + loadSettings(); + + switchOperationMode(settings["OperationMode"].toInt() - 1); + ui.operationMode->setCurrentIndex(settings["OperationMode"].toInt() - 1); + ui.showHighlights->setChecked(settings["ShowHighlights"].toBool()); + ui.showOwnMessages->setChecked(settings["ShowOwnMsgs"].toBool()); + ui.alwaysOwn->setChecked(settings["AlwaysOwn"].toBool()); + ui.showBacklog->setChecked(settings["ShowBacklog"].toBool()); + ui.includeRead->setChecked(settings["IncludeRead"].toBool()); + + // get all available buffer Ids + QList allBufferIds = Client::networkModel()->allBufferIds(); + + if (!settings["Buffers"].toList().isEmpty()) { + QList bufferIdsFromConfig; + // remove all active buffers from the available config + foreach (QVariant v, settings["Buffers"].toList()) { + bufferIdsFromConfig << v.value(); + allBufferIds.removeAll(v.value()); + } + Client::networkModel()->sortBufferIds(bufferIdsFromConfig); + _configActive->setBufferList(bufferIdsFromConfig); } - qSort(bufferIdsFromConfig.begin(), bufferIdsFromConfig.end(), bufferIdLessThan); - _configActive->initSetBufferList(bufferIdsFromConfig); - } - ui.activeBuffers->setFilteredModel(Client::bufferModel(), _configActive); + ui.activeBuffers->setFilteredModel(Client::bufferModel(), _configActive); - qSort(allBufferIds.begin(), allBufferIds.end(), bufferIdLessThan); - _configAvailable->initSetBufferList(allBufferIds); - ui.availableBuffers->setFilteredModel(Client::bufferModel(), _configAvailable); + Client::networkModel()->sortBufferIds(allBufferIds); + _configAvailable->setBufferList(allBufferIds); + ui.availableBuffers->setFilteredModel(Client::bufferModel(), _configAvailable); - setChangedState(false); + setChangedState(false); } -void ChatMonitorSettingsPage::loadSettings() { - ChatViewSettings chatViewSettings("ChatMonitor"); - settings["OperationMode"] = (ChatViewSettings::OperationMode)chatViewSettings.value("OperationMode", ChatViewSettings::OptOut).toInt(); - - settings["ShowHighlights"] = chatViewSettings.value("ShowHighlights", false); - settings["ShowOwnMsgs"] = chatViewSettings.value("ShowOwnMsgs", false); - settings["Buffers"] = chatViewSettings.value("Buffers", QVariantList()); +void ChatMonitorSettingsPage::loadSettings() +{ + // NOTE: Whenever changing defaults here, also update ChatMonitorFilter::ChatMonitorFilter() + // and ChatMonitorSettingsPage::defaults() to match + ChatViewSettings chatViewSettings("ChatMonitor"); + + settings["OperationMode"] = (ChatViewSettings::OperationMode)chatViewSettings.value("OperationMode", ChatViewSettings::OptOut).toInt(); + settings["ShowHighlights"] = chatViewSettings.value("ShowHighlights", false); + settings["ShowOwnMsgs"] = chatViewSettings.value("ShowOwnMsgs", true); + settings["AlwaysOwn"] = chatViewSettings.value("AlwaysOwn", false); + settings["Buffers"] = chatViewSettings.value("Buffers", QVariantList()); + settings["ShowBacklog"] = chatViewSettings.value("ShowBacklog", true); + settings["IncludeRead"] = chatViewSettings.value("IncludeRead", false); } -void ChatMonitorSettingsPage::save() { - ChatViewSettings chatViewSettings("ChatMonitor"); - // save operation mode - chatViewSettings.setValue("OperationMode", ui.operationMode->currentIndex() + 1); - chatViewSettings.setValue("ShowHighlights", ui.showHighlights->isChecked()); - chatViewSettings.setValue("ShowOwnMsgs", ui.showOwnMessages->isChecked()); - - // save list of active buffers - QVariantList saveableBufferIdList; - foreach(BufferId id, _configActive->bufferList()) { - saveableBufferIdList << QVariant::fromValue(id); - } - - chatViewSettings.setValue("Buffers", saveableBufferIdList); - load(); - setChangedState(false); -} +void ChatMonitorSettingsPage::save() +{ + ChatViewSettings chatViewSettings("ChatMonitor"); + // save operation mode + chatViewSettings.setValue("OperationMode", ui.operationMode->currentIndex() + 1); + chatViewSettings.setValue("ShowHighlights", ui.showHighlights->isChecked()); + chatViewSettings.setValue("ShowOwnMsgs", ui.showOwnMessages->isChecked()); + chatViewSettings.setValue("AlwaysOwn", ui.alwaysOwn->isChecked()); + chatViewSettings.setValue("ShowBacklog", ui.showBacklog->isChecked()); + chatViewSettings.setValue("IncludeRead", ui.includeRead->isChecked()); + + // save list of active buffers + QVariantList saveableBufferIdList; + foreach (BufferId id, _configActive->bufferList()) { + saveableBufferIdList << QVariant::fromValue(id); + } -void ChatMonitorSettingsPage::widgetHasChanged() { - bool changed = testHasChanged(); - if(changed != hasChanged()) setChangedState(changed); + chatViewSettings.setValue("Buffers", saveableBufferIdList); + load(); + setChangedState(false); } -bool ChatMonitorSettingsPage::testHasChanged() { - if(settings["OperationMode"].toInt() != ui.operationMode->currentIndex() + 1) - return true; - if(settings["ShowHighlights"].toBool() != ui.showHighlights->isChecked()) - return true; - if(settings["ShowOwnMsgs"].toBool() != ui.showOwnMessages->isChecked()) - return true; - - if(_configActive->bufferList().count() != settings["Buffers"].toList().count()) - return true; - - QSet uiBufs = _configActive->bufferList().toSet(); - QSet settingsBufs; - foreach(QVariant v, settings["Buffers"].toList()) - settingsBufs << v.value(); - if(uiBufs != settingsBufs) - return true; +void ChatMonitorSettingsPage::widgetHasChanged() +{ + bool changed = testHasChanged(); + if (changed != hasChanged()) + setChangedState(changed); +} - return false; +bool ChatMonitorSettingsPage::testHasChanged() +{ + if (settings["OperationMode"].toInt() != ui.operationMode->currentIndex() + 1) + return true; + if (settings["ShowHighlights"].toBool() != ui.showHighlights->isChecked()) + return true; + if (settings["ShowOwnMsgs"].toBool() != ui.showOwnMessages->isChecked()) + return true; + if (settings["AlwaysOwn"].toBool() != ui.alwaysOwn->isChecked()) + return true; + if (settings["ShowBacklog"].toBool() != ui.showBacklog->isChecked()) + return true; + if (settings["IncludeRead"].toBool() != ui.includeRead->isChecked()) + return true; + + if (_configActive->bufferList().count() != settings["Buffers"].toList().count()) + return true; + + QSet uiBufs = toQSet(_configActive->bufferList()); + QSet settingsBufs; + foreach (QVariant v, settings["Buffers"].toList()) + settingsBufs << v.value(); + if (uiBufs != settingsBufs) + return true; + + return false; } -//TODO: - support drag 'n drop +// TODO: - support drag 'n drop // - adding of complete networks(?) /* toggleBuffers takes each a bufferView and its config for "input" and "output". Any selected item will be moved over from the input to the output bufferview. */ -void ChatMonitorSettingsPage::toggleBuffers(BufferView *inView, BufferViewConfig *inCfg, BufferView *outView, BufferViewConfig *outCfg) { - - // Fill QMap with selected items ordered by selection row - QMap > selectedBuffers; - foreach(QModelIndex index, inView->selectionModel()->selectedIndexes()) { - BufferId inBufferId = index.data(NetworkModel::BufferIdRole).value(); - if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType) { - // TODO: - // If item is a network: move over all children and skip other selected items of this node +void ChatMonitorSettingsPage::toggleBuffers(BufferView* inView, BufferViewConfig* inCfg, BufferView* outView, BufferViewConfig* outCfg) +{ + // Fill QMap with selected items ordered by selection row + QMap> selectedBuffers; + foreach (QModelIndex index, inView->selectionModel()->selectedIndexes()) { + BufferId inBufferId = index.data(NetworkModel::BufferIdRole).value(); + if (index.data(NetworkModel::ItemTypeRole) == NetworkModel::NetworkItemType) { + // TODO: + // If item is a network: move over all children and skip other selected items of this node + } + else if (index.data(NetworkModel::ItemTypeRole) == NetworkModel::BufferItemType) { + selectedBuffers[index.parent().row()] << inBufferId; + } } - else if(index.data(NetworkModel::ItemTypeRole) == NetworkModel::BufferItemType) { - selectedBuffers[index.parent().row()] << inBufferId; - } - } - - // clear selection to be able to remove the bufferIds without errors - inView->selectionModel()->clearSelection(); - - /* - Invalidate the BufferViewFilters' configs to get constant add/remove times - even for huge lists. - This can probably be removed whenever BufferViewConfig::bulkAdd or something - like that is available. - */ - qobject_cast(outView->model())->setConfig(0); - qobject_cast(inView->model())->setConfig(0); - - // actually move the ids - foreach (QList list, selectedBuffers) { - foreach (BufferId buffer, list) { - outCfg->addBuffer(buffer,0); - inCfg->removeBuffer(buffer); + + // clear selection to be able to remove the bufferIds without errors + inView->selectionModel()->clearSelection(); + + /* + Invalidate the BufferViewFilters' configs to get constant add/remove times + even for huge lists. + This can probably be removed whenever BufferViewConfig::bulkAdd or something + like that is available. + */ + qobject_cast(outView->model())->setConfig(nullptr); + qobject_cast(inView->model())->setConfig(nullptr); + + // actually move the ids + foreach (QList list, selectedBuffers) { + foreach (BufferId buffer, list) { + outCfg->addBuffer(buffer, 0); + inCfg->removeBuffer(buffer); + } } - } - outView->setFilteredModel(Client::bufferModel(), outCfg); - inView->setFilteredModel(Client::bufferModel(), inCfg); + outView->setFilteredModel(Client::bufferModel(), outCfg); + inView->setFilteredModel(Client::bufferModel(), inCfg); - widgetHasChanged(); + widgetHasChanged(); } -void ChatMonitorSettingsPage::on_activateBuffer_clicked() { - if (ui.availableBuffers->currentIndex().isValid() && ui.availableBuffers->selectionModel()->hasSelection()) { - toggleBuffers(ui.availableBuffers, _configAvailable, ui.activeBuffers, _configActive); - widgetHasChanged(); - } +void ChatMonitorSettingsPage::on_activateBuffer_clicked() +{ + if (ui.availableBuffers->currentIndex().isValid() && ui.availableBuffers->selectionModel()->hasSelection()) { + toggleBuffers(ui.availableBuffers, _configAvailable, ui.activeBuffers, _configActive); + widgetHasChanged(); + } } -void ChatMonitorSettingsPage::on_deactivateBuffer_clicked() { - if (ui.activeBuffers->currentIndex().isValid() && ui.activeBuffers->selectionModel()->hasSelection()) { - toggleBuffers(ui.activeBuffers, _configActive, ui.availableBuffers, _configAvailable); - widgetHasChanged(); - } +void ChatMonitorSettingsPage::on_deactivateBuffer_clicked() +{ + if (ui.activeBuffers->currentIndex().isValid() && ui.activeBuffers->selectionModel()->hasSelection()) { + toggleBuffers(ui.activeBuffers, _configActive, ui.availableBuffers, _configAvailable); + widgetHasChanged(); + } } /* switchOperationMode gets called on combobox signal currentIndexChanged. modeIndex is the row id in combobox itemlist */ -void ChatMonitorSettingsPage::switchOperationMode(int idx) { - ChatViewSettings::OperationMode mode = (ChatViewSettings::OperationMode)(idx + 1); - if(mode == ChatViewSettings::OptIn) { - ui.labelActiveBuffers->setText(tr("Show:")); - } - else if(mode == ChatViewSettings::OptOut) { - ui.labelActiveBuffers->setText(tr("Ignore:")); - } - widgetHasChanged(); +void ChatMonitorSettingsPage::switchOperationMode(int idx) +{ + auto mode = (ChatViewSettings::OperationMode)(idx + 1); + if (mode == ChatViewSettings::OptIn) { + ui.labelActiveBuffers->setText(tr("Show:")); + } + else if (mode == ChatViewSettings::OptOut) { + ui.labelActiveBuffers->setText(tr("Ignore:")); + } + widgetHasChanged(); }