-rw-r--r-- | noncore/net/opietooth/manager/bluebase.cpp | 162 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluebase.h | 12 | ||||
-rw-r--r-- | noncore/net/opietooth/manager/bluetoothbase.ui | 16 |
3 files changed, 146 insertions, 44 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp index c993c7c..d45fbe0 100644 --- a/noncore/net/opietooth/manager/bluebase.cpp +++ b/noncore/net/opietooth/manager/bluebase.cpp | |||
@@ -41,7 +41,7 @@ | |||
41 | 41 | ||
42 | #include <remotedevice.h> | ||
42 | 43 | ||
43 | namespace OpieTooth { | ||
44 | 44 | ||
45 | namespace OpieTooth { | ||
45 | 46 | ||
46 | #include <remotedevice.h> | ||
47 | 47 | ||
@@ -51,7 +51,17 @@ namespace OpieTooth { | |||
51 | 51 | ||
52 | QObject::connect( (QObject*) PushButton2, SIGNAL( clicked() ), this, SLOT(startScan())); | 52 | QObject::connect( (QObject*)PushButton2, SIGNAL( clicked() ), this, SLOT(startScan() ) ); |
53 | QObject::connect((QObject*)configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges())); | 53 | QObject::connect( (QObject*)configApplyButton, SIGNAL(clicked() ), this, SLOT(applyConfigChanges() ) ); |
54 | QObject::connect( (QObject*)ListView2, SIGNAL( expanded( QListViewItem * item ) ), | ||
55 | this, SLOT( addServicesToDevice( QListViewItem * item ) ) ); | ||
56 | QObject::connect( (QObject*)ListView2, SIGNAL( clicked( QListViewItem * )), | ||
57 | this, SLOT( startServiceActionClicked( QListViewItem * item ) ) ); | ||
58 | |||
59 | // | ||
60 | // QObject::connect( (QObject*) Manager, SIGNAL (foundServices( const QString& device, Services::ValueList ), this () ) ); | ||
54 | 61 | ||
62 | //Load all icons needed | ||
55 | 63 | ||
56 | 64 | ||
65 | QPixmap offPix = Resource::loadPixmap( "editdelete" ); | ||
66 | QPixmap onPix = Resource::loadPixmap( "installed" ); | ||
57 | 67 | ||
@@ -69,7 +79,24 @@ namespace OpieTooth { | |||
69 | initGui(); | 79 | initGui(); |
80 | |||
81 | |||
82 | //TESTING | ||
83 | |||
84 | ListView2->setRootIsDecorated(true); | ||
85 | |||
86 | QListViewItem *topLV = new QListViewItem( ListView2, "Harlekins Dongle" , "yes"); | ||
87 | topLV->setPixmap(0, offPix); | ||
88 | (void) new QListViewItem( topLV, "on" ); | ||
89 | (void) new QListViewItem( topLV, "off" ); | ||
90 | |||
91 | QListViewItem *topLV2 = new QListViewItem( ListView2, "Siemens S45" , "no" ); | ||
92 | topLV2->setPixmap(0, onPix); | ||
93 | (void) new QListViewItem( topLV2, "on" ); | ||
94 | (void) new QListViewItem( topLV2, "off" ); | ||
95 | |||
70 | } | 96 | } |
71 | 97 | ||
72 | /** | 98 | |
73 | * Reads all options from the config file | 99 | /** |
74 | */ | 100 | * Reads all options from the config file |
101 | */ | ||
75 | void BlueBase::readConfig() { | 102 | void BlueBase::readConfig() { |
@@ -89,5 +116,5 @@ namespace OpieTooth { | |||
89 | 116 | ||
90 | /** | 117 | /** |
91 | * Writes all options to the config file | 118 | * Writes all options to the config file |
92 | */ | 119 | */ |
93 | void BlueBase::writeConfig() { | 120 | void BlueBase::writeConfig() { |
@@ -98,3 +125,2 @@ namespace OpieTooth { | |||
98 | 125 | ||
99 | |||
100 | cfg.writeEntry("name", deviceName); | 126 | cfg.writeEntry("name", deviceName); |
@@ -108,5 +134,23 @@ namespace OpieTooth { | |||
108 | 134 | ||
109 | /** | 135 | /* |
110 | * Set up the gui | 136 | * Read the list of allready known devices |
111 | */ | 137 | * |
138 | */ | ||
139 | void BlueBase::readSavedDevices() { | ||
140 | |||
141 | } | ||
142 | |||
143 | /* | ||
144 | * Read the list of allready known devices | ||
145 | * | ||
146 | */ | ||
147 | void BlueBase::writeSavedDevices() { | ||
148 | |||
149 | |||
150 | } | ||
151 | |||
152 | |||
153 | /** | ||
154 | * Set up the gui | ||
155 | */ | ||
112 | void BlueBase::initGui() { | 156 | void BlueBase::initGui() { |
@@ -121,2 +165,4 @@ namespace OpieTooth { | |||
121 | passkeyLine->setText(defaultPasskey); | 165 | passkeyLine->setText(defaultPasskey); |
166 | // set info tab | ||
167 | setInfo(); | ||
122 | } | 168 | } |
@@ -124,9 +170,13 @@ namespace OpieTooth { | |||
124 | 170 | ||
125 | /** | 171 | /** |
126 | * Get the status informations and returns it | 172 | * Get the status informations and returns it |
127 | * @return QString the status informations gathered | 173 | * @return QString the status informations gathered |
128 | */ | 174 | */ |
129 | QString BlueBase::getStatus(){ | 175 | QString BlueBase::getStatus(){ |
130 | 176 | ||
131 | return ("manger.h need also a status method"); | 177 | QString infoString = tr("<b>Device name : </b> Ipaq" ); |
178 | infoString += QString("<br><b>" + tr("MAC adress: ") +"</b> No idea"); | ||
179 | infoString += QString("<br><b>" + tr("Class") + "</b> PDA"); | ||
180 | |||
181 | return (infoString); | ||
132 | 182 | ||
@@ -135,5 +185,5 @@ namespace OpieTooth { | |||
135 | 185 | ||
136 | /** | 186 | /** |
137 | * Read the current values from the gui and invoke writeConfig() | 187 | * Read the current values from the gui and invoke writeConfig() |
138 | */ | 188 | */ |
139 | void BlueBase::applyConfigChanges() { | 189 | void BlueBase::applyConfigChanges() { |
@@ -157,2 +207,6 @@ namespace OpieTooth { | |||
157 | 207 | ||
208 | /* | ||
209 | * Add fresh found devices from scan dialog to the listing | ||
210 | * | ||
211 | */ | ||
158 | void BlueBase::addSearchedDevices( QList<RemoteDevice> &newDevices ) { | 212 | void BlueBase::addSearchedDevices( QList<RemoteDevice> &newDevices ) { |
@@ -167,3 +221,10 @@ namespace OpieTooth { | |||
167 | RemoteDevice *dev = it.current(); | 221 | RemoteDevice *dev = it.current(); |
168 | deviceItem = new QListViewItem( ListView4, dev->name() ); | 222 | deviceItem = new QListViewItem( ListView2, dev->name() ); |
223 | |||
224 | if (deviceActive( dev ) ) { | ||
225 | deviceItem->setPixmap(0, onPix); | ||
226 | } else { | ||
227 | deviceItem->setPixmap(0, offPix); | ||
228 | } | ||
229 | |||
169 | deviceItem->setText(1, dev->mac() ); | 230 | deviceItem->setText(1, dev->mac() ); |
@@ -173,6 +234,44 @@ namespace OpieTooth { | |||
173 | 234 | ||
174 | /** | 235 | /* |
175 | * Open the "scan for devices" dialog | 236 | * Action that is toggled on entrys on click |
176 | */ | 237 | */ |
238 | void BlueBase::startServiceActionClicked( QListViewItem * item ) { | ||
239 | |||
240 | |||
241 | } | ||
242 | |||
243 | /* | ||
244 | * Action that are toggled on hold (mostly QPopups i guess) | ||
245 | */ | ||
246 | void BlueBase::startServiceActionHold( QListViewItem * item, const QPoint & point, int column) { | ||
247 | |||
248 | |||
249 | } | ||
250 | |||
251 | /* | ||
252 | * Search and display avail. services for a device (on expand from device listing) | ||
253 | * | ||
254 | */ | ||
255 | void BlueBase::addServicesToDevice( QListViewItem * item ) { | ||
256 | // row of mac adress | ||
257 | RemoteDevice *device = new RemoteDevice(item->text(1), item->text(0)); | ||
258 | //dann nen manager und darauf dann searchServises, das liefert nen signal, das wieder connected | ||
259 | // werden muss. | ||
260 | |||
261 | // delete | ||
262 | } | ||
263 | |||
264 | /* | ||
265 | * Find out if a device can currently be reached | ||
266 | */ | ||
267 | bool BlueBase::deviceActive( RemoteDevice *device ) { | ||
268 | |||
269 | return true; | ||
270 | } | ||
271 | |||
272 | /** | ||
273 | * Open the "scan for devices" dialog | ||
274 | */ | ||
177 | void BlueBase::startScan() { | 275 | void BlueBase::startScan() { |
276 | |||
178 | ScanDialog *scan = new ScanDialog( this, "", true); | 277 | ScanDialog *scan = new ScanDialog( this, "", true); |
@@ -184,5 +283,10 @@ namespace OpieTooth { | |||
184 | 283 | ||
185 | /** | 284 | |
186 | * Decontructor | 285 | void BlueBase::setInfo() { |
187 | */ | 286 | StatusLabel->setText(getStatus()); |
287 | } | ||
288 | |||
289 | /** | ||
290 | * Decontructor | ||
291 | */ | ||
188 | BlueBase::~BlueBase(){ | 292 | BlueBase::~BlueBase(){ |
diff --git a/noncore/net/opietooth/manager/bluebase.h b/noncore/net/opietooth/manager/bluebase.h index c8ceed2..7b03f82 100644 --- a/noncore/net/opietooth/manager/bluebase.h +++ b/noncore/net/opietooth/manager/bluebase.h | |||
@@ -9,2 +9,3 @@ | |||
9 | #include <qlist.h> | 9 | #include <qlist.h> |
10 | #include <qpixmap.h> | ||
10 | 11 | ||
@@ -23,2 +24,3 @@ class QCheckBox; | |||
23 | 24 | ||
25 | |||
24 | namespace OpieTooth { | 26 | namespace OpieTooth { |
@@ -43,5 +45,9 @@ namespace OpieTooth { | |||
43 | void writeConfig(); | 45 | void writeConfig(); |
46 | void readSavedDevices(); | ||
47 | void writeSavedDevices(); | ||
44 | QString getStatus(); | 48 | QString getStatus(); |
45 | void initGui(); | 49 | void initGui(); |
50 | void setInfo(); | ||
46 | 51 | ||
52 | bool deviceActive( RemoteDevice *device ); | ||
47 | 53 | ||
@@ -54,4 +60,10 @@ namespace OpieTooth { | |||
54 | 60 | ||
61 | QPixmap offPix; | ||
62 | QPixmap onPix; | ||
63 | |||
55 | private slots: | 64 | private slots: |
56 | void addSearchedDevices( QList<RemoteDevice> &newDevices ); | 65 | void addSearchedDevices( QList<RemoteDevice> &newDevices ); |
66 | void addServicesToDevice( QListViewItem * item ); | ||
67 | void startServiceActionClicked( QListViewItem * item ); | ||
68 | void startServiceActionHold( QListViewItem * item, const QPoint & point, int column); | ||
57 | void applyConfigChanges(); | 69 | void applyConfigChanges(); |
diff --git a/noncore/net/opietooth/manager/bluetoothbase.ui b/noncore/net/opietooth/manager/bluetoothbase.ui index 61e2bcf..869a9cb 100644 --- a/noncore/net/opietooth/manager/bluetoothbase.ui +++ b/noncore/net/opietooth/manager/bluetoothbase.ui | |||
@@ -93,16 +93,2 @@ | |||
93 | <name>text</name> | 93 | <name>text</name> |
94 | <string>Active</string> | ||
95 | </property> | ||
96 | <property> | ||
97 | <name>clickable</name> | ||
98 | <bool>true</bool> | ||
99 | </property> | ||
100 | <property> | ||
101 | <name>resizeable</name> | ||
102 | <bool>true</bool> | ||
103 | </property> | ||
104 | </column> | ||
105 | <column> | ||
106 | <property> | ||
107 | <name>text</name> | ||
108 | <string>Device Name</string> | 94 | <string>Device Name</string> |
@@ -121,3 +107,3 @@ | |||
121 | <name>text</name> | 107 | <name>text</name> |
122 | <string>Type</string> | 108 | <string>Online</string> |
123 | </property> | 109 | </property> |