blob: 4935dbe635b9b10ccbe82455168286ed770e0723 (
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
|
/*
Kopete Oscar Protocol
ssiauthtask.h - SSI Authentication Task
Copyright (c) 2004 Gustavo Pichorim Boiko <gustavo.boiko@kdemail.net>
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 SSIAUTHTASK_H
#define SSIAUTHTASK_H
#include <task.h>
class SSIManager;
/**
@author Kopete Developers
*/
class SSIAuthTask : public Task
{
Q_OBJECT
public:
SSIAuthTask( Task* parent );
~SSIAuthTask();
virtual bool forMe( const Transfer* t ) const;
virtual bool take( Transfer* t );
void grantFutureAuth( const TQString& uin, const TQString& reason );
void sendAuthRequest( const TQString& uin, const TQString& reason );
void sendAuthReply( const TQString& uin, const TQString& reason, bool auth );
signals:
void futureAuthGranted( const TQString& uin, const TQString& reason );
void authRequested( const TQString& uin, const TQString& reason );
void authReplied( const TQString& uin, const TQString& reason, bool auth );
void contactAddedYou( const TQString& uin );
private:
void handleFutureAuthGranted();
void handleAuthRequested();
void handleAuthReplied();
void handleAddedMessage();
private:
SSIManager* m_manager;
};
#endif
//kate: tab-width 4; indent-mode csands;
|