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.
65 lines
1.7 KiB
65 lines
1.7 KiB
/*
|
|
Kopete Yahoo Protocol
|
|
modifyyabtask.h - Saves a YAB entry
|
|
|
|
Copyright (c) 2006 André Duffeck <andre.duffeck@kdemail.net>
|
|
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"
|
|
|
|
struct KURL;
|
|
namespace KIO {
|
|
class Job;
|
|
class TransferJob;
|
|
}
|
|
namespace KNetwork {
|
|
class KBufferedSocket;
|
|
}
|
|
class QDomElement;
|
|
|
|
/**
|
|
@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 QString &);
|
|
private slots:
|
|
void connectSucceeded();
|
|
void connectFailed( int );
|
|
void slotRead();
|
|
private:
|
|
KIO::TransferJob *m_transferJob;
|
|
KNetwork::KBufferedSocket *m_socket;
|
|
QString m_postData;
|
|
QString m_data;
|
|
Action m_action;
|
|
};
|
|
|
|
#endif
|