/thirdparty/qxt/qxtweb-standalone/qxtweb/qxtwebcontent.h

http://github.com/tomahawk-player/tomahawk · C Header · 63 lines · 29 code · 10 blank · 24 comment · 0 complexity · 0b85d76f1001c44d62fb7b2d5addaac7 MD5 · raw file

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) Qxt Foundation. Some rights reserved.
  4. **
  5. ** This file is part of the QxtWeb module of the Qxt library.
  6. **
  7. ** This library is free software; you can redistribute it and/or modify it
  8. ** under the terms of the Common Public License, version 1.0, as published
  9. ** by IBM, and/or under the terms of the GNU Lesser General Public License,
  10. ** version 2.1, as published by the Free Software Foundation.
  11. **
  12. ** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY
  13. ** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
  14. ** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR
  15. ** FITNESS FOR A PARTICULAR PURPOSE.
  16. **
  17. ** You should have received a copy of the CPL and the LGPL along with this
  18. ** file. See the LICENSE file and the cpl1.0.txt/lgpl-2.1.txt files
  19. ** included with the source distribution for more information.
  20. ** If you did not receive a copy of the licenses, contact the Qxt Foundation.
  21. **
  22. ** <http://libqxt.org> <foundation@libqxt.org>
  23. **
  24. ****************************************************************************/
  25. #ifndef QXTWEBCONTENT_H
  26. #define QXTWEBCONTENT_H
  27. #include <QAbstractSocket>
  28. #include <QByteArray>
  29. #include <QHash>
  30. #include <qxtglobal.h>
  31. class QxtWebContentPrivate;
  32. class QXT_WEB_EXPORT QxtWebContent : public QIODevice
  33. {
  34. Q_OBJECT
  35. public:
  36. QxtWebContent(int contentLength, const QByteArray& start, QIODevice* device);
  37. QxtWebContent(int contentLength, QIODevice* device);
  38. explicit QxtWebContent(const QByteArray& content, QObject* parent = 0);
  39. static QHash<QString, QString> parseUrlEncodedQuery(const QString& data);
  40. virtual qint64 bytesAvailable() const;
  41. qint64 unreadBytes() const;
  42. void waitForAllContent();
  43. public Q_SLOTS:
  44. void ignoreRemainingContent();
  45. protected:
  46. virtual qint64 readData(char* data, qint64 maxSize);
  47. virtual qint64 writeData(const char* data, qint64 maxSize);
  48. private Q_SLOTS:
  49. void errorReceived(QAbstractSocket::SocketError);
  50. private:
  51. QXT_DECLARE_PRIVATE(QxtWebContent)
  52. };
  53. #endif // QXTWEBCONTENT_H