blob: b4e84658f9b8e3117c9105ef4e64b09140e0f6df (
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
|
/*
Kopete Yahoo Protocol
Send a notification
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 SENDNOTIFYTASK_H
#define SENDNOTIFYTASK_H
#include "task.h"
class TQString;
/**
@author André Duffeck
*/
class SendNotifyTask : public Task
{
Q_OBJECT
TQ_OBJECT
public:
enum Type { NotifyTyping, NotifyWebcamInvite, NotifyGame };
enum State { Active = 1, NotActive = 0 };
SendNotifyTask(Task *tqparent);
~SendNotifyTask();
virtual void onGo();
void setType( Type type );
void setTarget( const TQString &to );
void setState( State );
private:
TQString m_target;
Type m_type;
State m_state;
};
#endif
|