QML NetworkInfo ElementThe NetworkInfo element allows you to get information and receive notifications from the network. More... Properties
Signals
Methods
Detailed DescriptionThis element is part of the QtMobility.systeminfo 1.1 module. It is a convience class to make QML usage easier. Note: To use notification signals, you need to use the start* slots. To use this in a mode other than the default mode given by currentMode, set the mode with useMode. import Qt 4.7 import QtMobility.systeminfo 1.0 Rectangle { NetworkInfo { id: wlaninfo useMode: NetworkInfo.WlanMode; } Component.onCompleted: { wlaninfo.startNameChanged(); wlaninfo.startSignalStrengthChanged(); } Text { id: signame color: "white" text: wlaninfo.networkName +" "+wlaninfo.networkSignalStrength; anchors.horizontalCenter: parent.horizontalCenter; anchors.verticalCenter: parent.verticalCenter; } } See also QSystemNetworkInfo. Property DocumentationReturns this NetworkInfo's network interface's MAC address. Returns this NetworkInfo's network name. Returns this NetworkInfo's network signal strength. Returns this NetworkInfo's network status. Sets this NetworkInfo to use QSystemNetworkInfo::NetworkModes. Does not set the mode of the underlaying system. If not set, the default is whatever defaultMode is. Signal DocumentationThis handler is called when network MCC has changed. Note: To receive this notification, you must first call startCurrentMobileCountryCodeChanged. This handler is called when network MNC has changed. Note: To receive this notification, you must first call startCurrentMobileNetworkCodeChanged. This handler is called when the systems default network mode has changed. Note: To receive this notification, you must first call startModeChanged. This handler is called when network name has changed. Note: To receive this notification, you must first call startNameChanged. This handler is called when network signal strength has changed. Note: To receive this notification, you must first call startSignalStrengthChanged. This handler is called when network status has changed. Note: To receive this notification, you must first call startStatusChanged. Method DocumentationThis function is needed to start currentMobileCountryCodeChanged notification. This function is needed to start currentMobileNetworkCodeChanged notification. Returns the QNetworkInterface for this NetworkInfo. This function returns the mode set by useMode(QSystemNetworkInfo::NetworkMode mode); This function is needed to start modeChanged notification. This function is needed to start signalStrengthChanged notification. This function is needed to start statusChanged notification
© 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy X
|