summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/yahoo/libkyahoo/changestatustask.h
blob: 5455c6656189b9ee8af0c7a1446484f658ad76f3 (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
/*
    Kopete Yahoo Protocol
    Change our Status

    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 CHANGESTATUSTASK_H
#define CHANGESTATUSTASK_H

#include "task.h"
#include "yahootypes.h"

class QString;


/**
@author André Duffeck
*/
class ChangeStatusTask : public Task
{
public:
	enum Type { Available, Away };
	ChangeStatusTask(Task *parent);
	~ChangeStatusTask();
	
	virtual void onGo();

	void setMessage( const QString &msg );
	void setStatus( Yahoo::Status status );
	void setType( Yahoo::StatusType type );
private:
	enum Visibility { Visible = 1, Invisible = 2 };
	QString m_message;
	Yahoo::Status m_status;
	Yahoo::StatusType m_type;

	void sendVisibility( Visibility visible );
};

#endif