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