Qt 4.8
qnetworkconfigmanager.h
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtNetwork module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #ifndef QNETWORKCONFIGURATIONMANAGER_H
43 #define QNETWORKCONFIGURATIONMANAGER_H
44 
45 #ifdef QT_MOBILITY_BEARER
46 # include "qmobilityglobal.h"
47 #endif
48 
49 #include <QtCore/qobject.h>
50 #include <QtNetwork/qnetworkconfiguration.h>
51 
52 #ifndef QT_NO_BEARERMANAGEMENT
53 
55 
56 #ifndef QT_MOBILITY_BEARER
58 #define QNetworkConfigurationManagerExport Q_NETWORK_EXPORT
59 QT_MODULE(Network)
60 #else
61 QTM_BEGIN_NAMESPACE
62 #define QNetworkConfigurationManagerExport Q_BEARER_EXPORT
63 #endif
64 
67 {
68  Q_OBJECT
69 
70 public:
71  enum Capability {
72  CanStartAndStopInterfaces = 0x00000001,
73  DirectConnectionRouting = 0x00000002,
74  SystemSessionSupport = 0x00000004,
75  ApplicationLevelRoaming = 0x00000008,
76  ForcedRoaming = 0x00000010,
77  DataStatistics = 0x00000020,
78  NetworkSessionRequired = 0x00000040
79  };
80 
81  Q_DECLARE_FLAGS(Capabilities, Capability)
82 
83  explicit QNetworkConfigurationManager(QObject *parent = 0);
85 
86  QNetworkConfigurationManager::Capabilities capabilities() const;
87 
88  QNetworkConfiguration defaultConfiguration() const;
89  QList<QNetworkConfiguration> allConfigurations(QNetworkConfiguration::StateFlags flags = 0) const;
90  QNetworkConfiguration configurationFromIdentifier(const QString &identifier) const;
91 
92  bool isOnline() const;
93 
94 public Q_SLOTS:
95  void updateConfigurations();
96 
97 Q_SIGNALS:
98  void configurationAdded(const QNetworkConfiguration &config);
99  void configurationRemoved(const QNetworkConfiguration &config);
100  void configurationChanged(const QNetworkConfiguration &config);
101  void onlineStateChanged(bool isOnline);
102  void updateCompleted();
103 };
104 
105 Q_DECLARE_OPERATORS_FOR_FLAGS(QNetworkConfigurationManager::Capabilities)
106 
107 #ifndef QT_MOBILITY_BEARER
109 #else
110 QTM_END_NAMESPACE
111 #endif
112 
114 
115 #endif // QT_NO_BEARERMANAGEMENT
116 
117 #endif // QNETWORKCONFIGURATIONMANAGER_H
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
#define QT_MODULE(x)
Definition: qglobal.h:2783
#define QT_BEGIN_HEADER
Definition: qglobal.h:136
#define Q_DECLARE_FLAGS(Flags, Enum)
The Q_DECLARE_FLAGS() macro expands to.
Definition: qglobal.h:2348
The QNetworkConfigurationManager class manages the network configurations provided by the system...
#define Q_SLOTS
Definition: qobjectdefs.h:71
The QString class provides a Unicode character string.
Definition: qstring.h:83
The QObject class is the base class of all Qt objects.
Definition: qobject.h:111
#define Q_SIGNALS
Definition: qobjectdefs.h:72
The QNetworkConfiguration class provides an abstraction of one or more access point configurations...
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89
#define Q_DECLARE_OPERATORS_FOR_FLAGS(Flags)
The Q_DECLARE_OPERATORS_FOR_FLAGS() macro declares global operator|() functions for Flags...
Definition: qglobal.h:2355
Capability
Specifies the system capabilities of the bearer API.
#define Q_OBJECT
Definition: qobjectdefs.h:157
#define QNetworkConfigurationManagerExport
#define QT_END_HEADER
Definition: qglobal.h:137
The QList class is a template class that provides lists.
Definition: qdatastream.h:62