-rw-r--r-- | noncore/net/opietooth/blue-pin/main.cc | 3 | ||||
-rw-r--r-- | noncore/net/opietooth/blue-pin/pindlg.cc | 63 | ||||
-rw-r--r-- | noncore/net/opietooth/blue-pin/pindlg.h | 15 |
3 files changed, 78 insertions, 3 deletions
diff --git a/noncore/net/opietooth/blue-pin/main.cc b/noncore/net/opietooth/blue-pin/main.cc index aa360aa..29e46ae 100644 --- a/noncore/net/opietooth/blue-pin/main.cc +++ b/noncore/net/opietooth/blue-pin/main.cc @@ -5,2 +5,3 @@ #include <qpe/qpeapplication.h> +#include <opie2/oapplicationfactory.h> @@ -8,2 +9,4 @@ +using namespace Opie::Core; +OPIE_EXPORT_APP( OApplicationFactory<OpieTooth::PinDlg> ) diff --git a/noncore/net/opietooth/blue-pin/pindlg.cc b/noncore/net/opietooth/blue-pin/pindlg.cc index f0b2309..96be1e5 100644 --- a/noncore/net/opietooth/blue-pin/pindlg.cc +++ b/noncore/net/opietooth/blue-pin/pindlg.cc @@ -25,3 +25,25 @@ PinDlg::PinDlg( const QString& status, txtStatus->setText(status); - QPEApplication::showDialog( this ); + if(!m_mac.isEmpty()) + QPEApplication::showDialog( this ); +} + +PinDlg::PinDlg(QWidget* parent, + const char* name, + Qt::WFlags f ) + : PinDlgBase( parent, name, f ) +{ + m_mac = makeMacFromArgs(); + + if(m_mac.isEmpty()) + { + // can't obtain MAC + printf("ERR\n"); + qApp->quit(); + } + else + { + test( m_mac ); + txtStatus->setText(makeTextFromArgs()); + QPEApplication::showDialog( this ) ; + } } @@ -30,2 +52,3 @@ PinDlg::~PinDlg() {} + void PinDlg::setMac( const QString& mac ) @@ -34,2 +57,3 @@ void PinDlg::setMac( const QString& mac ) } + QString PinDlg::pin() const @@ -50,6 +74,41 @@ void PinDlg::test( const QString& mac ) } + } + +} + +QString PinDlg::makeTextFromArgs() +{ + if(qApp->argc() > 2) + { + QCString dir(qApp->argv()[1]) ; + QCString bdaddr(qApp->argv()[2]) ; + + QCString name; + if ( qApp->argc() > 3 ) { + name = qApp->argv()[3]; + } + QString status; + if (dir == "out" ) { + status = QObject::tr("Outgoing connection to "); + } else + status = QObject::tr("Incoming connection from "); + status += name; + status += "<br>"; + status += "[" + bdaddr + "]"; + + return status ; } + else + return QString(); +} +QString PinDlg::makeMacFromArgs() +{ + if(qApp->argc() < 3) + return QString(); + else + return qApp->argv()[2] ; } + void PinDlg::accept() @@ -62,3 +121,5 @@ void PinDlg::accept() } + printf("PIN:%s\n", lnePin->text().latin1()); QDialog::accept(); + qApp->quit(); } diff --git a/noncore/net/opietooth/blue-pin/pindlg.h b/noncore/net/opietooth/blue-pin/pindlg.h index 5e5a763..5f7dc55 100644 --- a/noncore/net/opietooth/blue-pin/pindlg.h +++ b/noncore/net/opietooth/blue-pin/pindlg.h @@ -12,6 +12,11 @@ namespace OpieTooth { public: - PinDlg(const QString& text, - const QString& mac, + PinDlg(const QString& text="", + const QString& mac="", QWidget* parent = 0, const char* name= 0 ); + + PinDlg(QWidget* parent, + const char* name, + Qt::WFlags f ); + ~PinDlg(); @@ -19,2 +24,4 @@ namespace OpieTooth { QString pin() const; + + static QString appName() { return QString::fromLatin1("bluepin") ; } @@ -22,2 +29,6 @@ namespace OpieTooth { void test( const QString& mac ); + + QString makeTextFromArgs(); + QString makeMacFromArgs(); + QString m_mac; |