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) (side-by-side diff)
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 @@
+#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
+