src: Yearly copyright bump
[quassel.git] / src / qtui / settingspages / coreconnectionsettingspage.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "coreconnectionsettingspage.h"
22
23 CoreConnectionSettingsPage::CoreConnectionSettingsPage(QWidget *parent)
24     : SettingsPage(tr("Remote Cores"), tr("Connection"), parent)
25 {
26     ui.setupUi(this);
27
28     initAutoWidgets();
29
30     connect(ui.useQNetworkConfigurationManager, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
31     connect(ui.usePingTimeout, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
32     connect(ui.useNoTimeout, SIGNAL(toggled(bool)), SLOT(widgetHasChanged()));
33 }
34
35
36 void CoreConnectionSettingsPage::widgetHasChanged()
37 {
38     bool hasChanged = false;
39     CoreConnectionSettings::NetworkDetectionMode mode = modeFromRadioButtons();
40     if (mode != _detectionMode)
41         hasChanged = true;
42
43     setChangedState(hasChanged);
44 }
45
46
47 void CoreConnectionSettingsPage::defaults()
48 {
49     setRadioButtons(CoreConnectionSettings::UseQNetworkConfigurationManager);
50
51     SettingsPage::defaults();
52 }
53
54
55 void CoreConnectionSettingsPage::load()
56 {
57     CoreConnectionSettings s;
58     _detectionMode = s.networkDetectionMode();
59     setRadioButtons(_detectionMode);
60     SettingsPage::load();
61 }
62
63
64 void CoreConnectionSettingsPage::save()
65 {
66     _detectionMode = modeFromRadioButtons();
67     CoreConnectionSettings s;
68     s.setNetworkDetectionMode(_detectionMode);
69     SettingsPage::save();
70 }
71
72
73 void CoreConnectionSettingsPage::setRadioButtons(CoreConnectionSettings::NetworkDetectionMode mode)
74 {
75     switch (mode) {
76     case CoreConnectionSettings::UseQNetworkConfigurationManager:
77         ui.useQNetworkConfigurationManager->setChecked(true);
78         break;
79     case CoreConnectionSettings::UsePingTimeout:
80         ui.usePingTimeout->setChecked(true);
81         break;
82     default:
83         ui.useNoTimeout->setChecked(true);
84     }
85 }
86
87
88 CoreConnectionSettings::NetworkDetectionMode CoreConnectionSettingsPage::modeFromRadioButtons() const
89 {
90     if (ui.useQNetworkConfigurationManager->isChecked())
91         return CoreConnectionSettings::UseQNetworkConfigurationManager;
92     if (ui.usePingTimeout->isChecked())
93         return CoreConnectionSettings::UsePingTimeout;
94
95     return CoreConnectionSettings::NoActiveDetection;
96 }