summaryrefslogtreecommitdiff
path: root/core/applets/obex/obeximpl.cc
Side-by-side diff
Diffstat (limited to 'core/applets/obex/obeximpl.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/obex/obeximpl.cc27
1 files changed, 24 insertions, 3 deletions
diff --git a/core/applets/obex/obeximpl.cc b/core/applets/obex/obeximpl.cc
index e787fca..616f3b1 100644
--- a/core/applets/obex/obeximpl.cc
+++ b/core/applets/obex/obeximpl.cc
@@ -3,2 +3,3 @@
#include <qpe/qcom.h>
+#include <qlabel.h>
@@ -16,2 +17,4 @@ ObexImpl::ObexImpl( )
m_obex = new Obex(this, "obex");
+ m_sendgui = new ObexDlg();
+ m_recvgui = new ObexInc();
m_chan = new QCopChannel("QPE/Obex" );
@@ -23,2 +26,3 @@ ObexImpl::~ObexImpl() {
delete m_chan;
+ delete m_sendgui;
}
@@ -45,8 +49,19 @@ void ObexImpl::slotMessage( const QCString& msg, const QByteArray&data ) {
stream >> filename;
+ m_sendgui->showMaximized();
+ m_sendgui->lblPath->setText(filename);
+ connect( (QObject*)m_sendgui->PushButton2, SIGNAL(clicked()),
+ this, SLOT(slotCancelSend()));
m_obex->send(filename );
- // QCopEnvelope e ("QPE/Obex", "done(QString)" ); but this into a slot
+ // QCopEnvelope e ("QPE/Obex", "done(QString)" ); //but this into a slot
//e << filename;
+
}else if(msg == "receive(bool)" ) { // open a GUI
- m_obex->receive();
- ;
+ m_recvgui->showMaximized();
+ m_obex->receive();
+
+ } else if (msg =="done(QString)") {
+ QString filename;
+ stream >> filename;
+ m_sendgui->lblPath->setText(tr("Done transfering " + filename));
+
}
@@ -54,2 +69,8 @@ void ObexImpl::slotMessage( const QCString& msg, const QByteArray&data ) {
+void ObexImpl::slotCancelSend() {
+ // cancel sync process too
+ m_sendgui->hide();
+}
+
+
Q_EXPORT_INTERFACE()