initial import
[vuplus_webkit] / Source / WebKit2 / UIProcess / API / qt / qweberror.h
1 /*
2  * Copyright (C) 2011 Andreas Kling <kling@webkit.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (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 GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this program; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20
21 #ifndef qweberror_h
22 #define qweberror_h
23
24 #include "qwebkitglobal.h"
25 #include <QSharedDataPointer>
26 #include <QtNetwork/QNetworkReply>
27
28 class QWebErrorPrivate;
29
30 QT_BEGIN_NAMESPACE
31 class QUrl;
32 QT_END_NAMESPACE
33
34 class QWEBKIT_EXPORT QWebError {
35 public:
36     enum Type {
37         EngineError,
38         NetworkError,
39         HttpError,
40     };
41
42     Type type() const;
43     QUrl url() const;
44     int errorCode() const;
45
46     int errorCodeAsHttpStatusCode() const { return errorCode(); }
47     QNetworkReply::NetworkError errorCodeAsNetworkError() const { return static_cast<QNetworkReply::NetworkError>(errorCode()); }
48
49     QWebError(const QWebError&);
50
51 private:
52     QWebError(QWebErrorPrivate*);
53
54     QSharedDataPointer<QWebErrorPrivate> d;
55     friend class QWebErrorPrivate;
56 };
57
58 #endif /* qweberror_h */