You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/protocols/yahoo/libkyahoo/changestatustask.h

51 lines
1.3 KiB

/*
Kopete Yahoo Protocol
Change our Status
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 CHANGESTATUSTASK_H
#define CHANGESTATUSTASK_H
#include "task.h"
#include "yahootypes.h"
class TQString;
/**
@author André Duffeck
*/
class ChangeStatusTask : public Task
{
public:
enum Type { Available, Away };
ChangeStatusTask(Task *parent);
~ChangeStatusTask();
virtual void onGo();
void setMessage( const TQString &msg );
void setStatus( Yahoo::Status status );
void setType( Yahoo::StatusType type );
private:
enum Visibility { Visible = 1, Invisible = 2 };
TQString m_message;
Yahoo::Status m_status;
Yahoo::StatusType m_type;
void sendVisibility( Visibility visible );
};
#endif