blob: bb646a55b282f8fcebd40a0d5314a1f1c6bc46c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
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 TDEBufferedSocket;
}
/**
@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::TDEBufferedSocket *m_socket;
TQString m_postData;
TQString m_data;
Action m_action;
};
#endif
|