author | harlekin <harlekin> | 2002-06-13 14:11:20 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-13 14:11:20 (UTC) |
commit | 6780e595e7c2cfebc9e7c095947ce6e963060a79 (patch) (unidiff) | |
tree | a8296a8feea218752eebf9af6d07f5073e08297a | |
parent | 694e0daee5ad40671df0703d9a5e73a8d8da6ee9 (diff) | |
download | opie-6780e595e7c2cfebc9e7c095947ce6e963060a79.zip opie-6780e595e7c2cfebc9e7c095947ce6e963060a79.tar.gz opie-6780e595e7c2cfebc9e7c095947ce6e963060a79.tar.bz2 |
update
-rw-r--r-- | core/applets/obex/obeximpl.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/applets/obex/obeximpl.cc b/core/applets/obex/obeximpl.cc index 1244836..92197ad 100644 --- a/core/applets/obex/obeximpl.cc +++ b/core/applets/obex/obeximpl.cc | |||
@@ -14,74 +14,75 @@ ObexImpl::ObexImpl( ) | |||
14 | : QObject() { | 14 | : QObject() { |
15 | // register to a channel | 15 | // register to a channel |
16 | qWarning( "c'tor" ); | 16 | qWarning( "c'tor" ); |
17 | m_obex = new Obex(this, "obex"); | 17 | m_obex = new Obex(this, "obex"); |
18 | m_sendgui = new ObexDlg(); | 18 | m_sendgui = new ObexDlg(); |
19 | m_recvgui = new ObexInc(); | 19 | m_recvgui = new ObexInc(); |
20 | m_chan = new QCopChannel("QPE/Obex" ); | 20 | m_chan = new QCopChannel("QPE/Obex" ); |
21 | connect(m_chan, SIGNAL(received(const QCString&, const QByteArray& ) ), | 21 | connect(m_chan, SIGNAL(received(const QCString&, const QByteArray& ) ), |
22 | this, SLOT(slotMessage(const QCString&, const QByteArray&) ) ); | 22 | this, SLOT(slotMessage(const QCString&, const QByteArray&) ) ); |
23 | } | 23 | } |
24 | ObexImpl::~ObexImpl() { | 24 | ObexImpl::~ObexImpl() { |
25 | delete m_obex; | 25 | delete m_obex; |
26 | delete m_chan; | 26 | delete m_chan; |
27 | delete m_sendgui; | 27 | delete m_sendgui; |
28 | } | 28 | } |
29 | QRESULT ObexImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { | 29 | QRESULT ObexImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { |
30 | *iface = 0; | 30 | *iface = 0; |
31 | if( uuid == IID_QUnknown ) | 31 | if( uuid == IID_QUnknown ) |
32 | *iface = this; | 32 | *iface = this; |
33 | else if( uuid == IID_ObexInterface ) | 33 | else if( uuid == IID_ObexInterface ) |
34 | *iface = this; | 34 | *iface = this; |
35 | 35 | ||
36 | qWarning("query" ); | 36 | qWarning("query" ); |
37 | if(*iface ) | 37 | if(*iface ) |
38 | (*iface)->addRef(); | 38 | (*iface)->addRef(); |
39 | return QS_OK; | 39 | return QS_OK; |
40 | 40 | ||
41 | } | 41 | } |
42 | void ObexImpl::slotMessage( const QCString& msg, const QByteArray&data ) { | 42 | void ObexImpl::slotMessage( const QCString& msg, const QByteArray&data ) { |
43 | QDataStream stream( data, IO_ReadOnly ); | 43 | QDataStream stream( data, IO_ReadOnly ); |
44 | qWarning("Message %s", msg.data() ); | 44 | qWarning("Message %s", msg.data() ); |
45 | if(msg == "send(QString,QString,QString)" ) { | 45 | if(msg == "send(QString,QString,QString)" ) { |
46 | QString desc; | 46 | QString desc; |
47 | stream >> desc; | 47 | stream >> desc; |
48 | QString filename; | 48 | QString filename; |
49 | stream >> filename; | 49 | stream >> filename; |
50 | m_sendgui->showMaximized(); | 50 | m_sendgui->showMaximized(); |
51 | m_sendgui->lblPath->setText(filename); | 51 | m_sendgui->lblPath->setText(filename); |
52 | connect( (QObject*)m_sendgui->PushButton2, SIGNAL(clicked()), | 52 | connect( (QObject*)m_sendgui->PushButton2, SIGNAL(clicked()), |
53 | this, SLOT(slotCancelSend())); | 53 | this, SLOT(slotCancelSend())); |
54 | m_obex->send(filename ); | 54 | m_obex->send(filename ); |
55 | connect( (QObject*)m_obex, SIGNAL( sent() ), this, | 55 | connect( (QObject*)m_obex, SIGNAL( sent() ), this, |
56 | SLOT( slotSent() ) ); | 56 | SLOT( slotSent() ) ); |
57 | }else if(msg == "receive(bool)" ) { // open a GUI | 57 | }else if(msg == "receive(bool)" ) { // open a GUI |
58 | m_recvgui->showMaximized(); | 58 | m_recvgui->showMaximized(); |
59 | m_obex->receive(); | 59 | m_obex->receive(); |
60 | 60 | ||
61 | } else if (msg =="done(QString)") { | 61 | } else if (msg =="done(QString)") { |
62 | QString filename; | 62 | QString text; |
63 | stream >> filename; | 63 | stream >> text; |
64 | m_sendgui->lblPath->setText(tr("Done transfering " + filename)); | 64 | m_sendgui->lblPath->setText(tr("Done transfering " + text)); |
65 | 65 | ||
66 | } | 66 | } |
67 | } | 67 | } |
68 | 68 | ||
69 | void ObexImpl::slotCancelSend() { | 69 | void ObexImpl::slotCancelSend() { |
70 | // cancel sync process too | 70 | // cancel sync process too |
71 | //m_obex->cancel(); // not ready yet | ||
71 | m_sendgui->hide(); | 72 | m_sendgui->hide(); |
72 | } | 73 | } |
73 | 74 | ||
74 | void ObexImpl::slotDone(bool) { | 75 | void ObexImpl::slotDone(bool) { |
75 | QCopEnvelope e ("QPE/Obex", "done(QString)" ); //but this into a slot | 76 | QCopEnvelope e ("QPE/Obex", "done(QString)" ); //but this into a slot |
76 | e << "Done!"; | 77 | e << "Done!"; |
77 | } | 78 | } |
78 | 79 | ||
79 | void ObexImpl::slotSent() { | 80 | void ObexImpl::slotSent() { |
80 | m_sendgui->lblPath->setText("Done!"); | 81 | m_sendgui->lblPath->setText("Done!"); |
81 | m_sendgui->hide(); | 82 | m_sendgui->hide(); |
82 | } | 83 | } |
83 | 84 | ||
84 | Q_EXPORT_INTERFACE() | 85 | Q_EXPORT_INTERFACE() |
85 | { | 86 | { |
86 | Q_CREATE_INSTANCE( ObexImpl ) | 87 | Q_CREATE_INSTANCE( ObexImpl ) |
87 | } | 88 | } |