blob: 672eeea853f4f025a0b1842dcb8725ea3280f151 (
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
|
/*
Kopete Yahoo Protocol
Add, remove or move a buddy to the Contactlist
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 MODIFYBUDDYTASK_H
#define MODIFYBUDDYTASK_H
#include "task.h"
class TQString;
/**
@author André Duffeck
*/
class ModifyBuddyTask : public Task
{
Q_OBJECT
public:
enum Type { AddBuddy, RemoveBuddy, MoveBuddy };
ModifyBuddyTask(Task *parent);
~ModifyBuddyTask();
virtual void onGo();
bool take(Transfer *transfer);
void setType( Type type );
void setMessage( const TQString &text );
void setTarget( const TQString &target );
void setGroup( const TQString &group );
void setOldGroup( const TQString &group );
signals:
void buddyAddResult( const TQString &, const TQString &, bool );
void buddyRemoveResult( const TQString &, const TQString &, bool );
void buddyChangeGroupResult( const TQString &, const TQString &, bool );
protected:
virtual bool forMe( const Transfer *transfer ) const;
private:
void addBuddy();
void removeBuddy();
void moveBuddy();
TQString m_message;
TQString m_target;
TQString m_group;
TQString m_oldGroup;
Type m_type;
};
#endif
|