summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/panpopup.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/manager/panpopup.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/panpopup.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/panpopup.h b/noncore/net/opietooth/manager/panpopup.h
new file mode 100644
index 0000000..9d99f5e
--- a/dev/null
+++ b/noncore/net/opietooth/manager/panpopup.h
@@ -0,0 +1,32 @@
1#ifndef PANPOPUP_H
2#define PANPOPUP_H
3
4#include <qpopupmenu.h>
5#include <qaction.h>
6#include <opie/oprocess.h>
7
8#include "btdeviceitem.h"
9
10namespace OpieTooth {
11
12 class PanPopup : public QPopupMenu {
13
14 Q_OBJECT
15
16 public:
17 PanPopup( OpieTooth::BTDeviceItem* );
18 ~PanPopup();
19
20 private:
21 QAction* m_push;
22 OProcess* m_panconnect;
23 OpieTooth::BTDeviceItem *m_item;
24 private slots:
25 void slotConnect();
26 void slotConnectAndConfig();
27 void slotExited( OProcess* proc );
28 void slotStdOut( OProcess* proc, char* chars, int len );
29 };
30};
31
32#endif