summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin/pindlg.cc
Unidiff
Diffstat (limited to 'noncore/net/opietooth/blue-pin/pindlg.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.cc26
1 files changed, 5 insertions, 21 deletions
diff --git a/noncore/net/opietooth/blue-pin/pindlg.cc b/noncore/net/opietooth/blue-pin/pindlg.cc
index 96be1e5..e40fe33 100644
--- a/noncore/net/opietooth/blue-pin/pindlg.cc
+++ b/noncore/net/opietooth/blue-pin/pindlg.cc
@@ -12,42 +12,30 @@
12 12
13/* STD */ 13/* STD */
14#include <stdio.h> 14#include <stdio.h>
15 15
16using namespace OpieTooth; 16using namespace OpieTooth;
17 17
18PinDlg::PinDlg( const QString& status,
19 const QString& mac, QWidget* parent,
20 const char* name )
21 : PinDlgBase( parent, name, WType_Modal )
22{
23 m_mac = mac;
24 test( mac );
25 txtStatus->setText(status);
26 if(!m_mac.isEmpty())
27 QPEApplication::showDialog( this );
28}
29
30PinDlg::PinDlg(QWidget* parent, 18PinDlg::PinDlg(QWidget* parent,
31 const char* name, 19 const char* name,
32 Qt::WFlags f ) 20 Qt::WFlags f )
33 : PinDlgBase( parent, name, f ) 21 : PinDlgBase( parent, name, f )
34{ 22{
35 m_mac = makeMacFromArgs(); 23 m_mac = makeMacFromArgs();
36 24
37 if(m_mac.isEmpty()) 25 if(m_mac.isEmpty())
38 { 26 {
39 // can't obtain MAC 27 // can't obtain MAC
40 printf("ERR\n"); 28 printf("ERR\n");
41 qApp->quit(); 29 ::exit(0);
42 } 30 }
43 else 31 else
44 { 32 {
45 test( m_mac ); 33 test( m_mac );
46 txtStatus->setText(makeTextFromArgs()); 34 txtStatus->setText(makeTextFromArgs());
47 QPEApplication::showDialog( this ) ; 35 QPEApplication::showDialog( this , true) ;
48 } 36 }
49} 37}
50 38
51PinDlg::~PinDlg() 39PinDlg::~PinDlg()
52{} 40{}
53 41
@@ -65,18 +53,13 @@ void PinDlg::test( const QString& mac )
65{ 53{
66 if (!mac.isEmpty() ) 54 if (!mac.isEmpty() )
67 { 55 {
68 Config cfg("bluepin"); 56 Config cfg("bluepin");
69 cfg.setGroup(mac); 57 cfg.setGroup(mac);
70 lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) ); 58 lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) );
71 if ( !lnePin->text().isEmpty() )
72 {
73 //QTimer::singleShot(100, this, SLOT(accept() ) );
74 }
75 } 59 }
76
77} 60}
78 61
79QString PinDlg::makeTextFromArgs() 62QString PinDlg::makeTextFromArgs()
80{ 63{
81 if(qApp->argc() > 2) 64 if(qApp->argc() > 2)
82 { 65 {
@@ -97,19 +80,19 @@ QString PinDlg::makeTextFromArgs()
97 status += "<br>"; 80 status += "<br>";
98 status += "[" + bdaddr + "]"; 81 status += "[" + bdaddr + "]";
99 82
100 return status ; 83 return status ;
101 } 84 }
102 else 85 else
103 return QString(); 86 return QString::null;
104} 87}
105 88
106QString PinDlg::makeMacFromArgs() 89QString PinDlg::makeMacFromArgs()
107{ 90{
108 if(qApp->argc() < 3) 91 if(qApp->argc() < 3)
109 return QString(); 92 return QString::null;
110 else 93 else
111 return qApp->argv()[2] ; 94 return qApp->argv()[2] ;
112} 95}
113 96
114void PinDlg::accept() 97void PinDlg::accept()
115{ 98{
@@ -119,7 +102,8 @@ void PinDlg::accept()
119 cfg.setGroup(m_mac ); 102 cfg.setGroup(m_mac );
120 cfg.writeEntryCrypt("pin", lnePin->text() ); 103 cfg.writeEntryCrypt("pin", lnePin->text() );
121 } 104 }
122 printf("PIN:%s\n", lnePin->text().latin1()); 105 printf("PIN:%s\n", lnePin->text().latin1());
123 QDialog::accept(); 106 QDialog::accept();
124 qApp->quit(); 107 qApp->quit();
108 ::exit(0);
125} 109}