cmake: avoid de-duplication of user's CXXFLAGS
[quassel.git] / src / qtui / simplenetworkeditor.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 "simplenetworkeditor.h"
22
23 #include "icon.h"
24 #include "networkssettingspage.h"
25
26 SimpleNetworkEditor::SimpleNetworkEditor(QWidget* parent)
27     : QWidget(parent)
28 {
29     ui.setupUi(this);
30
31     ui.addServer->setIcon(icon::get("list-add"));
32     ui.deleteServer->setIcon(icon::get("edit-delete"));
33     ui.editServer->setIcon(icon::get("configure"));
34     ui.upServer->setIcon(icon::get("go-up"));
35     ui.downServer->setIcon(icon::get("go-down"));
36
37     connect(ui.networkNameEdit, &QLineEdit::textEdited, this, &SimpleNetworkEditor::widgetHasChanged);
38     connect(ui.channelList, &QTextEdit::textChanged, this, &SimpleNetworkEditor::widgetHasChanged);
39 }
40
41 void SimpleNetworkEditor::setWidgetStates()
42 {
43     if (ui.serverList->selectedItems().count()) {
44         ui.editServer->setEnabled(true);
45         ui.deleteServer->setEnabled(true);
46         ui.upServer->setEnabled(ui.serverList->currentRow() > 0);
47         ui.downServer->setEnabled(ui.serverList->currentRow() < ui.serverList->count() - 1);
48     }
49     else {
50         ui.editServer->setEnabled(false);
51         ui.deleteServer->setEnabled(false);
52         ui.upServer->setEnabled(false);
53         ui.downServer->setEnabled(false);
54     }
55 }
56
57 void SimpleNetworkEditor::displayNetworkInfo(const NetworkInfo& networkInfo)
58 {
59     _networkInfo = networkInfo;
60
61     ui.serverList->clear();
62     foreach (Network::Server server, _networkInfo.serverList) {
63         QListWidgetItem* item = new QListWidgetItem(QString("%1:%2").arg(server.host).arg(server.port));
64         if (server.useSsl)
65             item->setIcon(icon::get("document-encrypt"));
66         ui.serverList->addItem(item);
67     }
68
69     ui.networkNameEdit->setText(_networkInfo.networkName);
70     setWidgetStates();
71 }
72
73 void SimpleNetworkEditor::saveToNetworkInfo(NetworkInfo& networkInfo)
74 {
75     _networkInfo.networkName = ui.networkNameEdit->text();
76     networkInfo = _networkInfo;
77 }
78
79 QStringList SimpleNetworkEditor::defaultChannels() const
80 {
81     return ui.channelList->toPlainText().split("\n", QString::SkipEmptyParts);
82 }
83
84 void SimpleNetworkEditor::setDefaultChannels(const QStringList& channels)
85 {
86     ui.channelList->setPlainText(channels.join("\n"));
87 }
88
89 void SimpleNetworkEditor::on_serverList_itemSelectionChanged()
90 {
91     setWidgetStates();
92 }
93
94 void SimpleNetworkEditor::on_addServer_clicked()
95 {
96     ServerEditDlg dlg(Network::Server(), this);
97     if (dlg.exec() == QDialog::Accepted) {
98         _networkInfo.serverList.append(dlg.serverData());
99         displayNetworkInfo(_networkInfo);
100         ui.serverList->setCurrentRow(ui.serverList->count() - 1);
101         emit widgetHasChanged();
102     }
103 }
104
105 void SimpleNetworkEditor::on_editServer_clicked()
106 {
107     int cur = ui.serverList->currentRow();
108     ServerEditDlg dlg(_networkInfo.serverList[cur], this);
109     if (dlg.exec() == QDialog::Accepted) {
110         _networkInfo.serverList[cur] = dlg.serverData();
111         displayNetworkInfo(_networkInfo);
112         ui.serverList->setCurrentRow(cur);
113         emit widgetHasChanged();
114     }
115 }
116
117 void SimpleNetworkEditor::on_deleteServer_clicked()
118 {
119     int cur = ui.serverList->currentRow();
120     _networkInfo.serverList.removeAt(cur);
121     displayNetworkInfo(_networkInfo);
122     ui.serverList->setCurrentRow(qMin(cur, ui.serverList->count() - 1));
123     emit widgetHasChanged();
124 }
125
126 void SimpleNetworkEditor::on_upServer_clicked()
127 {
128     int cur = ui.serverList->currentRow();
129     Network::Server server = _networkInfo.serverList.takeAt(cur);
130     _networkInfo.serverList.insert(cur - 1, server);
131     displayNetworkInfo(_networkInfo);
132     ui.serverList->setCurrentRow(cur - 1);
133     emit widgetHasChanged();
134 }
135
136 void SimpleNetworkEditor::on_downServer_clicked()
137 {
138     int cur = ui.serverList->currentRow();
139     Network::Server server = _networkInfo.serverList.takeAt(cur);
140     _networkInfo.serverList.insert(cur + 1, server);
141     displayNetworkInfo(_networkInfo);
142     ui.serverList->setCurrentRow(cur + 1);
143     emit widgetHasChanged();
144 }