home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qhttp.h < prev    next >
C/C++ Source or Header  |  2001-10-11  |  3KB  |  93 lines

  1. /****************************************************************************
  2. ** $Id:  qt/qhttp.h   3.0.0   edited Sep 3 16:56 $
  3. **
  4. ** Definition of QHtpp and related classes.
  5. **
  6. ** Created : 970521
  7. **
  8. ** Copyright (C) 1997-2000 Trolltech AS.  All rights reserved.
  9. **
  10. ** This file is part of the network module of the Qt GUI Toolkit.
  11. **
  12. ** This file may be distributed under the terms of the Q Public License
  13. ** as defined by Trolltech AS of Norway and appearing in the file
  14. ** LICENSE.QPL included in the packaging of this file.
  15. **
  16. ** This file may be distributed and/or modified under the terms of the
  17. ** GNU General Public License version 2 as published by the Free Software
  18. ** Foundation and appearing in the file LICENSE.GPL included in the
  19. ** packaging of this file.
  20. **
  21. ** Licensees holding valid Qt Enterprise Edition licenses may use this
  22. ** file in accordance with the Qt Commercial License Agreement provided
  23. ** with the Software.
  24. **
  25. ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
  26. ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  27. **
  28. ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
  29. **   information about Qt Commercial License Agreements.
  30. ** See http://www.trolltech.com/qpl/ for QPL licensing information.
  31. ** See http://www.trolltech.com/gpl/ for GPL licensing information.
  32. **
  33. ** Contact info@trolltech.com if any conditions of this licensing are
  34. ** not clear to you.
  35. **
  36. **********************************************************************/
  37.  
  38. #ifndef QHTTP_H
  39. #define QHTTP_H
  40.  
  41. #ifndef QT_H
  42. #include "qobject.h"
  43. #include "qnetworkprotocol.h"
  44. #endif // QT_H
  45.  
  46. #if !defined( QT_MODULE_NETWORK ) || defined( QT_LICENSE_PROFESSIONAL ) || defined( QT_INTERNAL_NETWORK )
  47. #define QM_EXPORT_HTTP
  48. #else
  49. #define QM_EXPORT_HTTP Q_EXPORT
  50. #endif
  51.  
  52. #ifndef QT_NO_NETWORKPROTOCOL_HTTP
  53.  
  54. class QSocket;
  55. class QTimerEvent;
  56. class QTextStream;
  57. class QIODevice;
  58.  
  59. class QHttpReplyHeader;
  60. class QHttpClient;
  61. class QHttpPrivate;
  62.  
  63. class QM_EXPORT_HTTP QHttp : public QNetworkProtocol
  64. {
  65.     Q_OBJECT
  66.  
  67. public:
  68.     QHttp();
  69.     virtual ~QHttp();
  70.  
  71.     int supportedOperations() const;
  72.  
  73. protected:
  74.     void operationGet( QNetworkOperation *op );
  75.     void operationPut( QNetworkOperation *op );
  76.  
  77. private slots:
  78.     void reply( const QHttpReplyHeader & rep, const QByteArray & dataA );
  79.     void requestFinished();
  80.     void requestFailed( int );
  81.     void connected();
  82.     void closed();
  83.     void hostFound();
  84.  
  85. private:
  86.     QHttpPrivate *d;
  87.     QHttpClient *client;
  88.     int bytesRead;
  89. };
  90.  
  91. #endif
  92. #endif
  93.