summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/dunpopup.h
authorharlekin <harlekin>2003-03-26 22:30:46 (UTC)
committer harlekin <harlekin>2003-03-26 22:30:46 (UTC)
commita57325de7183c21df6b5ff06eff8cf7e3c328ef4 (patch) (unidiff)
tree8724c094150cf0e977c54afa5c41a7e8da964e55 /noncore/net/opietooth/manager/dunpopup.h
parentc6e22820a2c28eb8a8f6bab690a36c3fa2605387 (diff)
downloadopie-a57325de7183c21df6b5ff06eff8cf7e3c328ef4.zip
opie-a57325de7183c21df6b5ff06eff8cf7e3c328ef4.tar.gz
opie-a57325de7183c21df6b5ff06eff8cf7e3c328ef4.tar.bz2
ups
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