diff -r 000000000000 -r 6474c204b198 netwerk/system/qt/nsQtNetworkManager.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/netwerk/system/qt/nsQtNetworkManager.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,56 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef NSQTNETWORKMANAGER_H_ +#define NSQTNETWORKMANAGER_H_ + +#include +#include +#include +#include +#include +#include "nscore.h" + +class nsQtNetworkManager; + + + +class nsQtNetworkManager : public QObject +{ + Q_OBJECT + public: + static void create(); + static void destroy(); + virtual ~nsQtNetworkManager(); + + static nsQtNetworkManager* get() { return gQtNetworkManager; } + + static bool IsConnected(); + static bool GetLinkStatusKnown(); + static void enableInstance(); + bool openConnection(const QString&); + bool isOnline(); + Q_SIGNALS: + void openConnectionSignal(); + + public Q_SLOTS: + void closeSession(); + void onlineStateChanged(bool); + + private Q_SLOTS: + void openSession(); + + private: + explicit nsQtNetworkManager(QObject* parent = 0); + + static nsQtNetworkManager* gQtNetworkManager; + QNetworkSession* networkSession; + QNetworkConfiguration networkConfiguration; + QNetworkConfigurationManager networkConfigurationManager; + QTimer mBlockTimer; + bool mOnline; +}; + +#endif /* NSQTNETWORKMANAGER_H_ */ +