summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/transferdialog.h
authorjosef <josef>2002-10-13 16:42:36 (UTC)
committer josef <josef>2002-10-13 16:42:36 (UTC)
commit19cf7d4ff5a64aff90e31b29072ce30db6a046ec (patch) (unidiff)
tree9935de353676391f237ebd4e0c0b16d967dee513 /noncore/apps/opie-console/transferdialog.h
parent40e7d87b58e6146944da4613c04bfafc90dbb379 (diff)
downloadopie-19cf7d4ff5a64aff90e31b29072ce30db6a046ec.zip
opie-19cf7d4ff5a64aff90e31b29072ce30db6a046ec.tar.gz
opie-19cf7d4ff5a64aff90e31b29072ce30db6a046ec.tar.bz2
- let metafactory manage new ReceiveLayer objects
- include Receive::SX, ::SY, ::SZ into default.cpp - use metafactory in transferdialog for receive operations too
Diffstat (limited to 'noncore/apps/opie-console/transferdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/transferdialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/transferdialog.h b/noncore/apps/opie-console/transferdialog.h
index a567161..de3a5cf 100644
--- a/noncore/apps/opie-console/transferdialog.h
+++ b/noncore/apps/opie-console/transferdialog.h
@@ -10,6 +10,7 @@ class QLabel;
10class QPushButton; 10class QPushButton;
11class MainWindow; 11class MainWindow;
12class FileTransferLayer; 12class FileTransferLayer;
13class ReceiveLayer;
13 14
14class TransferDialog : public QDialog 15class TransferDialog : public QDialog
15{ 16{
@@ -25,6 +26,7 @@ class TransferDialog : public QDialog
25 void slotProgress(const QString&, int, int, int, int, int); 26 void slotProgress(const QString&, int, int, int, int, int);
26 void slotError(int error, const QString& message); 27 void slotError(int error, const QString& message);
27 void slotSent(); 28 void slotSent();
29 void slotReceived(const QString& file);
28 void slotMode(int id); 30 void slotMode(int id);
29 31
30 private: 32 private:
@@ -41,6 +43,7 @@ class TransferDialog : public QDialog
41 QPushButton *ok, *cancel, *selector; 43 QPushButton *ok, *cancel, *selector;
42 MainWindow* m_win; 44 MainWindow* m_win;
43 FileTransferLayer* m_lay; 45 FileTransferLayer* m_lay;
46 ReceiveLayer *m_recvlay;
44 int m_transfermode; 47 int m_transfermode;
45}; 48};
46 49