VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox4/include/VBoxNetworkFramework.h@ 7871

Last change on this file since 7871 was 7789, checked in by vboxsync, 17 years ago

FE/Qt4: Some minor porting updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 1.6 KB
Line 
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
24/* Qt includes */
25#include <QThread>
26#include <QDataStream>
27
28typedef happyhttp::Connection HConnect;
29
30/**
31 * QObject class reimplementation which is the target for different
32 * events reseived from network thread.
33 */
34class VBoxNetworkFramework : public QObject
35{
36 Q_OBJECT
37
38public:
39
40 VBoxNetworkFramework()
41 : mDataStream (&mDataArray, QIODevice::ReadWrite)
42 , mNetworkThread (0) {}
43
44 ~VBoxNetworkFramework()
45 {
46 mNetworkThread->wait (1000);
47 delete mNetworkThread;
48 }
49
50 void postRequest (const QString &aHost, const QString &aUrl);
51
52signals:
53
54 void netBegin (int aStatus);
55 void netData (const QByteArray &aData);
56 void netEnd (const QByteArray &aData);
57 void netError (const QString &aData);
58
59private:
60
61 bool event (QEvent *aEvent);
62
63 QByteArray mDataArray;
64 QDataStream mDataStream;
65 QThread *mNetworkThread;
66};
67
68#endif // __VBoxNetworkFramework_h__
69
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette