-rw-r--r-- | noncore/apps/opie-console/default.cpp | 16 | ||||
-rw-r--r-- | noncore/apps/opie-console/default.h | 4 | ||||
-rw-r--r-- | noncore/apps/opie-console/metafactory.cpp | 23 | ||||
-rw-r--r-- | noncore/apps/opie-console/metafactory.h | 8 | ||||
-rw-r--r-- | noncore/apps/opie-console/transferdialog.cpp | 47 | ||||
-rw-r--r-- | noncore/apps/opie-console/transferdialog.h | 3 |
6 files changed, 90 insertions, 11 deletions
diff --git a/noncore/apps/opie-console/default.cpp b/noncore/apps/opie-console/default.cpp index 4853785..dd9681d 100644 --- a/noncore/apps/opie-console/default.cpp +++ b/noncore/apps/opie-console/default.cpp | |||
@@ -1,8 +1,9 @@ | |||
1 | #include "io_serial.h" | 1 | #include "io_serial.h" |
2 | #include "io_irda.h" | 2 | #include "io_irda.h" |
3 | #include "io_bt.h" | 3 | #include "io_bt.h" |
4 | #include "filetransfer.h" | 4 | #include "filetransfer.h" |
5 | #include "filereceive.h" | ||
5 | #include "serialconfigwidget.h" | 6 | #include "serialconfigwidget.h" |
6 | #include "irdaconfigwidget.h" | 7 | #include "irdaconfigwidget.h" |
7 | #include "btconfigwidget.h" | 8 | #include "btconfigwidget.h" |
8 | #include "modemconfigwidget.h" | 9 | #include "modemconfigwidget.h" |
@@ -22,8 +23,19 @@ extern "C" { | |||
22 | FileTransferLayer* newSXTransfer(IOLayer* lay) { | 23 | FileTransferLayer* newSXTransfer(IOLayer* lay) { |
23 | return new FileTransfer(FileTransfer ::SX, lay ); | 24 | return new FileTransfer(FileTransfer ::SX, lay ); |
24 | } | 25 | } |
25 | 26 | ||
27 | // FILE Transfer Receive Stuff | ||
28 | ReceiveLayer* newSZReceive(IOLayer* lay) { | ||
29 | return new FileReceive( FileReceive::SZ, lay ); | ||
30 | } | ||
31 | ReceiveLayer* newSYReceive(IOLayer* lay) { | ||
32 | return new FileReceive( FileReceive::SY, lay ); | ||
33 | } | ||
34 | ReceiveLayer* newSXReceive(IOLayer* lay) { | ||
35 | return new FileReceive(FileReceive::SX, lay ); | ||
36 | } | ||
37 | |||
26 | // Layer stuff | 38 | // Layer stuff |
27 | IOLayer* newSerialLayer( const Profile& prof) { | 39 | IOLayer* newSerialLayer( const Profile& prof) { |
28 | return new IOSerial( prof ); | 40 | return new IOSerial( prof ); |
29 | } | 41 | } |
@@ -65,8 +77,12 @@ Default::Default( MetaFactory* fact ) { | |||
65 | fact->addFileTransferLayer( "SZ", QObject::tr("Z-Modem"), newSZTransfer ); | 77 | fact->addFileTransferLayer( "SZ", QObject::tr("Z-Modem"), newSZTransfer ); |
66 | fact->addFileTransferLayer( "SY", QObject::tr("Y-Modem"), newSYTransfer ); | 78 | fact->addFileTransferLayer( "SY", QObject::tr("Y-Modem"), newSYTransfer ); |
67 | fact->addFileTransferLayer( "SX", QObject::tr("X-Modem"), newSXTransfer ); | 79 | fact->addFileTransferLayer( "SX", QObject::tr("X-Modem"), newSXTransfer ); |
68 | 80 | ||
81 | fact->addReceiveLayer( "SZ", QObject::tr("Z-Modem"), newSZReceive ); | ||
82 | fact->addReceiveLayer( "SY", QObject::tr("Y-Modem"), newSYReceive ); | ||
83 | fact->addReceiveLayer( "SX", QObject::tr("X-Modem"), newSXReceive ); | ||
84 | |||
69 | fact->addIOLayerFactory( "serial", QObject::tr("Serial"), newSerialLayer ); | 85 | fact->addIOLayerFactory( "serial", QObject::tr("Serial"), newSerialLayer ); |
70 | fact->addIOLayerFactory( "irda", QObject::tr("Infrared"), newIrDaLayer ); | 86 | fact->addIOLayerFactory( "irda", QObject::tr("Infrared"), newIrDaLayer ); |
71 | fact->addIOLayerFactory( "bt", QObject::tr("Bluetooth"), newBTLayer ); | 87 | fact->addIOLayerFactory( "bt", QObject::tr("Bluetooth"), newBTLayer ); |
72 | 88 | ||
diff --git a/noncore/apps/opie-console/default.h b/noncore/apps/opie-console/default.h index 4d51db8..03616f3 100644 --- a/noncore/apps/opie-console/default.h +++ b/noncore/apps/opie-console/default.h | |||
@@ -9,8 +9,12 @@ extern "C" { | |||
9 | FileTransferLayer* newSZTransfer(IOLayer*); | 9 | FileTransferLayer* newSZTransfer(IOLayer*); |
10 | FileTransferLayer* newSYTransfer(IOLayer*); | 10 | FileTransferLayer* newSYTransfer(IOLayer*); |
11 | FileTransferLayer* newSXTransfer(IOLayer*); | 11 | FileTransferLayer* newSXTransfer(IOLayer*); |
12 | 12 | ||
13 | ReceiveLayer* newSZReceive(IOLayer*); | ||
14 | ReceiveLayer* newSYReceive(IOLayer*); | ||
15 | ReceiveLayer* newSXReceive(IOLayer*); | ||
16 | |||
13 | IOLayer* newSerialLayer(const Profile&); | 17 | IOLayer* newSerialLayer(const Profile&); |
14 | IOLayer* newBTLayer(const Profile& ); | 18 | IOLayer* newBTLayer(const Profile& ); |
15 | IOLayer* newIrDaLayer(const Profile& ); | 19 | IOLayer* newIrDaLayer(const Profile& ); |
16 | 20 | ||
diff --git a/noncore/apps/opie-console/metafactory.cpp b/noncore/apps/opie-console/metafactory.cpp index 901f29f..09ba586 100644 --- a/noncore/apps/opie-console/metafactory.cpp +++ b/noncore/apps/opie-console/metafactory.cpp | |||
@@ -29,8 +29,14 @@ void MetaFactory::addFileTransferLayer( const QCString& name, | |||
29 | filelayer lay) { | 29 | filelayer lay) { |
30 | m_strings.insert(str, name ); | 30 | m_strings.insert(str, name ); |
31 | m_fileFact.insert( str, lay ); | 31 | m_fileFact.insert( str, lay ); |
32 | } | 32 | } |
33 | void MetaFactory::addReceiveLayer( const QCString& name, | ||
34 | const QString& str, | ||
35 | receivelayer lay) { | ||
36 | m_strings.insert(str, name ); | ||
37 | m_receiveFact.insert( str, lay ); | ||
38 | } | ||
33 | void MetaFactory::addEmulationLayer( const QCString& name, | 39 | void MetaFactory::addEmulationLayer( const QCString& name, |
34 | const QString& str, | 40 | const QString& str, |
35 | emulationLayer em) { | 41 | emulationLayer em) { |
36 | m_strings.insert(str, name ); | 42 | m_strings.insert(str, name ); |
@@ -67,8 +73,16 @@ QStringList MetaFactory::fileTransferLayers()const { | |||
67 | list << it.key(); | 73 | list << it.key(); |
68 | } | 74 | } |
69 | return list; | 75 | return list; |
70 | } | 76 | } |
77 | QStringList MetaFactory::receiveLayers()const { | ||
78 | QStringList list; | ||
79 | QMap<QString, receivelayer>::ConstIterator it; | ||
80 | for ( it = m_receiveFact.begin(); it != m_receiveFact.end(); ++it ) { | ||
81 | list << it.key(); | ||
82 | } | ||
83 | return list; | ||
84 | } | ||
71 | QStringList MetaFactory::emulationLayers()const { | 85 | QStringList MetaFactory::emulationLayers()const { |
72 | QStringList list; | 86 | QStringList list; |
73 | QMap<QString, emulationLayer>::ConstIterator it; | 87 | QMap<QString, emulationLayer>::ConstIterator it; |
74 | for ( it = m_emu.begin(); it != m_emu.end(); ++it ) { | 88 | for ( it = m_emu.begin(); it != m_emu.end(); ++it ) { |
@@ -134,8 +148,17 @@ FileTransferLayer* MetaFactory::newFileTransfer(const QString& str, IOLayer* lay | |||
134 | file = (*(it.data() ) )(lay); | 148 | file = (*(it.data() ) )(lay); |
135 | } | 149 | } |
136 | return file; | 150 | return file; |
137 | } | 151 | } |
152 | ReceiveLayer* MetaFactory::newReceive(const QString& str, IOLayer* lay ) { | ||
153 | ReceiveLayer* file = 0l; | ||
154 | QMap<QString, receivelayer>::Iterator it; | ||
155 | it = m_receiveFact.find( str ); | ||
156 | if ( it != m_receiveFact.end() ) { | ||
157 | file = (*(it.data() ) )(lay); | ||
158 | } | ||
159 | return file; | ||
160 | } | ||
138 | QCString MetaFactory::internal( const QString& str )const { | 161 | QCString MetaFactory::internal( const QString& str )const { |
139 | return m_strings[str]; | 162 | return m_strings[str]; |
140 | } | 163 | } |
141 | QString MetaFactory::external( const QCString& str )const { | 164 | QString MetaFactory::external( const QCString& str )const { |
diff --git a/noncore/apps/opie-console/metafactory.h b/noncore/apps/opie-console/metafactory.h index 7f0699b..d6aa5e2 100644 --- a/noncore/apps/opie-console/metafactory.h +++ b/noncore/apps/opie-console/metafactory.h | |||
@@ -12,8 +12,9 @@ | |||
12 | #include <qpe/config.h> | 12 | #include <qpe/config.h> |
13 | 13 | ||
14 | #include "io_layer.h" | 14 | #include "io_layer.h" |
15 | #include "file_layer.h" | 15 | #include "file_layer.h" |
16 | #include "receive_layer.h" | ||
16 | #include "profile.h" | 17 | #include "profile.h" |
17 | #include "profiledialogwidget.h" | 18 | #include "profiledialogwidget.h" |
18 | #include "emulation_layer.h" | 19 | #include "emulation_layer.h" |
19 | 20 | ||
@@ -22,8 +23,9 @@ class MetaFactory { | |||
22 | public: | 23 | public: |
23 | typedef ProfileDialogWidget* (*configWidget)(const QString&, QWidget* parent); | 24 | typedef ProfileDialogWidget* (*configWidget)(const QString&, QWidget* parent); |
24 | typedef IOLayer* (*iolayer)(const Profile& ); | 25 | typedef IOLayer* (*iolayer)(const Profile& ); |
25 | typedef FileTransferLayer* (*filelayer)(IOLayer*); | 26 | typedef FileTransferLayer* (*filelayer)(IOLayer*); |
27 | typedef ReceiveLayer* (*receivelayer)(IOLayer*); | ||
26 | typedef EmulationLayer* (*emulationLayer)(WidgetLayer* ); | 28 | typedef EmulationLayer* (*emulationLayer)(WidgetLayer* ); |
27 | 29 | ||
28 | MetaFactory(); | 30 | MetaFactory(); |
29 | ~MetaFactory(); | 31 | ~MetaFactory(); |
@@ -51,8 +53,11 @@ public: | |||
51 | */ | 53 | */ |
52 | void addFileTransferLayer( const QCString& name, | 54 | void addFileTransferLayer( const QCString& name, |
53 | const QString&, | 55 | const QString&, |
54 | filelayer ); | 56 | filelayer ); |
57 | void addReceiveLayer( const QCString& name, | ||
58 | const QString&, | ||
59 | receivelayer); | ||
55 | 60 | ||
56 | /** | 61 | /** |
57 | * adds a Factory for Emulation to the Layer.. | 62 | * adds a Factory for Emulation to the Layer.. |
58 | */ | 63 | */ |
@@ -68,8 +73,9 @@ public: | |||
68 | * Terminal Configuration widgets | 73 | * Terminal Configuration widgets |
69 | */ | 74 | */ |
70 | QStringList terminalWidgets()const; | 75 | QStringList terminalWidgets()const; |
71 | QStringList fileTransferLayers()const; | 76 | QStringList fileTransferLayers()const; |
77 | QStringList receiveLayers()const; | ||
72 | QStringList emulationLayers()const; | 78 | QStringList emulationLayers()const; |
73 | 79 | ||
74 | /** | 80 | /** |
75 | * the generation... | 81 | * the generation... |
@@ -78,8 +84,9 @@ public: | |||
78 | ProfileDialogWidget *newConnectionPlugin ( const QString&, QWidget* ); | 84 | ProfileDialogWidget *newConnectionPlugin ( const QString&, QWidget* ); |
79 | ProfileDialogWidget* newTerminalPlugin( const QString&, QWidget* ); | 85 | ProfileDialogWidget* newTerminalPlugin( const QString&, QWidget* ); |
80 | EmulationLayer* newEmulationLayer(const QString&, WidgetLayer* ); | 86 | EmulationLayer* newEmulationLayer(const QString&, WidgetLayer* ); |
81 | FileTransferLayer* newFileTransfer(const QString&, IOLayer* ); | 87 | FileTransferLayer* newFileTransfer(const QString&, IOLayer* ); |
88 | ReceiveLayer* newReceive(const QString&, IOLayer* ); | ||
82 | 89 | ||
83 | /* | 90 | /* |
84 | * internal takes the maybe translated | 91 | * internal takes the maybe translated |
85 | * public QString and maps it to the internal | 92 | * public QString and maps it to the internal |
@@ -99,8 +106,9 @@ private: | |||
99 | QMap<QString, configWidget> m_conFact; | 106 | QMap<QString, configWidget> m_conFact; |
100 | QMap<QString, configWidget> m_termFact; | 107 | QMap<QString, configWidget> m_termFact; |
101 | QMap<QString, iolayer> m_layerFact; | 108 | QMap<QString, iolayer> m_layerFact; |
102 | QMap<QString, filelayer> m_fileFact; | 109 | QMap<QString, filelayer> m_fileFact; |
110 | QMap<QString, receivelayer> m_receiveFact; | ||
103 | QMap<QString, emulationLayer> m_emu; | 111 | QMap<QString, emulationLayer> m_emu; |
104 | }; | 112 | }; |
105 | 113 | ||
106 | 114 | ||
diff --git a/noncore/apps/opie-console/transferdialog.cpp b/noncore/apps/opie-console/transferdialog.cpp index d3b9c0a..0083cc1 100644 --- a/noncore/apps/opie-console/transferdialog.cpp +++ b/noncore/apps/opie-console/transferdialog.cpp | |||
@@ -9,10 +9,10 @@ | |||
9 | #include <qbuttongroup.h> | 9 | #include <qbuttongroup.h> |
10 | 10 | ||
11 | #include <opie/ofiledialog.h> | 11 | #include <opie/ofiledialog.h> |
12 | 12 | ||
13 | #include "filetransfer.h" | 13 | #include "file_layer.h" |
14 | #include "io_serial.h" | 14 | #include "receive_layer.h" |
15 | #include "metafactory.h" | 15 | #include "metafactory.h" |
16 | #include "mainwindow.h" | 16 | #include "mainwindow.h" |
17 | 17 | ||
18 | #include "transferdialog.h" | 18 | #include "transferdialog.h" |
@@ -20,8 +20,9 @@ | |||
20 | TransferDialog::TransferDialog(MainWindow *parent, const char *name) | 20 | TransferDialog::TransferDialog(MainWindow *parent, const char *name) |
21 | : QDialog(0l, 0l, true), m_win(parent) | 21 | : QDialog(0l, 0l, true), m_win(parent) |
22 | { | 22 | { |
23 | m_lay = 0l; | 23 | m_lay = 0l; |
24 | m_recvlay = 0l; | ||
24 | QVBoxLayout *vbox, *vbox2; | 25 | QVBoxLayout *vbox, *vbox2; |
25 | QHBoxLayout *hbox, *hbox2, *hbox3; | 26 | QHBoxLayout *hbox, *hbox2, *hbox3; |
26 | QLabel *file, *mode, *progress, *status; | 27 | QLabel *file, *mode, *progress, *status; |
27 | QButtonGroup *group; | 28 | QButtonGroup *group; |
@@ -114,32 +115,49 @@ void TransferDialog::slotTransfer() | |||
114 | 115 | ||
115 | if(m_transfermode == id_send) statusbar->setText(QObject::tr("Sending...")); | 116 | if(m_transfermode == id_send) statusbar->setText(QObject::tr("Sending...")); |
116 | else statusbar->setText(QObject::tr("Receiving...")); | 117 | else statusbar->setText(QObject::tr("Receiving...")); |
117 | 118 | ||
118 | m_lay = m_win->factory()->newFileTransfer(protocol->currentText(), m_win->currentSession()->layer()); | ||
119 | if(m_transfermode == id_send) | 119 | if(m_transfermode == id_send) |
120 | { | 120 | { |
121 | m_lay = m_win->factory()->newFileTransfer(protocol->currentText(), m_win->currentSession()->layer()); | ||
121 | m_lay->sendFile(filename->text()); | 122 | m_lay->sendFile(filename->text()); |
123 | |||
124 | connect(m_lay, SIGNAL(progress(const QString&, int, int, int, int, int)), | ||
125 | SLOT(slotProgress(const QString&, int, int, int, int, int))); | ||
126 | connect(m_lay, SIGNAL(error(int, const QString&)), SLOT(slotError(int, const QString&))); | ||
127 | connect(m_lay, SIGNAL(sent()), SLOT(slotSent())); | ||
122 | } | 128 | } |
123 | else | 129 | else |
124 | { | 130 | { |
125 | } | 131 | m_recvlay = m_win->factory()->newReceive(protocol->currentText(), m_win->currentSession()->layer()); |
132 | m_recvlay->receive(); | ||
126 | 133 | ||
127 | connect(m_lay, SIGNAL(progress(const QString&, int, int, int, int, int)), SLOT(slotProgress(const QString&, int, int, int, int, int))); | 134 | connect(m_recvlay, SIGNAL(progress(const QString&, int, int, int, int, int)), |
128 | connect(m_lay, SIGNAL(error(int, const QString&)), SLOT(slotError(int, const QString&))); | 135 | SLOT(slotProgress(const QString&, int, int, int, int, int))); |
129 | connect(m_lay, SIGNAL(sent()), SLOT(slotSent())); | 136 | connect(m_recvlay, SIGNAL(error(int, const QString&)), SLOT(slotError(int, const QString&))); |
137 | connect(m_recvlay, SIGNAL(received(const QString&)), SLOT(slotReceived(const QString&))); | ||
138 | } | ||
130 | } | 139 | } |
131 | 140 | ||
132 | void TransferDialog::slotCancel() | 141 | void TransferDialog::slotCancel() |
133 | { | 142 | { |
134 | ok->setEnabled(true); | 143 | ok->setEnabled(true); |
135 | statusbar->setText(QObject::tr("Ready")); | 144 | statusbar->setText(QObject::tr("Ready")); |
136 | 145 | ||
137 | if(m_lay) | 146 | if((m_lay) || (m_recvlay)) |
138 | { | 147 | { |
139 | m_lay->cancel(); | 148 | if(m_lay) |
140 | delete m_lay; | 149 | { |
141 | m_lay = 0l; | 150 | m_lay->cancel(); |
151 | delete m_lay; | ||
152 | m_lay = 0l; | ||
153 | } | ||
154 | if(m_recvlay) | ||
155 | { | ||
156 | m_recvlay->cancel(); | ||
157 | delete m_recvlay; | ||
158 | m_recvlay = 0l; | ||
159 | } | ||
142 | QMessageBox::information(this, | 160 | QMessageBox::information(this, |
143 | QObject::tr("Cancelled"), | 161 | QObject::tr("Cancelled"), |
144 | QObject::tr("The file transfer has been cancelled.")); | 162 | QObject::tr("The file transfer has been cancelled.")); |
145 | } | 163 | } |
@@ -200,8 +218,15 @@ void TransferDialog::slotSent() | |||
200 | ok->setEnabled(true); | 218 | ok->setEnabled(true); |
201 | statusbar->setText(QObject::tr("Ready")); | 219 | statusbar->setText(QObject::tr("Ready")); |
202 | } | 220 | } |
203 | 221 | ||
222 | void TransferDialog::slotReceived(const QString& file) | ||
223 | { | ||
224 | QMessageBox::information(this, QObject::tr("Sent"), QObject::tr("File has been received as %1.").arg(file)); | ||
225 | ok->setEnabled(true); | ||
226 | statusbar->setText(QObject::tr("Ready")); | ||
227 | } | ||
228 | |||
204 | void TransferDialog::slotMode(int id) | 229 | void TransferDialog::slotMode(int id) |
205 | { | 230 | { |
206 | if(id == id_send) | 231 | if(id == id_send) |
207 | { | 232 | { |
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 | |||
@@ -9,8 +9,9 @@ class QProgressBar; | |||
9 | class QLabel; | 9 | class QLabel; |
10 | class QPushButton; | 10 | class QPushButton; |
11 | class MainWindow; | 11 | class MainWindow; |
12 | class FileTransferLayer; | 12 | class FileTransferLayer; |
13 | class ReceiveLayer; | ||
13 | 14 | ||
14 | class TransferDialog : public QDialog | 15 | class TransferDialog : public QDialog |
15 | { | 16 | { |
16 | Q_OBJECT | 17 | Q_OBJECT |
@@ -24,8 +25,9 @@ class TransferDialog : public QDialog | |||
24 | void slotCancel(); | 25 | void slotCancel(); |
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: |
31 | enum Modes | 33 | enum Modes |
@@ -40,8 +42,9 @@ class TransferDialog : public QDialog | |||
40 | QLabel *statusbar; | 42 | QLabel *statusbar; |
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 | ||
47 | #endif | 50 | #endif |