summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/blue-pin/pindlg.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/noncore/net/opietooth/blue-pin/pindlg.h b/noncore/net/opietooth/blue-pin/pindlg.h
new file mode 100644
index 0000000..b4f5ff8
--- a/dev/null
+++ b/noncore/net/opietooth/blue-pin/pindlg.h
@@ -0,0 +1,26 @@
+
+
+#include <qdialog.h>
+
+#include "pindlgbase.h"
+
+namespace OpieTooth {
+ class PinDlg : public PinDlgBase {
+ Q_OBJECT
+ public:
+ PinDlg(const QString& text,
+ const QString& mac,
+ QWidget* parent = 0,
+ const char* name= 0 );
+ ~PinDlg();
+ void setMac( const QString& );
+ QString pin() const;
+ private:
+ void test( const QString& mac );
+ QString m_mac;
+protected slots:
+ void accept();
+ };
+
+
+};