summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/hidpopup.h
authorkorovkin <korovkin>2006-07-06 16:43:35 (UTC)
committer korovkin <korovkin>2006-07-06 16:43:35 (UTC)
commit060b467fb04094352343298688db04d89943f4b3 (patch) (unidiff)
treec04102028174f328f7be033d20a130359ce8d7c8 /noncore/net/opietooth/manager/hidpopup.h
parent43cd66c08de4447998028179d20fd4817aaf16ca (diff)
downloadopie-060b467fb04094352343298688db04d89943f4b3.zip
opie-060b467fb04094352343298688db04d89943f4b3.tar.gz
opie-060b467fb04094352343298688db04d89943f4b3.tar.bz2
Added connection to a HID device.
Diffstat (limited to 'noncore/net/opietooth/manager/hidpopup.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/hidpopup.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/hidpopup.h b/noncore/net/opietooth/manager/hidpopup.h
new file mode 100644
index 0000000..0c51919
--- a/dev/null
+++ b/noncore/net/opietooth/manager/hidpopup.h
@@ -0,0 +1,43 @@
1/* $Id$ */
2/* PAN context menu */
3/***************************************************************************
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 ***************************************************************************/
11#ifndef HIDPOPUP_H
12#define HIDPOPUP_H
13
14#include <qpopupmenu.h>
15#include <qaction.h>
16#include <opie2/oprocess.h>
17#include <services.h>
18#include "btdeviceitem.h"
19
20namespace OpieTooth {
21
22 class HidPopup : public QPopupMenu {
23
24 Q_OBJECT
25
26 public:
27 HidPopup(const OpieTooth::Services&, OpieTooth::BTDeviceItem*);
28 ~HidPopup();
29
30 private:
31 QAction* m_push;
32 OpieTooth::BTDeviceItem *m_item;
33 Opie::Core::OProcess* m_hidConnect; //HID process
34 private slots:
35 void slotConnect();
36 void slotDisconnect();
37 void fillOutPut( Opie::Core::OProcess* pppDial, char* cha, int len );
38 void fillErr(Opie::Core::OProcess*, char*, int);
39 void slotProcessExited(Opie::Core::OProcess* proc);
40 };
41};
42
43#endif