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

#include "qwidget.h"

class QLineEdit;
class QComboBox;
class QProgressBar;
class QLabel;

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

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

	private:
		QLineEdit *filename;
		QComboBox *protocol;
		QProgressBar *progressbar;
		QLabel *statusbar;
};

#endif