blob: d14bce438a4990de8f22505935c895520c389ab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#include "wirednetworkmodel.h"
#include "connectionprofile.h"
#include <QDebug>
WiredNetworkModel::WiredNetworkModel(QObject *parent)
: AbstractNetworkModel(parent)
{
}
QVariant WiredNetworkModel::data(const QModelIndex &index, int role) const
{
if (index.row() < 0 || index.row() >= m_networks.count())
return QVariant();
const ConnectionProfile *network = m_networks[index.row()];
switch (role) {
case AddressRole:
return network->address();
case SecurityRole:
return network->security();
case ServiceRole:
return network->service();
case StateRole:
return network->state();
}
return QVariant();
}
QHash<int, QByteArray> WiredNetworkModel::roleNames() const {
QHash<int, QByteArray> roles;
roles[AddressRole] = "address";
roles[SecurityRole] = "security";
roles[ServiceRole] = "service";
roles[StateRole] = "sstate";
return roles;
}
void WiredNetworkModel::updateProperties(QString service, QJsonObject properties)
{
ConnectionProfile *network;
// FIXME: add role parameter to emits
if ((network = getNetwork(service))) {
if (properties.contains("ipv4")) {
QString address = properties.value("ipv4").toObject().value("address").toString();
network->setAddress(address);
emit dataChanged(indexOf(network), indexOf(network));
}
if (properties.contains("state")) {
network->setState(properties.value("state").toString());
emit dataChanged(indexOf(network), indexOf(network));
}
}
}
|