summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/panpopup.h
authorharlekin <harlekin>2003-02-15 22:21:14 (UTC)
committer harlekin <harlekin>2003-02-15 22:21:14 (UTC)
commitf8bb789cd1d85da9b4a830b5b8a67a6a4ceeee3f (patch) (unidiff)
treeab71630af2332c9ca9e9a537711b6e0d09614f9b /noncore/net/opietooth/manager/panpopup.h
parent10b6cb1e9262b174ec0d8dc095d9f668f2d3e094 (diff)
downloadopie-f8bb789cd1d85da9b4a830b5b8a67a6a4ceeee3f.zip
opie-f8bb789cd1d85da9b4a830b5b8a67a6a4ceeee3f.tar.gz
opie-f8bb789cd1d85da9b4a830b5b8a67a6a4ceeee3f.tar.bz2
hacked together pan support, just for my own convenience, the core func should be moved into libopietooth later
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