We now have a current svn snapshot of libqxt in our contrib dir, and
[quassel.git] / src / contrib / libqxt-2007-10-24 / src / web / qxtwebcore.h
1 /****************************************************************************
2 **
3 ** Copyright (C) Qxt Foundation. Some rights reserved.
4 **
5 ** This file is part of the QxtWeb  module of the Qt eXTension library
6 **
7 ** This library is free software; you can redistribute it and/or modify it
8 ** under the terms of th Common Public License, version 1.0, as published by
9 ** IBM.
10 **
11 ** This file is provided "AS IS", without WARRANTIES OR CONDITIONS OF ANY
12 ** KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY
13 ** WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR
14 ** FITNESS FOR A PARTICULAR PURPOSE.
15 **
16 ** You should have received a copy of the CPL along with this file.
17 ** See the LICENSE file and the cpl1.0.txt file included with the source
18 ** distribution for more information. If you did not receive a copy of the
19 ** license, contact the Qxt Foundation.
20 **
21 ** <http://libqxt.org>  <foundation@libqxt.org>
22 **
23 ****************************************************************************/
24 #ifndef QxtWebCore_HEADER_GIAURX_H
25 #define QxtWebCore_HEADER_GIAURX_H
26
27 #include <QObject>
28 #include <QMap>
29 #include <QMetaType>
30
31 #include <qxterror.h>
32 #include <qxtpimpl.h>
33
34 #include <qxtglobal.h>
35 #include <QHostAddress>
36
37 typedef  QMap<QByteArray, QByteArray> server_t;
38 typedef  QMap<QString, QVariant> post_t;
39
40
41 Q_DECLARE_METATYPE(server_t)
42 class QIODevice;
43 class QxtAbstractWebConnector;
44 class QTextCodec;
45 class QxtWebCorePrivate;
46 class QXT_WEB_EXPORT QxtWebCore: public QObject
47 {
48     Q_OBJECT
49     QXT_DECLARE_PRIVATE(QxtWebCore);
50 public:
51     QxtWebCore (QxtAbstractWebConnector *);
52     ~QxtWebCore ();
53
54     int start (quint16 port = 8000,const QHostAddress & address = QHostAddress::LocalHost);
55
56     static void setCodec ( QTextCodec * codec );
57
58     static void send(QString);
59     static void close();
60     static void header(QString,QString);
61     static void sendHeader();
62
63     static server_t & SERVER();
64     static QIODevice * socket();
65
66     static void redirect(QString location,int code=303);
67
68
69
70
71     static QxtWebCore * instance();
72
73     /*helper*/
74     static QxtError parseString(QByteArray str, post_t & POST);
75     static QByteArray content(int maxsize=5000);
76
77 signals:
78     void request();
79     void aboutToClose();
80 };
81
82
83
84 #endif
85
86