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.
89 lines
2.6 KiB
89 lines
2.6 KiB
/*
|
|
Kopete Yahoo Protocol
|
|
yahoochattask.h - Handle Yahoo Chat
|
|
|
|
Copyright (c) 2006 André Duffeck <duffeck@kde.org>
|
|
Kopete (c) 2002-2006 by the Kopete developers <kopete-devel@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 YAHOOCHATTASK_H
|
|
#define YAHOOCHATTASK_H
|
|
|
|
#include "task.h"
|
|
#include "yahootypes.h"
|
|
#include <tqmap.h>
|
|
#include <tqvaluelist.h>
|
|
#include <tqpair.h>
|
|
|
|
class TQDomDocument;
|
|
class YMSGTransfer;
|
|
namespace TDEIO {
|
|
class Job;
|
|
}
|
|
|
|
struct YahooChatJob {
|
|
TQByteArray data;
|
|
Yahoo::ChatCategory category;
|
|
};
|
|
|
|
/**
|
|
@author André Duffeck
|
|
*/
|
|
class YahooChatTask : public Task
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
YahooChatTask(Task *parent);
|
|
virtual ~YahooChatTask();
|
|
|
|
virtual void onGo();
|
|
virtual bool forMe( const Transfer *transfer ) const;
|
|
bool take(Transfer *transfer);
|
|
|
|
void getYahooChatCategories();
|
|
void getYahooChatRooms( const Yahoo::ChatCategory &category );
|
|
|
|
void joinRoom( const Yahoo::ChatRoom &room );
|
|
|
|
void sendYahooChatMessage( const TQString &msg, const TQString &handle );
|
|
|
|
void logout();
|
|
|
|
signals:
|
|
void gotYahooChatCategories( const TQDomDocument & );
|
|
void gotYahooChatRooms( const Yahoo::ChatCategory &, const TQDomDocument & );
|
|
|
|
void chatRoomJoined( int roomId, int categoryId, const TQString &comment, const TQString &handle );
|
|
void chatBuddyHasJoined( const TQString &nick, const TQString &handle, bool suppressNotification );
|
|
void chatBuddyHasLeft( const TQString &nick, const TQString &handle );
|
|
void chatMessageReceived( const TQString &nick, const TQString &message, const TQString &handle );
|
|
private:
|
|
void login();
|
|
void parseLoginResponse( YMSGTransfer *t );
|
|
void parseJoin( YMSGTransfer *t );
|
|
void parseChatMessage( YMSGTransfer * );
|
|
void parseChatExit( YMSGTransfer * );
|
|
void parseLogout( YMSGTransfer * );
|
|
|
|
private slots:
|
|
void slotData( TDEIO::Job *, const TQByteArray & );
|
|
void slotCategoriesComplete( TDEIO::Job * );
|
|
void slotChatRoomsComplete( TDEIO::Job * );
|
|
private:
|
|
TQMap< TDEIO::Job *, YahooChatJob > m_jobs;
|
|
TQValueList< Yahoo::ChatRoom > m_pendingJoins;
|
|
bool m_loggedIn;
|
|
};
|
|
|
|
#endif
|