summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcpopup.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcpopup.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcpopup.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/noncore/net/opietooth/manager/rfcpopup.h b/noncore/net/opietooth/manager/rfcpopup.h
index c388f65..74b9117 100644
--- a/noncore/net/opietooth/manager/rfcpopup.h
+++ b/noncore/net/opietooth/manager/rfcpopup.h
@@ -4,6 +4,8 @@
#include <qpopupmenu.h>
#include <qaction.h>
+#include "btdeviceitem.h"
+
namespace OpieTooth {
/**
* A simple reference implementation for
@@ -16,19 +18,20 @@ namespace OpieTooth {
class RfcCommPopup : public QPopupMenu {
Q_OBJECT
public:
- RfcCommPopup();
+ RfcCommPopup( OpieTooth::BTDeviceItem* );
~RfcCommPopup();
private:
QAction* m_con;
QAction* m_dis;
- QAction* m_foo;
+ QAction* m_bind;
QAction* m_bar;
+ OpieTooth::BTDeviceItem *m_item;
private slots:
void slotConnect();
void slotDisconnect();
- void slotFoo();
+ void slotBind();
void slotBar();
};
};