blob: 4a1f6d199b595ce54f0650999d8481b1391ab7f1 (
plain)
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
Kopete Groupwise Protocol
conferencetask.h - Event Handling task responsible for all conference related events
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Based on Iris, Copyright (C) 2003 Justin Karneges
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@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 "gwerror.h"
#include "eventtask.h"
/**
* This Task is responsible for handling all conference related events, and signalling them up to @ref GroupWiseAccount
* Implementation note: It would be fit the model more cleanly to have each of these in their own Task, but the amount
* of code they share is quite large, and the differences in the way each event uses it are small
* @author SUSE AG
*/
using namespace GroupWise;
class ConferenceTask : public EventTask
{
Q_OBJECT
TQ_OBJECT
public:
ConferenceTask( Task* tqparent );
~ConferenceTask();
bool take( Transfer * transfer );
signals:
void typing( const ConferenceEvent & );
void notTyping( const ConferenceEvent & );
void joined( const ConferenceEvent & );
void left( const ConferenceEvent &);
void invited( const ConferenceEvent & );
void otherInvited( const ConferenceEvent & );
void invitationDeclined( const ConferenceEvent & );
void closed( const ConferenceEvent & );
void message( const ConferenceEvent &);
void autoReply( const ConferenceEvent & );
// GW7
void broadcast( const ConferenceEvent &);
void systemBroadcast( const ConferenceEvent &);
protected slots:
void slotReceiveUserDetails( const GroupWise::ContactDetails & );
protected:
TQ_UINT32 readFlags( TQDataStream & din );
TQString readMessage( TQDataStream & din );
/**
* Checks to see if we need more data from the client before we can propagate this event
* and queues the event if so
* @return whether the event was queued pending more data
*/
bool queueWhileAwaitingData( const ConferenceEvent & event );
void dumpConferenceEvent( ConferenceEvent & evt );
private:
// A list of events which are waiting for more data from the server before they can be exposed to the client
TQValueList< ConferenceEvent > m_pendingEvents;
};
#endif
|