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/modifyyabtask.h

64 lines
1.6 KiB

/*
Kopete Yahoo Protocol
modifyyabtask.h - Saves a YAB entry
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 MODIFYYABTASK_H
#define MODIFYYABTASK_H
#include "task.h"
#include "yabentry.h"
namespace TDEIO {
class Job;
class TransferJob;
}
namespace KNetwork {
class KBufferedSocket;
}
/**
@author André Duffeck
*/
class ModifyYABTask : public Task
{
Q_OBJECT
public:
enum Action { AddEntry, EditEntry, DeleteEntry };
ModifyYABTask(Task *parent);
~ModifyYABTask();
virtual void onGo();
void setAction( Action action );
void setEntry( const YABEntry & );
signals:
void gotEntry( YABEntry * );
void gotRevision( long rev, bool merged );
void error( YABEntry *, const TQString &);
private slots:
void connectSucceeded();
void connectFailed( int );
void slotRead();
private:
TDEIO::TransferJob *m_transferJob;
KNetwork::KBufferedSocket *m_socket;
TQString m_postData;
TQString m_data;
Action m_action;
};
#endif