6ae8d2e05c13b313026b36b3717cf62a1fed80d8
[quassel.git] / src / core / basichandler.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef _BASICHANDLER_H_
22 #define _BASICHANDLER_H_
23
24 #include <QObject>
25 #include <QString>
26 #include <QStringList>
27 #include <QGenericArgument>
28
29 #include "message.h"
30
31 class NetworkConnection;
32 class Network;
33
34 class BasicHandler : public QObject {
35   Q_OBJECT
36
37 public:
38   BasicHandler(NetworkConnection *parent = 0);
39
40   QStringList providesHandlers() const;
41
42 signals:
43   void displayMsg(Message::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
44   void putCmd(QString cmd, QStringList params, QString prefix = 0);
45   void putRawLine(QString msg);
46   
47 protected:
48   virtual void handle(const QString &member, const QGenericArgument &val0 = QGenericArgument(0),
49                       const QGenericArgument &val1 = QGenericArgument(), const QGenericArgument &val2 = QGenericArgument(),
50                       const QGenericArgument &val3 = QGenericArgument(), const QGenericArgument &val4 = QGenericArgument(),
51                       const QGenericArgument &val5 = QGenericArgument(), const QGenericArgument &val6 = QGenericArgument(),
52                       const QGenericArgument &val7 = QGenericArgument(), const QGenericArgument &val8 = QGenericArgument());
53             
54   NetworkConnection *server;
55   
56
57 protected:
58   Network *network() const;
59
60 };
61 #endif