summaryrefslogtreecommitdiffstats
path: root/src/imports/wifi/qwifinetwork.h
diff options
context:
space:
mode:
authorKalle Viironen <kalle.viironen@digia.com>2014-04-15 15:16:02 +0300
committerKalle Viironen <kalle.viironen@digia.com>2014-04-15 15:16:16 +0300
commit9627172876cd2a387d44b5a9a6ce0a3867ebc730 (patch)
treeea7b4382c6390ece7e9588e7e71ad7357b13b338 /src/imports/wifi/qwifinetwork.h
parent436af494659d416cfbd531b8d3ba9fc49e2fa710 (diff)
parentf9da7d90608cb4ce511770f5da8ef666e8a3e1b0 (diff)
Merge branch 'stable' into releaseQtEE_v2.1.0
* stable: Doc: Add ChangeLog for Qt Enterprise Embedded 2.1.0 Doc: Disable code highlighting for command-line instructions doc: update version number to 2.1.0 [Wifi] Add new enums and make some API changes Doc: Add documentation on custom build & deploy steps Doc: Create QML Type reference page Doc: Add information about licenses in embedded Linux images Doc: Improve instructions for deploying existing projects Doc: Separate Building Your Own Linux Image into its own page doc: use same directory for yocto and qt doc: config.<MACHINE> needed only once doc: guide for imx53 and how to setup QtCreator Doc: Be more precise on screen content for Nexus7 Add documentation to QtWifi library Doc: Add note for users to not use root for installation doc: describe how to use network connection for adb Rename misleading class name Remove unnecessary roles from QWifiNetworkList Document C++11 usage doc: how to use rebuilt yocto images and BYOS Change-Id: If51af9f476d05e7d147d93670d36ca1b99e03d8c
Diffstat (limited to 'src/imports/wifi/qwifinetwork.h')
-rw-r--r--src/imports/wifi/qwifinetwork.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/imports/wifi/qwifinetwork.h b/src/imports/wifi/qwifinetwork.h
index 780fc87..5ecc6a3 100644
--- a/src/imports/wifi/qwifinetwork.h
+++ b/src/imports/wifi/qwifinetwork.h
@@ -22,8 +22,6 @@
#include <QtCore/QByteArray>
#include <QtCore/QObject>
-class QWifiManager;
-
class QWifiNetwork : public QObject
{
Q_OBJECT
@@ -48,6 +46,9 @@ public:
int signalStrength() const { return m_signalStrength; }
void setSignalStrength(int strength);
+ void setOutOfRange(bool outOfRange);
+ bool outOfRange() { return m_outOfRange; }
+
QByteArray flags() const { return m_flags; }
void setFlags(const QByteArray &f) { m_flags = f; }
bool supportsWPA2() const { return m_flags.contains("WPA2"); }
@@ -56,7 +57,7 @@ public:
bool supportsWPS() const { return m_flags.contains("WPS"); }
signals:
- void signalStrengthChanged(int arg);
+ void signalStrengthChanged(int strength);
private:
QByteArray m_bssid;
@@ -64,6 +65,7 @@ private:
int m_signalStrength;
QByteArray m_flags;
+ bool m_outOfRange;
};
#endif // QWIFINETWORK_H