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.
79 lines
2.1 KiB
79 lines
2.1 KiB
/*
|
|
Kopete Yahoo Protocol
|
|
Handles logging into to the Yahoo service
|
|
|
|
Copyright (c) 2004 Duncan Mac-Vicar P. <duncan@kde.org>
|
|
|
|
Copyright (c) 2005 André Duffeck <duffeck@kde.org>
|
|
|
|
Kopete (c) 2002-2005 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 YMSG_TRANSFER_H
|
|
#define YMSG_TRANSFER_H
|
|
|
|
#include "transfer.h"
|
|
|
|
#include "yahootypes.h"
|
|
|
|
#include <tqpair.h>
|
|
#include <tqvaluelist.h>
|
|
|
|
class YMSGTransferPrivate;
|
|
|
|
typedef TQPair< int, TQCString > Param;
|
|
typedef TQValueList< Param > ParamList;
|
|
|
|
/**
|
|
@author Duncan Mac-Vicar Prett
|
|
*/
|
|
class YMSGTransfer : public Transfer
|
|
{
|
|
public:
|
|
YMSGTransfer(Yahoo::Service service);
|
|
YMSGTransfer(Yahoo::Service service, Yahoo::Status status);
|
|
YMSGTransfer();
|
|
~YMSGTransfer();
|
|
|
|
|
|
TransferType type();
|
|
|
|
//! Get the validity of the transfer object
|
|
bool isValid() const;
|
|
Yahoo::Service service() const;
|
|
void setService(Yahoo::Service service);
|
|
Yahoo::Status status() const;
|
|
void setStatus(Yahoo::Status status);
|
|
unsigned int id() const;
|
|
void setId(unsigned int id);
|
|
int packetLength() const;
|
|
void setPacketLength(int len);
|
|
|
|
|
|
ParamList paramList() const;
|
|
TQCString firstParam( int index ) const;
|
|
TQCString nthParam( int index, int occurrence ) const;
|
|
TQCString nthParamSeparated( int index, int occurrence, int separator ) const;
|
|
int paramCount( int index ) const;
|
|
|
|
|
|
void setParam(int index, const TQCString &data);
|
|
void setParam(int index, int data);
|
|
TQByteArray serialize() const;
|
|
|
|
int length() const;
|
|
private:
|
|
YMSGTransferPrivate* d;
|
|
};
|
|
|
|
#endif
|