VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/include/VBoxNetworkFramework.h@ 5999

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

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Revision Author Id
File size: 1.5 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#include <qobject.h>
24#include <qthread.h>
25typedef happyhttp::Connection HConnect;
26
27/**
28 * QObject class reimplementation which is the target for different
29 * events reseived from network thread.
30 */
31class VBoxNetworkFramework : public QObject
32{
33 Q_OBJECT
34
35public:
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
45signals:
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
52private:
53
54 bool event (QEvent *aEvent);
55
56 QByteArray mDataArray;
57 QDataStream mDataStream;
58 QThread *mNetworkThread;
59};
60
61#endif // __VBoxNetworkFramework_h__
62
Note: See TracBrowser for help on using the repository browser.

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