author | harlekin <harlekin> | 2002-06-02 22:05:55 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-02 22:05:55 (UTC) |
commit | d068b0a50826a189d11e2f2037ee21a4c0850567 (patch) (side-by-side diff) | |
tree | d07771652ae649d0452d58211fa588589fb76360 | |
parent | 6898878a1ef6d5551d7dde9363f238e57b5c9671 (diff) | |
download | opie-d068b0a50826a189d11e2f2037ee21a4c0850567.zip opie-d068b0a50826a189d11e2f2037ee21a4c0850567.tar.gz opie-d068b0a50826a189d11e2f2037ee21a4c0850567.tar.bz2 |
update
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 8 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index f4153a0..c17271f 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp @@ -12,16 +12,17 @@ * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "bluebase.h" +#include "scandialog.h" #include <qframe.h> #include <qlabel.h> #include <qpushbutton.h> #include <qlayout.h> #include <qvariant.h> #include <qwhatsthis.h> #include <qimage.h> @@ -33,22 +34,29 @@ #include <qcheckbox.h> #include <qpe/resource.h> BlueBase::BlueBase( QWidget* parent, const char* name, WFlags fl ) : BluetoothBase( parent, name, fl ) { + QObject::connect( (QObject*) PushButton2, SIGNAL( clicked() ), this, SLOT(startScan())); + QPalette pal = this->palette(); QColor col = pal.color(QPalette::Active, QColorGroup::Background); pal.setColor(QPalette::Active, QColorGroup::Button, col); pal.setColor(QPalette::Inactive, QColorGroup::Button, col); pal.setColor(QPalette::Normal, QColorGroup::Button, col); pal.setColor(QPalette::Disabled, QColorGroup::Button, col); this->setPalette(pal); } +void BlueBase::startScan() { + Form3 *scan = new Form3( this, "", true); + scan->exec(); +} + BlueBase::~BlueBase(){ } diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h index 4d53e99..29c45be 100644 --- a/noncore/net/opietooth/manager/bluebase.h +++ b/noncore/net/opietooth/manager/bluebase.h @@ -22,13 +22,18 @@ class BlueBase : public BluetoothBase { Q_OBJECT public: BlueBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); ~BlueBase(); protected: + + private slots: + void startScan(); + + }; #endif |