author | harlekin <harlekin> | 2002-06-16 19:26:43 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-16 19:26:43 (UTC) |
commit | 8dde6abcd14717bd362248c365fe140efe0f0386 (patch) (unidiff) | |
tree | f9e97c987e5197d4cbb3d0a0d5afe99fe12b1eba | |
parent | 1eca76c99326afc111efeb2bf55a306a4f37eb1e (diff) | |
download | opie-8dde6abcd14717bd362248c365fe140efe0f0386.zip opie-8dde6abcd14717bd362248c365fe140efe0f0386.tar.gz opie-8dde6abcd14717bd362248c365fe140efe0f0386.tar.bz2 |
update
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 14 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 5 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.cpp | 46 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/scandialog.h | 10 |
4 files changed, 64 insertions, 11 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index e3b9e53..71da82e 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -43,2 +43,3 @@ namespace OpieTooth { | |||
43 | 43 | ||
44 | class RemoteDevices; | ||
44 | 45 | ||
@@ -51,2 +52,5 @@ namespace OpieTooth { | |||
51 | 52 | ||
53 | |||
54 | |||
55 | |||
52 | QPalette pal = this->palette(); | 56 | QPalette pal = this->palette(); |
@@ -151,2 +155,9 @@ namespace OpieTooth { | |||
151 | 155 | ||
156 | void BlueBase::addSearchedDevices( QList<RemoteDevices> &newDevices ) { | ||
157 | |||
158 | |||
159 | |||
160 | } | ||
161 | |||
162 | |||
152 | /** | 163 | /** |
@@ -156,2 +167,5 @@ namespace OpieTooth { | |||
156 | ScanDialog *scan = new ScanDialog( this, "", true); | 167 | ScanDialog *scan = new ScanDialog( this, "", true); |
168 | QObject::connect((QObject*)scan, SIGNAL( selectedDevices(QList<RemoteDevices>&) ), | ||
169 | this, SLOT( addSearchedDevices(QList<RemoteDevices>& ) )); | ||
170 | |||
157 | scan->showMaximized(); | 171 | scan->showMaximized(); |
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h index 023af7a..ae5ce67 100644 --- a/noncore/net/opietooth/manager/bluebase.h +++ b/noncore/net/opietooth/manager/bluebase.h | |||
@@ -8,2 +8,3 @@ | |||
8 | #include <qsplitter.h> | 8 | #include <qsplitter.h> |
9 | #include <qlist.h> | ||
9 | 10 | ||
@@ -22,2 +23,4 @@ namespace OpieTooth { | |||
22 | 23 | ||
24 | |||
25 | |||
23 | class BlueBase : public BluetoothBase { | 26 | class BlueBase : public BluetoothBase { |
@@ -50,3 +53,3 @@ namespace OpieTooth { | |||
50 | private slots: | 53 | private slots: |
51 | 54 | void addSearchedDevices( QList<RemoteDevices> &newDevices ); | |
52 | void applyConfigChanges(); | 55 | void applyConfigChanges(); |
diff --git a/noncore/net/opietooth/manager/scandialog.cpp b/noncore/net/opietooth/manager/scandialog.cpp index 63c5472..70ea77a 100644 --- a/noncore/net/opietooth/manager/scandialog.cpp +++ b/noncore/net/opietooth/manager/scandialog.cpp | |||
@@ -30,2 +30,3 @@ | |||
30 | #include <qprogressbar.h> | 30 | #include <qprogressbar.h> |
31 | #include <qlist.h> | ||
31 | 32 | ||
@@ -33,3 +34,3 @@ | |||
33 | #include <device.h> | 34 | #include <device.h> |
34 | #include <remotedevice.h> | 35 | |
35 | 36 | ||
@@ -38,2 +39,4 @@ namespace OpieTooth { | |||
38 | 39 | ||
40 | #include <remotedevice.h> | ||
41 | |||
39 | /* | 42 | /* |
@@ -65,8 +68,9 @@ namespace OpieTooth { | |||
65 | StartButton = new QPushButton( buttonFrame, "StartButton" ); | 68 | StartButton = new QPushButton( buttonFrame, "StartButton" ); |
66 | StartButton->setText( tr( "Start" ) ); | 69 | StartButton->setText( tr( "Start scan" ) ); |
67 | 70 | ||
68 | StopButton = new QPushButton( buttonFrame, "StopButton" ); | 71 | StopButton = new QPushButton( buttonFrame, "StopButton" ); |
69 | StopButton->setText( tr( "Cancel" ) ); | 72 | StopButton->setText( tr( "Cancel scan" ) ); |
70 | 73 | ||
71 | QHBoxLayout *buttonLayout = new QHBoxLayout(buttonFrame); | 74 | QHBoxLayout *buttonLayout = new QHBoxLayout(buttonFrame); |
75 | |||
72 | buttonLayout->addWidget(StartButton); | 76 | buttonLayout->addWidget(StartButton); |
@@ -76,4 +80,4 @@ namespace OpieTooth { | |||
76 | 80 | ||
77 | ListView1->addColumn( tr( "Add" ) ); | 81 | //ListView1->addColumn( tr( "Add" ) ); |
78 | ListView1->addColumn( tr( "Device Name" ) ); | 82 | ListView1->addColumn( tr( "Add Device" ) ); |
79 | //ListView1->addColumn( tr( "Type" ) ); | 83 | //ListView1->addColumn( tr( "Type" ) ); |
@@ -108,2 +112,5 @@ namespace OpieTooth { | |||
108 | 112 | ||
113 | QCheckListItem *deviceItem2 = new QCheckListItem( ListView1, "Test1", QCheckListItem::CheckBox ); | ||
114 | deviceItem2->setText(1, "BLAH" ); | ||
115 | |||
109 | progressTimer(); | 116 | progressTimer(); |
@@ -121,3 +128,3 @@ namespace OpieTooth { | |||
121 | 128 | ||
122 | QListViewItem * deviceItem; | 129 | QCheckListItem * deviceItem; |
123 | 130 | ||
@@ -126,4 +133,28 @@ namespace OpieTooth { | |||
126 | 133 | ||
127 | deviceItem = new QListViewItem( ListView1, (*it).name() ); | 134 | deviceItem = new QCheckListItem( ListView1, (*it).name() ); |
135 | deviceItem->setText(1, (*it).mac() ); | ||
136 | } | ||
137 | |||
138 | } | ||
139 | |||
140 | /* | ||
141 | * Iterates trough the items, and collects the checked items. | ||
142 | * Then it emits it, so the manager can connect to the signal to fill the listing. | ||
143 | */ | ||
144 | void ScanDialog::emitToManager() { | ||
145 | |||
146 | if (!ListView1) { | ||
147 | return; | ||
148 | } | ||
149 | |||
150 | QList<RemoteDevices> *deviceList = new QList<RemoteDevices>; | ||
151 | |||
152 | QListViewItemIterator it( ListView1 ); | ||
153 | for ( ; it.current(); ++it ) { | ||
154 | if ( it.current()->isSelected() ) { | ||
155 | RemoteDevices* device = new RemoteDevices( it.current()->text(1), it.current()->text(0)); | ||
156 | deviceList->append( device ); | ||
157 | } | ||
128 | } | 158 | } |
159 | emit selectedDevices( *deviceList ); | ||
129 | } | 160 | } |
@@ -134,2 +165,3 @@ namespace OpieTooth { | |||
134 | ScanDialog::~ScanDialog() { | 165 | ScanDialog::~ScanDialog() { |
166 | emitToManager(); | ||
135 | delete localDevice; | 167 | delete localDevice; |
diff --git a/noncore/net/opietooth/manager/scandialog.h b/noncore/net/opietooth/manager/scandialog.h index fcaee6e..4785a62 100644 --- a/noncore/net/opietooth/manager/scandialog.h +++ b/noncore/net/opietooth/manager/scandialog.h | |||
@@ -21,6 +21,5 @@ | |||
21 | #include <qdialog.h> | 21 | #include <qdialog.h> |
22 | #include <qlist.h> | ||
22 | 23 | ||
23 | 24 | ||
24 | #include <remotedevice.h> | ||
25 | |||
26 | class QVBoxLayout; | 25 | class QVBoxLayout; |
@@ -38,3 +37,3 @@ namespace OpieTooth { | |||
38 | 37 | ||
39 | 38 | #include <remotedevices.h> | |
40 | class Manager; | 39 | class Manager; |
@@ -66,6 +65,11 @@ class Device; | |||
66 | private: | 65 | private: |
66 | void emitToManager(); | ||
67 | Manager *localDevice; | 67 | Manager *localDevice; |
68 | int progressStat; | 68 | int progressStat; |
69 | |||
70 | signals: | ||
71 | void selectedDevices(QList<RemoteDevices>&); | ||
69 | }; | 72 | }; |
70 | 73 | ||
74 | |||
71 | } | 75 | } |