Introduce CoreConnectionSettings and a settingspage for configuring it
[quassel.git] / src / qtui / settingspages / coreconnectionsettingspage.cpp
diff --git a/src/qtui/settingspages/coreconnectionsettingspage.cpp b/src/qtui/settingspages/coreconnectionsettingspage.cpp
new file mode 100644 (file)
index 0000000..c3b7805
--- /dev/null
@@ -0,0 +1,94 @@
+/***************************************************************************
+ *   Copyright (C) 2009 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.                                   *
+ *                                                                         *
+ *   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 General Public License for more details.                          *
+ *                                                                         *
+ *   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.             *
+ ***************************************************************************/
+
+#include "coreconnectionsettingspage.h"
+
+CoreConnectionSettingsPage::CoreConnectionSettingsPage(QWidget *parent)
+  : SettingsPage(tr("Remote Cores"), tr("Connection"), parent) {
+  ui.setupUi(this);
+#ifndef HAVE_KDE
+  ui.useSolid->hide();
+#endif
+
+  initAutoWidgets();
+
+  connect(ui.useSolid, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
+  connect(ui.usePingTimeout, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
+  connect(ui.useNoTimeout, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
+}
+
+void CoreConnectionSettingsPage::widgetHasChanged() {
+  bool hasChanged = false;
+  CoreConnectionSettings::NetworkDetectionMode mode = modeFromRadioButtons();
+  if(mode != _detectionMode)
+    hasChanged = true;
+
+  setChangedState(hasChanged);
+}
+
+void CoreConnectionSettingsPage::defaults() {
+#ifdef HAVE_KDE
+  setRadioButtons(CoreConnectionSettings::UseSolid);
+#else
+  setRadioButtons(CoreConnectionSettings::UsePingTimeout);
+#endif
+
+  SettingsPage::defaults();
+}
+
+void CoreConnectionSettingsPage::load() {
+  CoreConnectionSettings s;
+  _detectionMode = s.networkDetectionMode();
+  setRadioButtons(_detectionMode);
+  SettingsPage::load();
+}
+
+void CoreConnectionSettingsPage::save() {
+  _detectionMode = modeFromRadioButtons();
+  CoreConnectionSettings s;
+  s.setNetworkDetectionMode(_detectionMode);
+  SettingsPage::save();
+}
+
+void CoreConnectionSettingsPage::setRadioButtons(CoreConnectionSettings::NetworkDetectionMode mode) {
+  switch(mode) {
+#ifdef HAVE_KDE
+  case CoreConnectionSettings::UseSolid:
+    ui.useSolid->setChecked(true);
+    break;
+#endif
+  case CoreConnectionSettings::UsePingTimeout:
+    ui.usePingTimeout->setChecked(true);
+    break;
+  default:
+    ui.useNoTimeout->setChecked(true);
+  }
+}
+
+CoreConnectionSettings::NetworkDetectionMode CoreConnectionSettingsPage::modeFromRadioButtons() const {
+#ifdef HAVE_KDE
+  if(ui.useSolid->isChecked())
+    return CoreConnectionSettings::UseSolid;
+#endif
+  if(ui.usePingTimeout->isChecked())
+    return CoreConnectionSettings::UsePingTimeout;
+
+  return CoreConnectionSettings::NoActiveDetection;
+}