summaryrefslogtreecommitdiff
path: root/noncore/net
authorharlekin <harlekin>2002-06-16 20:21:06 (UTC)
committer harlekin <harlekin>2002-06-16 20:21:06 (UTC)
commit5c098847f0fd716c4fe697e5eb314111a4ae5df1 (patch) (side-by-side diff)
tree590ed709442bf6ba4a28eb242840dcf1de6da756 /noncore/net
parent8dde6abcd14717bd362248c365fe140efe0f0386 (diff)
downloadopie-5c098847f0fd716c4fe697e5eb314111a4ae5df1.zip
opie-5c098847f0fd716c4fe697e5eb314111a4ae5df1.tar.gz
opie-5c098847f0fd716c4fe697e5eb314111a4ae5df1.tar.bz2
remoteDevice not removeDevices
Diffstat (limited to 'noncore/net') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/manager.cc12
-rw-r--r--noncore/net/opietooth/lib/manager.h6
-rw-r--r--noncore/net/opietooth/lib/remotedevice.cc22
-rw-r--r--noncore/net/opietooth/lib/remotedevice.h16
-rw-r--r--noncore/net/opietooth/manager/bluebase.h2
-rw-r--r--noncore/net/opietooth/manager/scandialog.cpp3
-rw-r--r--noncore/net/opietooth/manager/scandialog.h4
7 files changed, 33 insertions, 32 deletions
diff --git a/noncore/net/opietooth/lib/manager.cc b/noncore/net/opietooth/lib/manager.cc
index 40c1f0a..c454588 100644
--- a/noncore/net/opietooth/lib/manager.cc
+++ b/noncore/net/opietooth/lib/manager.cc
@@ -64,3 +64,3 @@ void Manager::searchDevices( const QString& device ){
qWarning("could not start");
- RemoteDevices::ValueList list;
+ RemoteDevice::ValueList list;
emit foundDevices( device, list );
@@ -114,3 +114,3 @@ void Manager::searchServices( const QString& remDevice ){
}
-void Manager::searchServices( const RemoteDevices& dev){
+void Manager::searchServices( const RemoteDevice& dev){
searchServices( dev.mac() );
@@ -164,3 +164,3 @@ void Manager::slotHCIExited(OProcess* proc ) {
qWarning("process exited");
- RemoteDevices::ValueList list;
+ RemoteDevice::ValueList list;
if (proc->normalExit() ) {
@@ -192,5 +192,5 @@ void Manager::slotHCIOut(OProcess* proc, char* ch, int len) {
}
-RemoteDevices::ValueList Manager::parseHCIOutput(const QString& output ) {
+RemoteDevice::ValueList Manager::parseHCIOutput(const QString& output ) {
qWarning("parseHCI %s", output.latin1() );
- RemoteDevices::ValueList list;
+ RemoteDevice::ValueList list;
QStringList strList = QStringList::split('\n', output );
@@ -207,3 +207,3 @@ RemoteDevices::ValueList Manager::parseHCIOutput(const QString& output ) {
qWarning("rest:%s", str.latin1() );
- RemoteDevices rem( mac , str.stripWhiteSpace() );
+ RemoteDevice rem( mac , str.stripWhiteSpace() );
list.append( rem );
diff --git a/noncore/net/opietooth/lib/manager.h b/noncore/net/opietooth/lib/manager.h
index 95e4306..aba70f7 100644
--- a/noncore/net/opietooth/lib/manager.h
+++ b/noncore/net/opietooth/lib/manager.h
@@ -100,3 +100,3 @@ Q_OBJECT
*/
- void searchServices( const RemoteDevices& );
+ void searchServices( const RemoteDevice& );
/*static*/ QString toDevice( const QString& mac );
@@ -111,3 +111,3 @@ Q_OBJECT
void foundServices( const QString& device, Services::ValueList );
- void foundDevices( const QString& device, RemoteDevices::ValueList );
+ void foundDevices( const QString& device, RemoteDevice::ValueList );
@@ -121,3 +121,3 @@ private slots:
Services::ValueList parseSDPOutput( const QString& );
- RemoteDevices::ValueList parseHCIOutput( const QString& );
+ RemoteDevice::ValueList parseHCIOutput( const QString& );
OProcess *m_hcitool;
diff --git a/noncore/net/opietooth/lib/remotedevice.cc b/noncore/net/opietooth/lib/remotedevice.cc
index 0045904..08fb397 100644
--- a/noncore/net/opietooth/lib/remotedevice.cc
+++ b/noncore/net/opietooth/lib/remotedevice.cc
@@ -5,3 +5,3 @@ using namespace OpieTooth;
-bool operator==(const RemoteDevices& rem1, const RemoteDevices& rem2){
+bool operator==(const RemoteDevice& rem1, const RemoteDevice& rem2){
if( ( rem1.mac() == rem2.mac() ) && (rem1.name() == rem2.name() ) )
@@ -12,9 +12,9 @@ bool operator==(const RemoteDevices& rem1, const RemoteDevices& rem2){
-RemoteDevices::RemoteDevices(){
+RemoteDevice::RemoteDevice(){
}
-RemoteDevices::RemoteDevices(const RemoteDevices& ole ){
+RemoteDevice::RemoteDevice(const RemoteDevice& ole ){
(*this) = ole;
}
-RemoteDevices::RemoteDevices(const QString &mac, const QString& name ){
+RemoteDevice::RemoteDevice(const QString &mac, const QString& name ){
m_mac = mac;
@@ -22,6 +22,6 @@ RemoteDevices::RemoteDevices(const QString &mac, const QString& name ){
}
-RemoteDevices::~RemoteDevices(){
+RemoteDevice::~RemoteDevice(){
}
-bool RemoteDevices::isEmpty() const {
+bool RemoteDevice::isEmpty() const {
if( m_name.isEmpty() && m_mac.isEmpty() )
@@ -30,3 +30,3 @@ bool RemoteDevices::isEmpty() const {
};
-RemoteDevices& RemoteDevices::operator=( const RemoteDevices& rem1){
+RemoteDevice& RemoteDevice::operator=( const RemoteDevice& rem1){
m_name = rem1.m_name;
@@ -36,12 +36,12 @@ RemoteDevices& RemoteDevices::operator=( const RemoteDevices& rem1){
}
-QString RemoteDevices::mac() const {
+QString RemoteDevice::mac() const {
return m_mac;
}
-void RemoteDevices::setMac( const QString& mac ){
+void RemoteDevice::setMac( const QString& mac ){
m_mac = mac;
}
-QString RemoteDevices::name() const{
+QString RemoteDevice::name() const{
return m_name;
}
-void RemoteDevices::setName( const QString& name ){
+void RemoteDevice::setName( const QString& name ){
m_name = name;
diff --git a/noncore/net/opietooth/lib/remotedevice.h b/noncore/net/opietooth/lib/remotedevice.h
index 96a27de..23f98bd 100644
--- a/noncore/net/opietooth/lib/remotedevice.h
+++ b/noncore/net/opietooth/lib/remotedevice.h
@@ -7,11 +7,11 @@
namespace OpieTooth{
- class RemoteDevices {
+ class RemoteDevice {
public:
- typedef QValueList<RemoteDevices> ValueList;
- RemoteDevices();
- RemoteDevices(const RemoteDevices& );
- RemoteDevices(const QString &mac, const QString &name );
- ~RemoteDevices();
- friend bool operator==(const RemoteDevices&, const RemoteDevices&);
- RemoteDevices &operator=(const RemoteDevices& );
+ typedef QValueList<RemoteDevice> ValueList;
+ RemoteDevice();
+ RemoteDevice(const RemoteDevice& );
+ RemoteDevice(const QString &mac, const QString &name );
+ ~RemoteDevice();
+ friend bool operator==(const RemoteDevice&, const RemoteDevice&);
+ RemoteDevice &operator=(const RemoteDevice& );
bool isEmpty()const;
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h
index ae5ce67..5364e51 100644
--- a/noncore/net/opietooth/manager/bluebase.h
+++ b/noncore/net/opietooth/manager/bluebase.h
@@ -12,2 +12,4 @@
+#include <remotedevice.h>
+
class QVBox;
diff --git a/noncore/net/opietooth/manager/scandialog.cpp b/noncore/net/opietooth/manager/scandialog.cpp
index 70ea77a..8a7ea01 100644
--- a/noncore/net/opietooth/manager/scandialog.cpp
+++ b/noncore/net/opietooth/manager/scandialog.cpp
@@ -136,3 +136,2 @@ namespace OpieTooth {
}
-
}
@@ -153,3 +152,3 @@ namespace OpieTooth {
for ( ; it.current(); ++it ) {
- if ( it.current()->isSelected() ) {
+ if ( ((QCheckListItem*)it.current())->isOn() ) {
RemoteDevices* device = new RemoteDevices( it.current()->text(1), it.current()->text(0));
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h
index 4785a62..0ca302a 100644
--- a/noncore/net/opietooth/manager/scandialog.h
+++ b/noncore/net/opietooth/manager/scandialog.h
@@ -23,3 +23,3 @@
-
+#include <remotedevice.h>
class QVBoxLayout;
@@ -37,3 +37,3 @@ namespace OpieTooth {
-#include <remotedevices.h>
+
class Manager;