1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
Kopete Yahoo Protocol
Handles conferences
Copyright (c) 2005 André Duffeck <duffeck@kde.org>
*************************************************************************
* *
* 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( const 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
|