make webinterface translatable. there are around 20 short strings, all with context...
[kdenetwork.git] / kopete / protocols / irc / ircguiclient.h
blobefb1674db20b852ba140888f67375b4810dc1e78
1 /*
2 ircguiclient.h
4 Copyright (c) 2003 by Jason Keirstead <jason@keirstead.org>
5 Copyright (c) 2003-2007 by Michel Hermier <michel.hermier@gmail.com>
7 Kopete (c) 2003-2007 by the Kopete developers <kopete-devel@kde.org>
9 *************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 *************************************************************************
18 #ifndef IRCGUICLIENT_H
19 #define IRCGUICLIENT_H
21 #include <qobject.h>
22 #include <kxmlguiclient.h>
24 namespace Kopete
26 class ChatSession;
29 class IRCContact;
31 /**
32 *@author Jason Keirstead
34 class IRCGUIClient
35 : public QObject,
36 public KXMLGUIClient
38 Q_OBJECT
40 public:
41 explicit IRCGUIClient(Kopete::ChatSession *parent = 0);
42 ~IRCGUIClient();
44 private slots:
45 void slotSelectCodec(QTextCodec *codec);
47 private:
48 IRCContact *m_contact;
51 #endif