summaryrefslogtreecommitdiff
authorzecke <zecke>2002-10-11 15:03:33 (UTC)
committer zecke <zecke>2002-10-11 15:03:33 (UTC)
commit4dff3be36a89c2e864278ce85c477f923c4e3407 (patch) (unidiff)
tree2dc6967668d6ee1679ff8291678f5d60d81e411d
parent1cb2d6f75e3ac959fba041e46f3894d261f13735 (diff)
downloadopie-4dff3be36a89c2e864278ce85c477f923c4e3407.zip
opie-4dff3be36a89c2e864278ce85c477f923c4e3407.tar.gz
opie-4dff3be36a89c2e864278ce85c477f923c4e3407.tar.bz2
Make use of the new file transfer...
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/test/console.pro6
-rw-r--r--noncore/apps/opie-console/test/senderui.cpp18
-rw-r--r--noncore/apps/opie-console/test/senderui.h10
3 files changed, 23 insertions, 11 deletions
diff --git a/noncore/apps/opie-console/test/console.pro b/noncore/apps/opie-console/test/console.pro
index b10b651..f5761e2 100644
--- a/noncore/apps/opie-console/test/console.pro
+++ b/noncore/apps/opie-console/test/console.pro
@@ -3,13 +3,13 @@ TEMPLATE = app
3 CONFIG = qt debug 3 CONFIG = qt debug
4#DESTDIR = $(OPIEDIR)/bin 4#DESTDIR = $(OPIEDIR)/bin
5HEADERS = ../io_layer.h ../io_serial.h ../sz_transfer.h ../file_layer.h\ 5HEADERS = ../io_layer.h ../io_serial.h ../sz_transfer.h ../file_layer.h\
6 senderui.h ../profile.h 6 senderui.h ../profile.h ../filetransfer.h
7SOURCES = ../io_layer.cpp ../io_serial.cpp \ 7SOURCES = ../io_layer.cpp ../io_serial.cpp \
8 ../profile.cpp ../sz_transfer.cpp ../file_layer.cpp\ 8 ../profile.cpp ../sz_transfer.cpp ../file_layer.cpp\
9 main.cpp senderui.cpp 9 main.cpp senderui.cpp ../filetransfer.cpp
10INTERFACES = sender.ui 10INTERFACES = sender.ui
11INCLUDEPATH += $(OPIEDIR)/include 11INCLUDEPATH += $(OPIEDIR)/include
12DEPENDPATH += $(OPIEDIR)/include 12DEPENDPATH += $(OPIEDIR)/include
13LIBS += -lqpe -lopie 13LIBS += -lqpe -lopie
14TARGET = test 14TARGET = test
15 15
diff --git a/noncore/apps/opie-console/test/senderui.cpp b/noncore/apps/opie-console/test/senderui.cpp
index 24d3eb2..3d7c534 100644
--- a/noncore/apps/opie-console/test/senderui.cpp
+++ b/noncore/apps/opie-console/test/senderui.cpp
@@ -1,12 +1,16 @@
1#include <stdlib.h> 1#include <stdlib.h>
2#include <stdio.h> 2#include <stdio.h>
3#include <fcntl.h>
4#include <sys/termios.h>
3 5
4#include <qmultilineedit.h> 6#include <qmultilineedit.h>
7#include <qsocketnotifier.h>
5 8
6#include "../profile.h" 9#include "../profile.h"
7#include "../io_serial.h" 10#include "../io_serial.h"
8#include "../sz_transfer.h" 11#include "../filetransfer.h"
9 12
13#include <opie/oprocess.h>
10 14
11#include "senderui.h" 15#include "senderui.h"
12 16
@@ -15,7 +19,7 @@ SenderUI::SenderUI()
15 19
16 /* we do that manually */ 20 /* we do that manually */
17 Profile prof; 21 Profile prof;
18 QString str = "/dev/ttyS1"; 22 QString str = "/dev/ttyS0";
19 prof.writeEntry("Device",str ); 23 prof.writeEntry("Device",str );
20 prof.writeEntry("Baud", 115200 ); 24 prof.writeEntry("Baud", 115200 );
21 25
@@ -30,17 +34,16 @@ SenderUI::SenderUI()
30 qWarning("could not open"); 34 qWarning("could not open");
31 35
32 36
33
34} 37}
35SenderUI::~SenderUI() { 38SenderUI::~SenderUI() {
36 39
37} 40}
38void SenderUI::slotSendFile() { 41void SenderUI::slotSendFile() {
39 42
40 sz = new SzTransfer(SzTransfer::SZ, ser); 43 sz = new FileTransfer(FileTransfer::SZ, ser);
41 sz->sendFile("/home/jake/test"); 44 sz->sendFile("/home/ich/bootopie-v06-13.jffs2");
42 45
43 connect (sz, SIGNAL(sent()), 46 connect (sz, SIGNAL(sent()),
44 this, SLOT(fileTransComplete())); 47 this, SLOT(fileTransComplete()));
45} 48}
46 49
@@ -60,3 +63,6 @@ void SenderUI::fileTransComplete() {
60 63
61 qWarning("file transfer compete"); 64 qWarning("file transfer compete");
62} 65}
66void SenderUI::send() {
67
68}
diff --git a/noncore/apps/opie-console/test/senderui.h b/noncore/apps/opie-console/test/senderui.h
index f6230cc..5e613cd 100644
--- a/noncore/apps/opie-console/test/senderui.h
+++ b/noncore/apps/opie-console/test/senderui.h
@@ -6,7 +6,9 @@
6#include "sender.h" 6#include "sender.h"
7 7
8class IOSerial; 8class IOSerial;
9class SzTransfer; 9class FileTransfer;
10class QSocketNotifier;
11class OProcess;
10class SenderUI : public Sender { 12class SenderUI : public Sender {
11 Q_OBJECT 13 Q_OBJECT
12public: 14public:
@@ -14,13 +16,17 @@ public:
14 ~SenderUI(); 16 ~SenderUI();
15 17
16public slots: 18public slots:
19 void send();
17 void slotSendFile(); 20 void slotSendFile();
18 void slotSend(); 21 void slotSend();
19 void got(const QByteArray& ); 22 void got(const QByteArray& );
20 void fileTransComplete(); 23 void fileTransComplete();
21private: 24private:
22 IOSerial* ser; 25 IOSerial* ser;
23 SzTransfer* sz; 26 FileTransfer* sz;
27 int m_fd;
28 QSocketNotifier* m_sock;
29 OProcess* m_proc;
24}; 30};
25 31
26 32