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

#include "qdialog.h"

class QLineEdit;
class QComboBox;
class QProgressBar;
class QLabel;
class QPushButton;
class FileTransfer;

class TransferDialog : public QDialog
{
	Q_OBJECT
	public:
		TransferDialog(QWidget *parent = NULL, const char *name = NULL);
		~TransferDialog();

	public slots:
		void slotFilename();
		void slotTransfer();
		void slotCancel();

	private:
		QLineEdit *filename;
		QComboBox *protocol;
		QProgressBar *progressbar;
		QLabel *statusbar;
		QPushButton *ok, *cancel;
		FileTransfer *transfer;
};

#endif