summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/blue-pin
authorzecke <zecke>2005-02-20 13:06:59 (UTC)
committer zecke <zecke>2005-02-20 13:06:59 (UTC)
commitcc00ea4b5def00b6664bd5d9c5e5d59f5ce62732 (patch) (side-by-side diff)
tree23c51eb79b9d81519b6cd50221b0bbb051415634 /noncore/net/opietooth/blue-pin
parentbdbe220d0096667f26c8c25c1e1011c32fc54524 (diff)
downloadopie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.zip
opie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.tar.gz
opie-cc00ea4b5def00b6664bd5d9c5e5d59f5ce62732.tar.bz2
-Use own main method
-Remove default c'tor and use the remaining one as default -QString() -> QString::null (for Qt4 we will do the opposite) -use qApp->quit() and exit to be sure to really exit Still open: do not use the depcreated latin1 c'tor of QString, it is safe to use it here though (we only get IN/OUT and a mac address)
Diffstat (limited to 'noncore/net/opietooth/blue-pin') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/blue-pin/main.cc9
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.cc26
-rw-r--r--noncore/net/opietooth/blue-pin/pindlg.h9
-rw-r--r--noncore/net/opietooth/blue-pin/pindlgbase.ui56
4 files changed, 20 insertions, 80 deletions
diff --git a/noncore/net/opietooth/blue-pin/main.cc b/noncore/net/opietooth/blue-pin/main.cc
index dbe5b41..90d42e0 100644
--- a/noncore/net/opietooth/blue-pin/main.cc
+++ b/noncore/net/opietooth/blue-pin/main.cc
@@ -7,5 +7,10 @@
#include "pindlg.h"
-using namespace Opie::Core;
-OPIE_EXPORT_APP( OApplicationFactory<OpieTooth::PinDlg> )
+int main(int argc, char *argv[]) {
+ QPEApplication oapp(argc, argv);
+
+ OpieTooth::PinDlg dlg;
+ return oapp.exec();
+}
+
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
@@ -15,18 +15,6 @@
using namespace OpieTooth;
-PinDlg::PinDlg( const QString& status,
- const QString& mac, QWidget* parent,
- const char* name )
- : PinDlgBase( parent, name, WType_Modal )
-{
- m_mac = mac;
- test( mac );
- txtStatus->setText(status);
- if(!m_mac.isEmpty())
- QPEApplication::showDialog( this );
-}
-
PinDlg::PinDlg(QWidget* parent,
const char* name,
Qt::WFlags f )
@@ -38,13 +26,13 @@ PinDlg::PinDlg(QWidget* parent,
{
// can't obtain MAC
printf("ERR\n");
- qApp->quit();
+ ::exit(0);
}
else
{
test( m_mac );
txtStatus->setText(makeTextFromArgs());
- QPEApplication::showDialog( this ) ;
+ QPEApplication::showDialog( this , true) ;
}
}
@@ -68,12 +56,7 @@ void PinDlg::test( const QString& mac )
Config cfg("bluepin");
cfg.setGroup(mac);
lnePin->setText(cfg.readEntryCrypt("pin", QString::null ) );
- if ( !lnePin->text().isEmpty() )
- {
- //QTimer::singleShot(100, this, SLOT(accept() ) );
- }
}
-
}
QString PinDlg::makeTextFromArgs()
@@ -100,13 +83,13 @@ QString PinDlg::makeTextFromArgs()
return status ;
}
else
- return QString();
+ return QString::null;
}
QString PinDlg::makeMacFromArgs()
{
if(qApp->argc() < 3)
- return QString();
+ return QString::null;
else
return qApp->argv()[2] ;
}
@@ -122,4 +105,5 @@ void PinDlg::accept()
printf("PIN:%s\n", lnePin->text().latin1());
QDialog::accept();
qApp->quit();
+ ::exit(0);
}
diff --git a/noncore/net/opietooth/blue-pin/pindlg.h b/noncore/net/opietooth/blue-pin/pindlg.h
index 5f7dc55..8623274 100644
--- a/noncore/net/opietooth/blue-pin/pindlg.h
+++ b/noncore/net/opietooth/blue-pin/pindlg.h
@@ -10,14 +10,7 @@ namespace OpieTooth {
Q_OBJECT
public:
- PinDlg(const QString& text="",
- const QString& mac="",
- QWidget* parent = 0,
- const char* name= 0 );
-
- PinDlg(QWidget* parent,
- const char* name,
- Qt::WFlags f );
+ PinDlg(QWidget* parent = 0,const char* name = 0, Qt::WFlags f = 0);
~PinDlg();
void setMac( const QString& );
diff --git a/noncore/net/opietooth/blue-pin/pindlgbase.ui b/noncore/net/opietooth/blue-pin/pindlgbase.ui
index 6784de7..a79bb49 100644
--- a/noncore/net/opietooth/blue-pin/pindlgbase.ui
+++ b/noncore/net/opietooth/blue-pin/pindlgbase.ui
@@ -12,15 +12,15 @@
<rect>
<x>0</x>
<y>0</y>
- <width>254</width>
- <height>245</height>
+ <width>267</width>
+ <height>161</height>
</rect>
</property>
<property stdset="1">
<name>caption</name>
<string>Please enter pin</string>
</property>
- <vbox>
+ <grid>
<property stdset="1">
<name>margin</name>
<number>11</number>
@@ -29,28 +29,7 @@
<name>spacing</name>
<number>6</number>
</property>
- <spacer>
- <property>
- <name>name</name>
- <cstring>Spacer4_2</cstring>
- </property>
- <property stdset="1">
- <name>orientation</name>
- <enum>Vertical</enum>
- </property>
- <property stdset="1">
- <name>sizeType</name>
- <enum>Expanding</enum>
- </property>
- <property>
- <name>sizeHint</name>
- <size>
- <width>20</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- <widget>
+ <widget row="0" column="0" >
<class>QLabel</class>
<property stdset="1">
<name>name</name>
@@ -65,7 +44,7 @@
<enum>RichText</enum>
</property>
</widget>
- <widget>
+ <widget row="1" column="0" >
<class>QLayoutWidget</class>
<property stdset="1">
<name>name</name>
@@ -153,28 +132,7 @@
</widget>
</vbox>
</widget>
- <spacer>
- <property>
- <name>name</name>
- <cstring>Spacer5</cstring>
- </property>
- <property stdset="1">
- <name>orientation</name>
- <enum>Vertical</enum>
- </property>
- <property stdset="1">
- <name>sizeType</name>
- <enum>Expanding</enum>
- </property>
- <property>
- <name>sizeHint</name>
- <size>
- <width>20</width>
- <height>20</height>
- </size>
- </property>
- </spacer>
- <widget>
+ <widget row="2" column="0" >
<class>QLayoutWidget</class>
<property stdset="1">
<name>name</name>
@@ -255,7 +213,7 @@
</spacer>
</hbox>
</widget>
- </vbox>
+ </grid>
</widget>
<connections>
<connection>