summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/hidpopup.h
blob: 0c51919a067b15526443c596cad44bc24da01505 (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
/* $Id$ */
/* PAN context menu */
/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef HIDPOPUP_H
#define HIDPOPUP_H

#include <qpopupmenu.h>
#include <qaction.h>
#include <opie2/oprocess.h>
#include <services.h>
#include "btdeviceitem.h"

namespace OpieTooth {

    class HidPopup : public QPopupMenu {

	Q_OBJECT

    public:
        HidPopup(const OpieTooth::Services&, OpieTooth::BTDeviceItem*);
        ~HidPopup();

    private:
        QAction* m_push;
        OpieTooth::BTDeviceItem *m_item;
        Opie::Core::OProcess* m_hidConnect; //HID process
    private slots:
        void slotConnect();
        void slotDisconnect();
        void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
        void fillErr(Opie::Core::OProcess*, char*, int);
        void slotProcessExited(Opie::Core::OProcess* proc);
    };
};

#endif