-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmrimchatsession.h
41 lines (32 loc) · 1.02 KB
/
mrimchatsession.h
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
#ifndef MRIMCHATSESSION_H
#define MRIMCHATSESSION_H
#include <kopete/kopetechatsession.h>
class MrimProtocol;
class MrimContact;
class MRAConferenceSettings;
class MrimChatSession : public Kopete::ChatSession
{
Q_OBJECT
public:
explicit MrimChatSession(const Kopete::Contact *user,
MrimContact *contact,
Kopete::ContactPtrList others,
MrimProtocol *protocol,
Kopete::ChatSession::Form form );
virtual ~MrimChatSession();
/**
* Called when contact is dragged to the chat's contact list
* @see Kopete::ChatSession::inviteContact(QString) and Kopete::ChatSession::mayInvite(bool)
* @brief inviteContact
* @param contactId
*/
virtual void inviteContact(const QString &contactId);
void slotChatSettingsReceived(const MRAConferenceSettings &settings);
signals:
public slots:
void slotEditConference();
private:
class Private;
Private *d;
};
#endif // MRIMCHATSESSION_H