summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/panpopup.cpp
authorkorovkin <korovkin>2006-04-03 04:12:19 (UTC)
committer korovkin <korovkin>2006-04-03 04:12:19 (UTC)
commit430017b047c885ba4dfd9f4074f4e4ab130d5709 (patch) (unidiff)
treeed883831f88038163285800ee2d8cc2fbb4faf86 /noncore/net/opietooth/manager/panpopup.cpp
parent812083469c80a0a07ad1ba41d6795e05f950710b (diff)
downloadopie-430017b047c885ba4dfd9f4074f4e4ab130d5709.zip
opie-430017b047c885ba4dfd9f4074f4e4ab130d5709.tar.gz
opie-430017b047c885ba4dfd9f4074f4e4ab130d5709.tar.bz2
Added dialog boxes for PAN and DUN connections.
Added message boxes in order to confirm DUN and PAN disconnections.
Diffstat (limited to 'noncore/net/opietooth/manager/panpopup.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/panpopup.cpp14
1 files changed, 10 insertions, 4 deletions
diff --git a/noncore/net/opietooth/manager/panpopup.cpp b/noncore/net/opietooth/manager/panpopup.cpp
index f02a58c..2fd9eaf 100644
--- a/noncore/net/opietooth/manager/panpopup.cpp
+++ b/noncore/net/opietooth/manager/panpopup.cpp
@@ -1,5 +1,9 @@
1#include <qpe/qcopenvelope_qws.h> 1#include <qpe/qcopenvelope_qws.h>
2#include <qmessagebox.h>
2#include <opie2/odebug.h> 3#include <opie2/odebug.h>
4#include <opie2/oprocess.h>
5#include <qpe/qpeapplication.h>
6#include "pandialog.h"
3using namespace Opie::Core; 7using namespace Opie::Core;
4 8
5#include <qtimer.h> 9#include <qtimer.h>
@@ -45,14 +49,16 @@ PanPopup::~PanPopup() {
45} 49}
46 50
47void PanPopup::slotConnect() { 51void PanPopup::slotConnect() {
48 52 odebug << "connect" << oendl;
49 m_panconnection = new StartPanConnection( m_item->mac() ); 53 PanDialog pandlg(m_item->mac());
50 m_panconnection->start(); 54 QPEApplication::execDialog(&pandlg);
51} 55}
52 56
53void PanPopup::slotDisconnect() { 57void PanPopup::slotDisconnect() {
54 if (!m_panconnection) m_panconnection = new StartPanConnection( m_item->mac() ); 58 if (!m_panconnection)
59 m_panconnection = new StartPanConnection( m_item->mac() );
55 m_panconnection->stop(); 60 m_panconnection->stop();
61 QMessageBox::information(this, tr("Pan Disconnect"), tr("PAN Disconnected"));
56} 62}
57 63
58 64