summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/panpopup.cpp
blob: d3d134718889232b5d49803f33c582fd33ea21a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <qpe/qcopenvelope_qws.h>

#include <qtimer.h>

#include "panpopup.h"

using namespace OpieTooth;

/*
 * c'tor init the QAction
 */
PanPopup::PanPopup( OpieTooth::BTDeviceItem* item ) : QPopupMenu()  {

    qWarning("PanPopup c'tor");

    m_item = item;
    m_panconnect = 0l;
    QAction *a, *b;

    /* connect action */
    a = new QAction( ); // so it's get deleted
    a->setText( "connect" );
    a->addTo( this );
    connect( a, SIGNAL( activated() ), this, SLOT( slotConnect() ) );

    b = new QAction();
    b->setText( "connect+conf" );
    b->addTo( this );
    connect( b, SIGNAL( activated() ), this, SLOT( slotConnectAndConfig() ) );
};

PanPopup::~PanPopup() {
    delete m_panconnect;
}

void PanPopup::slotConnect() {


    // SHOULD move to lib
    // before pand must be in "pand --listen --role panu" mode ( client )

    m_panconnect = new OProcess();
    *m_panconnect << "pand" << "--connect" << m_item->mac();

    connect( m_panconnect, SIGNAL( processExited( OProcess* ) ) ,
             this, SLOT( slotConnectExited( OProcess* ) ) );
    connect( m_panconnect, SIGNAL( receivedStdout( OProcess*, char*, int ) ),
             this, SLOT( slotConnectOut( OProcess*, char*, int ) ) );
    if (!m_panconnect->start( OProcess::NotifyOnExit, OProcess::AllOutput) ) {
        qWarning( "could not start" );
        delete m_panconnect;
    }
}

void PanPopup::slotExited( OProcess* proc ) {
    delete m_panconnect;
}

void PanPopup::slotStdOut(OProcess* proc, char* chars, int len)
{}


void PanPopup::slotConnectAndConfig() {
    slotConnect();

    // more intelligence here later like passing the device ( bnepX )
    QCopEnvelope e( "QPE/System", "execute(QString)" );
    e << QString( "networksetup" );

}