summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/transferdialog.h
authorjosef <josef>2002-10-07 10:03:39 (UTC)
committer josef <josef>2002-10-07 10:03:39 (UTC)
commit399828740380aa59273cce8ddd9cc05588e2aeac (patch) (unidiff)
treeb55316c98555f529239c1fcc841aad96ad69a18d /noncore/apps/opie-console/transferdialog.h
parent46171dcd991e8c3bfff8e662b3913f454714560a (diff)
downloadopie-399828740380aa59273cce8ddd9cc05588e2aeac.zip
opie-399828740380aa59273cce8ddd9cc05588e2aeac.tar.gz
opie-399828740380aa59273cce8ddd9cc05588e2aeac.tar.bz2
- add first widget for transfer dialog
Diffstat (limited to 'noncore/apps/opie-console/transferdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/transferdialog.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/transferdialog.h b/noncore/apps/opie-console/transferdialog.h
new file mode 100644
index 0000000..4fe17dd
--- a/dev/null
+++ b/noncore/apps/opie-console/transferdialog.h
@@ -0,0 +1,30 @@
1#ifndef TRANSFER_DIALOG_H
2#define TRANSFER_DIALOG_H
3
4#include "qwidget.h"
5
6class QLineEdit;
7class QComboBox;
8class QProgressBar;
9class QLabel;
10
11class TransferDialog : public QWidget
12{
13 Q_OBJECT
14 public:
15 TransferDialog(QWidget *parent = NULL, const char *name = NULL);
16 ~TransferDialog();
17
18 public slots:
19 void slotFilename();
20 void slotTransfer();
21
22 private:
23 QLineEdit *filename;
24 QComboBox *protocol;
25 QProgressBar *progressbar;
26 QLabel *statusbar;
27};
28
29#endif
30