summaryrefslogtreecommitdiffstats
path: root/src/wifi/qwifinetwork.cpp
blob: 937cbfc584ac31c545718d53703e5a14ca44a4f2 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/****************************************************************************
**
** Copyright (C) 2014 Digia Plc
** All rights reserved.
** For any questions to Digia, please use the contact form at
** http://www.qt.io
**
** This file is part of Qt Enterprise Embedded.
**
** Licensees holding valid Qt Enterprise licenses may use this file in
** accordance with the Qt Enterprise License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia.
**
** If you have questions regarding the use of this file, please use
** the contact form at http://www.qt.io
**
****************************************************************************/
#include "qwifinetwork_p.h"

QT_BEGIN_NAMESPACE

/*!
    \qmltype WifiNetwork
    \inqmlmodule QtWifi
    \ingroup wifi-qmltypes
    \brief Represents a single WiFi network access point.

    WifiNetwork provides a various information about WiFi network, like network
    name, siganl strength and supported security protocols. Instances of WifiNetwork cannot
    be created directly from the QML system, see WifiManager::networks.
*/

/*!
    \qmlproperty string WifiNetwork::bssid
    \readonly

    This property holds basic service set identification of a network, used to uniquely
    identify BSS.

*/

/*!
    \qmlproperty string WifiNetwork::ssid
    \readonly

    This property holds a network name. The SSID is the informal (human) name of BSS.
*/

/*!
    \qmlproperty int WifiNetwork::signalStrength
    \readonly

    This property holds the current strength of a WiFi signal, measured in dBm. New readings are
    taken every 5 seconds.

    \sa signalStrengthChanged
*/

/*!
    \qmlproperty bool WifiNetwork::supportsWPA
    \readonly

    This property holds whether network access point supports WPA security protocol.
*/

/*!
    \qmlproperty bool WifiNetwork::supportsWPA2
    \readonly

    This property holds whether network access point supports WPA2 security protocol.
*/

/*!
    \qmlproperty bool WifiNetwork::supportsWEP
    \readonly

    This property holds whether network access point supports WEP security protocol.
*/

/*!
    \qmlproperty bool WifiNetwork::supportsWPS
    \readonly

    This property holds whether network access point supports WPS security protocol.
*/

/*!
    \qmlsignal void WifiNetwork::signalStrengthChanged(int strength)

    This signal is emitted whenever signal strength has changed comparing the the
    previous reading, the new signal's strength is \a strength.

*/

QWifiNetwork::QWifiNetwork(QObject *parent)
    : QObject(parent)
    , m_isOutOfRange(false)
{
}

QWifiNetwork::~QWifiNetwork()
{
}

void QWifiNetwork::setSsid(const QString &ssid)
{
    m_ssid = ssid;
}

void QWifiNetwork::setSignalStrength(int strength)
{
    m_signalStrength = strength;
}

void QWifiNetwork::setOutOfRange(bool outOfRange)
{
    m_isOutOfRange = outOfRange;
}

QT_END_NAMESPACE