summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/yahoo/libkyahoo/sendpicturetask.h
blob: 3a3e1437527217399d4b5c9bbb4e58cde2b2bbfc (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
/*
    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 QString;
class QFile;
namespace KIO	{
	class Job;
	class TransferJob;
}
namespace KNetwork	{
	class KBufferedSocket;
}

/**
@author André Duffeck
*/
class SendPictureTask : public Task
{
Q_OBJECT
public:
	enum Type { UploadPicture, SendChecksum, SendInformation, SendStatus };

	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 setStatus( int );
	void setUrl( const TQString & );
private:
	void initiateUpload();
	void sendChecksum();
	void sendInformation();
	void sendStatus();
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