~ubuntu-branches/ubuntu/oneiric/arora/oneiric

« back to all changes in this revision

Viewing changes to src/network/fileaccesshandler.h

  • Committer: Bazaar Package Importer
  • Author(s): Roderick B. Greening
  • Date: 2009-09-10 15:24:04 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090910152404-668k22ux3mfap6g0
Tags: 0.9.0-0ubuntu1
* New upstream release
* Update patches:
  - kubuntu_02_default_bookmarks.diff
* Remove patches:
  - kubuntu_04_startpage_spacing.diff (fixed upstream)
  - kubuntu_05_manpages.diff (fixed upstream)
  - kubuntu_07_adblock.diff (unstable/unsuitable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2009 Jonas Gehring <jonas.gehring@boolsoft.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
17
 * Boston, MA  02110-1301  USA
 
18
 */
 
19
 
 
20
#ifndef FILEACCESSHANDLER_H
 
21
#define FILEACCESSHANDLER_H
 
22
 
 
23
#include "schemeaccesshandler.h"
 
24
 
 
25
#include <qbuffer.h>
 
26
#include <qnetworkreply.h>
 
27
 
 
28
class FileAccessHandler : public SchemeAccessHandler
 
29
{
 
30
public:
 
31
    FileAccessHandler(QObject *parent = 0);
 
32
 
 
33
    virtual QNetworkReply *createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData = 0);
 
34
};
 
35
 
 
36
class FileAccessReply : public QNetworkReply
 
37
{
 
38
    Q_OBJECT
 
39
 
 
40
public:
 
41
    FileAccessReply(const QNetworkRequest &request, QObject *parent = 0);
 
42
    ~FileAccessReply();
 
43
 
 
44
    virtual qint64 bytesAvailable() const;
 
45
    virtual void abort() { };
 
46
    virtual void close();
 
47
 
 
48
protected:
 
49
    virtual qint64 readData(char *data, qint64 maxSize);
 
50
 
 
51
private slots:
 
52
    void listDirectory();
 
53
 
 
54
private:
 
55
    QBuffer buffer;
 
56
};
 
57
 
 
58
#endif // FILEACCESSHANDLER_H