We now have a current svn snapshot of libqxt in our contrib dir, and
[quassel.git] / src / contrib / libqxt-2007-10-24 / src / web / qxtwebcontroller.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 QxtWebController_H_sapoidnasoas
25 #define QxtWebController_H_sapoidnasoas
26
27 #include <QObject>
28 #include <QTextStream>
29 #include <QVariant>
30 #include "qxtwebcore.h"
31
32 class QxtWebController : public QObject
33 {
34     Q_OBJECT
35 public:
36     QxtWebController(QString name);
37     int invoke(server_t &);
38     static QString WebRoot();
39 public slots:
40     int index()
41     {
42         echo()<<"overwrite the index function of this controller("+objectName()+")";
43         return 404;
44     }
45
46 protected:
47     QTextStream & echo();
48     QString self();
49     server_t SERVER;
50 private:
51     QTextStream *stream_m;
52 };
53
54 #endif
55