1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Qt GUI ("VirtualBox"):
|
---|
4 | * VBoxNetworkFramework class declaration
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef __VBoxNetworkFramework_h__
|
---|
20 | #define __VBoxNetworkFramework_h__
|
---|
21 |
|
---|
22 | #include <HappyHttp.h>
|
---|
23 | #include <qobject.h>
|
---|
24 | #include <qthread.h>
|
---|
25 | typedef happyhttp::Connection HConnect;
|
---|
26 |
|
---|
27 | /**
|
---|
28 | * QObject class reimplementation which is the target for different
|
---|
29 | * events reseived from network thread.
|
---|
30 | */
|
---|
31 | class VBoxNetworkFramework : public QObject
|
---|
32 | {
|
---|
33 | Q_OBJECT
|
---|
34 |
|
---|
35 | public:
|
---|
36 |
|
---|
37 | VBoxNetworkFramework()
|
---|
38 | : mDataStream (mDataArray, IO_ReadWrite)
|
---|
39 | , mNetworkThread (0) {}
|
---|
40 |
|
---|
41 | ~VBoxNetworkFramework() { delete mNetworkThread; }
|
---|
42 |
|
---|
43 | void postRequest (const QString &aHost, const QString &aUrl);
|
---|
44 |
|
---|
45 | signals:
|
---|
46 |
|
---|
47 | void netBegin (int aStatus);
|
---|
48 | void netData (const QByteArray &aData);
|
---|
49 | void netEnd (const QByteArray &aData);
|
---|
50 | void netError (const QString &aData);
|
---|
51 |
|
---|
52 | private:
|
---|
53 |
|
---|
54 | bool event (QEvent *aEvent);
|
---|
55 |
|
---|
56 | QByteArray mDataArray;
|
---|
57 | QDataStream mDataStream;
|
---|
58 | QThread *mNetworkThread;
|
---|
59 | };
|
---|
60 |
|
---|
61 | #endif // __VBoxNetworkFramework_h__
|
---|
62 |
|
---|