X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsettingspages%2Fbacklogsettingspage.cpp;h=541fb558b95c8b10cc8a925c7569fae249b38df9;hp=035c8681174ee8580b7e1387e0d0b2219f84f5c5;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/qtui/settingspages/backlogsettingspage.cpp b/src/qtui/settingspages/backlogsettingspage.cpp index 035c8681..541fb558 100644 --- a/src/qtui/settingspages/backlogsettingspage.cpp +++ b/src/qtui/settingspages/backlogsettingspage.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2018 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 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 * @@ -15,50 +15,66 @@ * 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 "backlogsettingspage.h" -#include "qtui.h" #include "backlogsettings.h" +#include "backlogrequester.h" +#include "qtui.h" +#include "widgethelpers.h" BacklogSettingsPage::BacklogSettingsPage(QWidget *parent) - : SettingsPage(tr("Behaviour"), tr("Backlog"), parent) + : SettingsPage(tr("Interface"), tr("Backlog Fetching"), parent) { - ui.setupUi(this); - initAutoWidgets(); - // not an auto widget, because we store index + 1 - connect(ui.requesterType, SIGNAL(currentIndexChanged(int)), this, SLOT(widgetHasChanged())); + ui.setupUi(this); + initAutoWidgets(); + // not an auto widget, because we store index + 1 + + // FIXME: global backlog requester disabled until issues ruled out + ui.requesterType->removeItem(2); + + connectToWidgetChangedSignal(ui.requesterType, this, &BacklogSettingsPage::widgetHasChanged); } -bool BacklogSettingsPage::hasDefaults() const { - return true; + +bool BacklogSettingsPage::hasDefaults() const +{ + return true; } -void BacklogSettingsPage::defaults() { - ui.requesterType->setCurrentIndex(0); - SettingsPage::defaults(); +void BacklogSettingsPage::defaults() +{ + ui.requesterType->setCurrentIndex(BacklogRequester::PerBufferUnread - 1); + + SettingsPage::defaults(); } -void BacklogSettingsPage::load() { - BacklogSettings backlogSettings; - int index = backlogSettings.requesterType() - 1; - ui.requesterType->setProperty("storedValue", index); - ui.requesterType->setCurrentIndex(index); - SettingsPage::load(); +void BacklogSettingsPage::load() +{ + BacklogSettings backlogSettings; + int index = backlogSettings.requesterType() - 1; + ui.requesterType->setProperty("storedValue", index); + ui.requesterType->setCurrentIndex(index); + + SettingsPage::load(); } -void BacklogSettingsPage::save() { - BacklogSettings backlogSettings; - backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1); - ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex()); - SettingsPage::save(); +void BacklogSettingsPage::save() +{ + BacklogSettings backlogSettings; + backlogSettings.setRequesterType(ui.requesterType->currentIndex() + 1); + ui.requesterType->setProperty("storedValue", ui.requesterType->currentIndex()); + + SettingsPage::save(); } -void BacklogSettingsPage::widgetHasChanged() { - setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt()); + +void BacklogSettingsPage::widgetHasChanged() +{ + setChangedState(ui.requesterType->currentIndex() != ui.requesterType->property("storedValue").toInt()); }