blob: c13d7b773c38fd52dd020f18487a5b033709cd19 (
plain) (
blame)
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
|
/*
# Copyright (c) 2009, 2010 - OpenSLX Project, Computer Center University of
# Freiburg
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
*/
#ifndef CLIENTFILERECEIVEDIALOG_H_
#define CLIENTFILERECEIVEDIALOG_H_
#include <QtGui>
#include <QtNetwork>
#include "ui_clientFileReceiveDialog.h"
class ClientFileReceiveDialog: public QDialog,
private Ui::ClientFileReceiveDialogClass
{
Q_OBJECT
public:
ClientFileReceiveDialog(QTcpSocket *socket, QWidget *parent = 0);
~ClientFileReceiveDialog();
private Q_SLOTS:
void receiveHeader();
void receiveFile();
void close();
void error(QAbstractSocket::SocketError error);
private:
void sendAck(bool b);
QString formatSize(qint64 size);
QTcpSocket *_socket;
QFile *_file;
qint64 _bytesToRead;
int div;
};
#endif /* CLIENTFILERECEIVEDIALOG_H_ */
|