summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/test/senderui.h
authorzecke <zecke>2002-10-11 15:03:33 (UTC)
committer zecke <zecke>2002-10-11 15:03:33 (UTC)
commit4dff3be36a89c2e864278ce85c477f923c4e3407 (patch) (side-by-side diff)
tree2dc6967668d6ee1679ff8291678f5d60d81e411d /noncore/apps/opie-console/test/senderui.h
parent1cb2d6f75e3ac959fba041e46f3894d261f13735 (diff)
downloadopie-4dff3be36a89c2e864278ce85c477f923c4e3407.zip
opie-4dff3be36a89c2e864278ce85c477f923c4e3407.tar.gz
opie-4dff3be36a89c2e864278ce85c477f923c4e3407.tar.bz2
Make use of the new file transfer...
Diffstat (limited to 'noncore/apps/opie-console/test/senderui.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/test/senderui.h10
1 files changed, 8 insertions, 2 deletions
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 @@
#include "sender.h"
class IOSerial;
-class SzTransfer;
+class FileTransfer;
+class QSocketNotifier;
+class OProcess;
class SenderUI : public Sender {
Q_OBJECT
public:
@@ -14,13 +16,17 @@ public:
~SenderUI();
public slots:
+ void send();
void slotSendFile();
void slotSend();
void got(const QByteArray& );
void fileTransComplete();
private:
IOSerial* ser;
- SzTransfer* sz;
+ FileTransfer* sz;
+ int m_fd;
+ QSocketNotifier* m_sock;
+ OProcess* m_proc;
};