blob: 7438a25f0d1d5013052f59b9917fbb71be2bc784 (
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
|
/*
Kopete Yahoo Protocol
Add, remove or move a buddy to the Contactlist
Copyright (c) 2005 André Duffeck <andre.duffeck@kdemail.net>
*************************************************************************
* *
* 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 QString;
/**
@author André Duffeck
*/
class ModifyBuddyTask : public Task
{
public:
enum Type { AddBuddy, RemoveBuddy, MoveBuddy };
ModifyBuddyTask(Task *parent);
~ModifyBuddyTask();
virtual void onGo();
void setType( Type type );
void setMessage( const QString &text );
void setTarget( const QString &target );
void setGroup( const QString &group );
void setOldGroup( const QString &group );
private:
void addBuddy();
void removeBuddy();
void moveBuddy();
QString m_message;
QString m_target;
QString m_group;
QString m_oldGroup;
Type m_type;
};
#endif
|