summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/transferdialog.h
blob: b0c1a76bdeb1e04522117659c017ce8be920d789 (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
#ifndef TRANSFER_DIALOG_H
#define TRANSFER_DIALOG_H

#include "qdialog.h"

class QLineEdit;
class QComboBox;
class QProgressBar;
class QLabel;
class QPushButton;
class MainWindow;
class FileTransferLayer;

class TransferDialog : public QDialog
{
	Q_OBJECT
	public:
		TransferDialog(MainWindow *parent = 0l, const char *name = 0l);
		~TransferDialog();

	public slots:
		void slotFilename();
		void slotTransfer();
		void slotCancel();
		void slotProgress(const QString&, int, int, int, int, int);
		void slotError(int error, const QString& message);
		void slotSent();

	private:
		QLineEdit *filename;
		QComboBox *protocol;
		QProgressBar *progressbar;
		QLabel *statusbar;
		QPushButton *ok, *cancel;
                MainWindow* m_win;
                FileTransferLayer* m_lay;
};

#endif