2 * Copyright (C) 2003 Apple Computer, Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "KWQObject.h"
31 #include "KWQString.h"
36 @class KWQResourceLoader;
38 class KWQResourceLoader;
43 class TransferJobPrivate;
45 class Job : public QObject {
47 virtual int error() const = 0;
48 virtual QString errorText() const = 0;
49 virtual void kill() = 0;
52 class TransferJob : public Job {
54 TransferJob(const KURL &, bool reload = false, bool showProgressInfo = true);
55 TransferJob(const KURL &, const QByteArray &postData, bool showProgressInfo = true);
60 QString errorText() const;
61 bool isErrorPage() const;
62 QString queryMetaData(const QString &key) const;
63 void addMetaData(const QString &key, const QString &value);
64 void addMetaData(const QMap<QString, QString> &value);
67 void setLoader(KWQResourceLoader *);
71 void emitData(const char *, int);
72 void emitRedirection(const KURL &);
74 void emitReceivedResponse(void *);
76 QByteArray postData() const;
77 QString method() const;
79 void assembleResponseHeaders() const;
80 void retrieveCharset() const;
82 TransferJobPrivate *d;
85 KWQSignal m_redirection;
87 KWQSignal m_receivedResponse;