summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcommassigndialogitem.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcommassigndialogitem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcommassigndialogitem.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/rfcommassigndialogitem.h b/noncore/net/opietooth/manager/rfcommassigndialogitem.h
new file mode 100644
index 0000000..34a794f
--- a/dev/null
+++ b/noncore/net/opietooth/manager/rfcommassigndialogitem.h
@@ -0,0 +1,40 @@
+#ifndef RFCOMMDIALOGITEM
+#define RFCOMMDIALOGITEM
+
+#include "rfcommdialogitembase.h"
+
+#include <qwidget.h>
+
+namespace OpieTooth {
+
+ class RfcommDialogItem : public RfcommDialogItemBase {
+
+ Q_OBJECT
+
+ public:
+ RfcommDialogItem( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ ~RfcommDialogItem();
+
+ // number if the rfcomm device
+ int ident();
+ // devices mac address
+ QString mac();
+ int channel();
+ QString comment();
+
+ void setIdent( int ident );
+ void setMac( const QString& mac );
+ void setChannel( int channel );
+ void setComment( const QString& comment );
+
+ private:
+
+
+ int m_ident;
+
+};
+
+
+}
+
+#endif