summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/btconfigwidget.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/btconfigwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/btconfigwidget.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/btconfigwidget.cpp b/noncore/apps/opie-console/btconfigwidget.cpp
index acc4811..eac6a79 100644
--- a/noncore/apps/opie-console/btconfigwidget.cpp
+++ b/noncore/apps/opie-console/btconfigwidget.cpp
@@ -2,2 +2,3 @@
#include <qlayout.h>
+#include <qlineedit.h>
#include <qcombobox.h>
@@ -31,2 +32,6 @@ BTConfigWidget::BTConfigWidget( const QString& name,
+ QLabel *macLabel = new QLabel( this );
+ macLabel->setText( tr("Enter peer mac address here:") );
+ m_mac = new QLineEdit( this );
+
m_base = new IOLayerBase(this, "base");
@@ -35,2 +40,4 @@ BTConfigWidget::BTConfigWidget( const QString& name,
m_lay->addWidget( m_deviceCmb );
+ m_lay->addWidget( macLabel );
+ m_lay->addWidget( m_mac );
m_lay->addWidget( m_base );
@@ -48,3 +55,7 @@ void BTConfigWidget::load( const Profile& prof ) {
int speed = prof.readNumEntry("Speed");
+ QString mac = prof.readEntry("Mac");
+ if (!mac.isEmpty() ) {
+ m_mac->setText( mac );
+ }
@@ -139,2 +150,3 @@ void BTConfigWidget::save( Profile& prof ) {
prof.writeEntry("Speed", speed);
+ prof.writeEntry("Mac", m_mac->text() );
}