summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/test/senderui.h
Unidiff
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 @@
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