diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/protocols/yahoo/libkyahoo/conferencetask.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/yahoo/libkyahoo/conferencetask.h')
-rw-r--r-- | kopete/protocols/yahoo/libkyahoo/conferencetask.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/kopete/protocols/yahoo/libkyahoo/conferencetask.h b/kopete/protocols/yahoo/libkyahoo/conferencetask.h new file mode 100644 index 00000000..b6649a93 --- /dev/null +++ b/kopete/protocols/yahoo/libkyahoo/conferencetask.h @@ -0,0 +1,57 @@ +/* + Kopete Yahoo Protocol + Handles conferences + + Copyright (c) 2005 André Duffeck <andre.duffeck@kdemail.net> + + ************************************************************************* + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + ************************************************************************* +*/ + +#ifndef CONFERENCETASK_H +#define CONFERENCETASK_H + +#include "task.h" + +class YMSGTransfer; + +/** +@author André Duffeck +*/ +class ConferenceTask : public Task +{ + Q_OBJECT +public: + ConferenceTask(Task *parent); + ~ConferenceTask(); + + bool take(Transfer *transfer); + bool forMe( Transfer* transfer ) const; + + void joinConference( const QString &room, const QStringList &members ); + void declineConference( const QString &room, const QStringList &members, const QString &msg ); + void leaveConference( const QString &room, const QStringList &members ); + void sendMessage( const QString &room, const QStringList &members, const QString &msg ); + void inviteConference( const QString &room, const QStringList &members, const QString &msg ); + void addInvite( const QString &room, const QStringList &who, const QStringList &members, const QString &msg ); +signals: + void gotInvite( const QString &who, const QString &room, const QString &msg, const QStringList &members); + void gotMessage( const QString &who, const QString &room, const QString &msg ); + void userJoined( const QString &who, const QString &room ); + void userLeft( const QString &who, const QString &room ); + void userDeclined( const QString &who, const QString &room, const QString &msg ); +private: + void parseInvitation( YMSGTransfer *transfer ); + void parseMessage( YMSGTransfer *transfer ); + void parseUserJoined( YMSGTransfer *transfer ); + void parseUserLeft( YMSGTransfer *transfer ); + void parseUserDeclined( YMSGTransfer *transfer ); +}; + +#endif |