Home · All Namespaces · All Classes · Grouped Classes · Modules · Functions |
The QNetworkConnectionManager class allows applications to receive notifications when network connections are added and/or removed from Qtopia. More...
#include <QNetworkConnectionManager>
Inherits QObject.
The QNetworkConnectionManager class allows applications to receive notifications when network connections are added and/or removed from Qtopia.
The QNetworkConnectionManager acts as a factory for new QNetworkConnection::Identity object. These object can then be used to construct QNetworkConnection objects.
The connectionAdded() and connectionRemoved() signals are emitted when the user adds or removes network connections. New connections are usually added by configuring new network interfaces or adding access point parameter to an already existing WLAN device.
QNetworkConnectionManager* manager = new QNetworkConnectionManager(); connect( manager, SIGNAL(connectionAdded()), this, SLOT(newConnection()) );
See also QNetworkConnection.
Constructs a new QNetworkConnectionManager with the specified parent.
Destroys the QNetworkConnectionManager instance.
Emitted whenever a new network connection is added to Qtopia. The most likely reason for a new connection is a new network configuration created by the user.
Emitted whenever an existing network connection was removed. This is usually caused by the user who deleted a network configuration. Any QNetworkConnection object which was based on the deleted configuration becomes invalid.
Returns a list of all network connection identities known to Qtopia. These identities can be used to create QNetworkConnection instances.
Copyright © 2009 Trolltech | Trademarks | Qt Extended 4.4.3 |