blob: 861d0dd5e855c1da12336257b8a7be0d1ab7e854 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*
Kopete Yahoo Protocol
sendpicturetask.h - Send our picture or information about it
Copyright (c) 2005 André Duffeck <duffeck@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 SENDPICTURETASK_H
#define SENDPICTURETASK_H
#include "task.h"
class TQString;
class TQFile;
namespace KIO {
class Job;
class TransferJob;
}
namespace KNetwork {
class KBufferedSocket;
}
/**
@author André Duffeck
*/
class SendPictureTask : public Task
{
Q_OBJECT
TQ_OBJECT
public:
enum Type { UploadPicture, SendChecksum, SendInformation, SendtqStatus };
SendPictureTask(Task *parent);
virtual ~SendPictureTask();
virtual void onGo();
void setType( Type type );
void setTarget( const TQString &to );
void setFilename( const TQString & );
void setFilesize( int );
void setPath( const TQString & );
void setChecksum( int );
void settqStatus( int );
void setUrl( const TQString & );
private:
void initiateUpload();
void sendChecksum();
void sendInformation();
void sendtqStatus();
private slots:
void connectSucceeded();
void connectFailed( int );
void readResult();
private:
Type m_type;
TQString m_target;
TQString m_fileName;
int m_fileSize;
TQString m_path;
int m_checksum;
int m_status;
TQString m_url;
int m_transmitted;
TQFile *m_file;
KNetwork::KBufferedSocket *m_socket;
};
#endif
|