summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcpopup.cpp
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcpopup.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcpopup.cpp44
1 files changed, 30 insertions, 14 deletions
diff --git a/noncore/net/opietooth/manager/rfcpopup.cpp b/noncore/net/opietooth/manager/rfcpopup.cpp
index 54f1eb7..7711f0a 100644
--- a/noncore/net/opietooth/manager/rfcpopup.cpp
+++ b/noncore/net/opietooth/manager/rfcpopup.cpp
@@ -3,47 +3,60 @@
3#include "rfcpopup.h" 3#include "rfcpopup.h"
4#include "rfcommassigndialogimpl.h" 4#include "rfcommassigndialogimpl.h"
5 5
6/* OPIE */ 6/* OPIE */
7#include <qpe/qpeapplication.h> 7#include <qpe/qpeapplication.h>
8#include <opie2/odebug.h> 8#include <opie2/odebug.h>
9#include <opie2/oprocess.h>
10
9using namespace Opie::Core; 11using namespace Opie::Core;
10 12
11/* QT */ 13/* QT */
12#include <qtimer.h> 14#include <qtimer.h>
13 15
14using namespace OpieTooth; 16using namespace OpieTooth;
15 17
16/* 18/*
17 * c'tor init the QAction 19 * c'tor init the QAction
18 */ 20 */
19RfcCommPopup::RfcCommPopup( OpieTooth::BTDeviceItem* item ) 21RfcCommPopup::RfcCommPopup(const OpieTooth::Services& service,
20 : QPopupMenu() 22 OpieTooth::BTDeviceItem* item)
23 : QPopupMenu(), m_service(service)
21{ 24{
22 owarn << "RfcCommPopup c'tor" << oendl; 25 owarn << "RfcCommPopup c'tor" << oendl;
23 26
24 QAction* a; 27 QAction* a;
28 int port = service.protocolDescriptorList().last().port();
29 QString mac = item->mac();
30 unsigned int i;
25 31
26 32 procId = -1;
27 m_item = item; 33 m_item = item;
28 34
29 /* connect action */ 35 for (i = 0; i < sizeof(PPPDialog::conns) / sizeof(Connection); i++) {
30 a = new QAction( ); // so it's get deleted 36 if (PPPDialog::conns[i].port == port &&
31 a->setText("Connect"); 37 PPPDialog::conns[i].btAddr == mac &&
32 a->addTo( this ); 38 PPPDialog::conns[i].proc.isRunning()) {
33 connect( a, SIGNAL( activated() ),
34 this, SLOT( slotConnect() ) );
35
36
37 /* disconnect action */ 39 /* disconnect action */
38 a = new QAction( ); 40 a = new QAction( );
39 a->setText("Disconnect"); 41 a->setText("Disconnect");
40 a->addTo( this ); 42 a->addTo( this );
41 connect( a, SIGNAL( activated() ) , 43 connect( a, SIGNAL( activated() ) ,
42 this, SLOT( slotDisconnect() ) ); 44 this, SLOT( slotDisconnect() ) );
43 45 procId = i;
46 break;
47 }
48 }
49 if (procId == -1) {
50 /* connect action */
51 a = new QAction( ); // so it's get deleted
52 a->setText("Connect");
53 a->addTo( this );
54 connect( a, SIGNAL( activated() ),
55 this, SLOT( slotConnect() ) );
56 }
44 57
45 /* foo action */ 58 /* foo action */
46 a = new QAction( ); 59 a = new QAction( );
47 a->setText("Bind table"); 60 a->setText("Bind table");
48 a->addTo( this ); 61 a->addTo( this );
49 connect( a, SIGNAL( activated() ), 62 connect( a, SIGNAL( activated() ),
@@ -71,20 +84,23 @@ RfcCommPopup::~RfcCommPopup()
71 84
72void RfcCommPopup::slotConnect() 85void RfcCommPopup::slotConnect()
73{ 86{
74 87
75 owarn << "connect" << oendl; 88 owarn << "connect" << oendl;
76 89
77 PPPDialog pppDialog; 90 PPPDialog pppDialog(m_item->mac(),
91 m_service.protocolDescriptorList().last().port());
78 QPEApplication::execDialog( &pppDialog ); 92 QPEApplication::execDialog( &pppDialog );
79} 93}
80 94
81 95
82void RfcCommPopup::slotDisconnect() 96void RfcCommPopup::slotDisconnect()
83{ 97{
84 owarn << "slot disconnected" << oendl; 98 owarn << "slot disconnected " << procId << oendl;
99 if (procId >= 0)
100 PPPDialog::conns[procId].proc.kill();
85} 101}
86 102
87 103
88void RfcCommPopup::slotBind() 104void RfcCommPopup::slotBind()
89{ 105{
90 RfcommAssignDialog rfcommAssign ( this, "RfcommAssignDialog", true, WStyle_ContextHelp ); 106 RfcommAssignDialog rfcommAssign ( this, "RfcommAssignDialog", true, WStyle_ContextHelp );