summaryrefslogtreecommitdiff
authorpaule <paule>2007-07-15 10:07:39 (UTC)
committer paule <paule>2007-07-15 10:07:39 (UTC)
commit15fbd2a9189281ca84d89ad6a77261d0046add36 (patch) (unidiff)
treedac2df5ba719b26ab536fe1bb505325749d3c975
parentfdc3476cebdffd6574fa7e874c1051b0b8bc6145 (diff)
downloadopie-15fbd2a9189281ca84d89ad6a77261d0046add36.zip
opie-15fbd2a9189281ca84d89ad6a77261d0046add36.tar.gz
opie-15fbd2a9189281ca84d89ad6a77261d0046add36.tar.bz2
Remove erroneous #ifdef BLUETOOTH around code which is for IR only. Patch courtesy of Marek Vasut <marek.vasut@gmail.com>.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/obex/obexsend.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/obex/obexsend.cpp b/core/obex/obexsend.cpp
index d58b4e9..a401a40 100644
--- a/core/obex/obexsend.cpp
+++ b/core/obex/obexsend.cpp
@@ -1,352 +1,348 @@
1// 7-Jul-2005 mbh@sdgsystems.com: replace hand coded form with one 1// 7-Jul-2005 mbh@sdgsystems.com: replace hand coded form with one
2// generated via QT2 Designer. The new form supports 2// generated via QT2 Designer. The new form supports
3// selection of target devices, as opposed to sending to 3// selection of target devices, as opposed to sending to
4// all. 4// all.
5 5
6#include "obex.h" 6#include "obex.h"
7#ifdef BLUETOOTH 7#ifdef BLUETOOTH
8#include "btobex.h" 8#include "btobex.h"
9#endif 9#endif
10#include "obexsend.h" 10#include "obexsend.h"
11using namespace OpieObex; 11using namespace OpieObex;
12#ifdef BLUETOOTH 12#ifdef BLUETOOTH
13using namespace OpieTooth; 13using namespace OpieTooth;
14#endif 14#endif
15 15
16/* OPIE */ 16/* OPIE */
17#include <opie2/odebug.h> 17#include <opie2/odebug.h>
18#include <qpe/qcopenvelope_qws.h> 18#include <qpe/qcopenvelope_qws.h>
19#include <opie2/oresource.h> 19#include <opie2/oresource.h>
20#include <qpe/version.h> 20#include <qpe/version.h>
21#ifdef BLUETOOTH 21#ifdef BLUETOOTH
22#include <devicehandler.h> 22#include <devicehandler.h>
23#include "remotedevice.h" 23#include "remotedevice.h"
24#endif 24#endif
25 25
26using namespace Opie::Core; 26using namespace Opie::Core;
27 27
28/* QT */ 28/* QT */
29#include <qlabel.h> 29#include <qlabel.h>
30#include <qpushbutton.h> 30#include <qpushbutton.h>
31#include <qpixmap.h> 31#include <qpixmap.h>
32#include <qlistview.h> 32#include <qlistview.h>
33 33
34#include <unistd.h> 34#include <unistd.h>
35/* TRANSLATOR OpieObex::SendWidget */ 35/* TRANSLATOR OpieObex::SendWidget */
36 36
37/* Just for backward compatibility */ 37/* Just for backward compatibility */
38#if OPIE_VERSION < 102010 38#if OPIE_VERSION < 102010
39 #define OResource Resource 39 #define OResource Resource
40#endif 40#endif
41 41
42SendWidget::SendWidget( QWidget* parent, const char* name ) 42SendWidget::SendWidget( QWidget* parent, const char* name )
43 : obexSendBase( parent, name ) { 43 : obexSendBase( parent, name ) {
44 initUI(); 44 initUI();
45} 45}
46SendWidget::~SendWidget() { 46SendWidget::~SendWidget() {
47} 47}
48void SendWidget::initUI() { 48void SendWidget::initUI() {
49 m_obex = new Obex(this, "obex"); 49 m_obex = new Obex(this, "obex");
50 connect(m_obex, SIGNAL(error(int) ), 50 connect(m_obex, SIGNAL(error(int) ),
51 this, SLOT(slotIrError(int) ) ); 51 this, SLOT(slotIrError(int) ) );
52 connect(m_obex, SIGNAL(sent(bool) ), 52 connect(m_obex, SIGNAL(sent(bool) ),
53 this, SLOT(slotIrSent(bool) ) ); 53 this, SLOT(slotIrSent(bool) ) );
54 connect(m_obex, SIGNAL(currentTry(unsigned int) ), 54 connect(m_obex, SIGNAL(currentTry(unsigned int) ),
55 this, SLOT(slotIrTry(unsigned int) ) ); 55 this, SLOT(slotIrTry(unsigned int) ) );
56 56
57 QCopChannel* chan = new QCopChannel("QPE/IrDaAppletBack", this ); 57 QCopChannel* chan = new QCopChannel("QPE/IrDaAppletBack", this );
58 connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), 58 connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
59 this, SLOT(dispatchIrda(const QCString&,const QByteArray&) ) ); 59 this, SLOT(dispatchIrda(const QCString&,const QByteArray&) ) );
60 60
61#ifdef BLUETOOTH 61#ifdef BLUETOOTH
62 m_btobex = new BtObex(this, "btobex"); 62 m_btobex = new BtObex(this, "btobex");
63 connect(m_btobex, SIGNAL(error(int) ), 63 connect(m_btobex, SIGNAL(error(int) ),
64 this, SLOT(slotBtError(int) ) ); 64 this, SLOT(slotBtError(int) ) );
65 connect(m_btobex, SIGNAL(sent(bool) ), 65 connect(m_btobex, SIGNAL(sent(bool) ),
66 this, SLOT(slotBtSent(bool) ) ); 66 this, SLOT(slotBtSent(bool) ) );
67 connect(m_btobex, SIGNAL(currentTry(unsigned int) ), 67 connect(m_btobex, SIGNAL(currentTry(unsigned int) ),
68 this, SLOT(slotBtTry(unsigned int) ) ); 68 this, SLOT(slotBtTry(unsigned int) ) );
69 69
70 chan = new QCopChannel("QPE/BluetoothBack", this ); 70 chan = new QCopChannel("QPE/BluetoothBack", this );
71 connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ), 71 connect(chan, SIGNAL(received(const QCString&,const QByteArray&) ),
72 this, SLOT(dispatchBt(const QCString&,const QByteArray&) ) ); 72 this, SLOT(dispatchBt(const QCString&,const QByteArray&) ) );
73#endif 73#endif
74} 74}
75 75
76/* 76/*
77 * in send we'll first set everything up 77 * in send we'll first set everything up
78 * and then wait for a list of devices. 78 * and then wait for a list of devices.
79 */ 79 */
80void SendWidget::send( const QString& file, const QString& desc ) { 80void SendWidget::send( const QString& file, const QString& desc ) {
81 m_file = file; 81 m_file = file;
82 m_irDa.clear(); 82 m_irDa.clear();
83#ifdef BLUETOOTH 83#ifdef BLUETOOTH
84 m_bt.clear(); 84 m_bt.clear();
85#endif 85#endif
86 m_start = 0; 86 m_start = 0;
87 87
88 fileToSend->setText(desc.isEmpty() ? file : desc ); 88 fileToSend->setText(desc.isEmpty() ? file : desc );
89 89
90 if ( !QCopChannel::isRegistered("QPE/IrDaApplet") ) 90 if ( !QCopChannel::isRegistered("QPE/IrDaApplet") )
91 { 91 {
92 irdaStatus->setText(tr("not enabled.")); 92 irdaStatus->setText(tr("not enabled."));
93 } 93 }
94 else 94 else
95 { 95 {
96 QCopEnvelope e1("QPE/IrDaApplet", "enableIrda()"); 96 QCopEnvelope e1("QPE/IrDaApplet", "enableIrda()");
97 irdaStatus->setText(tr("ready")); 97 irdaStatus->setText(tr("ready"));
98 sendButton->setEnabled( true ); 98 sendButton->setEnabled( true );
99 } 99 }
100#ifdef BLUETOOTH 100#ifdef BLUETOOTH
101 if ( !QCopChannel::isRegistered("QPE/Bluetooth") ) 101 if ( !QCopChannel::isRegistered("QPE/Bluetooth") )
102 { 102 {
103 btStatus->setText(tr("not enabled.")); 103 btStatus->setText(tr("not enabled."));
104 } 104 }
105 else 105 else
106 { 106 {
107 QCopEnvelope e1("QPE/Bluetooth", "enableBluetooth()"); 107 QCopEnvelope e1("QPE/Bluetooth", "enableBluetooth()");
108 btStatus->setText(tr("ready.")); 108 btStatus->setText(tr("ready."));
109 sendButton->setEnabled( true ); 109 sendButton->setEnabled( true );
110 } 110 }
111 read_receivers(); 111 read_receivers();
112#endif 112#endif
113} 113}
114 114
115int SendWidget::addReceiver(const QString& str, const char *icon) 115int SendWidget::addReceiver(const QString& str, const char *icon)
116{ 116{
117 QListViewItem * item = new QListViewItem( receiverList, 0 ); 117 QListViewItem * item = new QListViewItem( receiverList, 0 );
118 item->setText( 0, str ); 118 item->setText( 0, str );
119 item->setPixmap( 1, OResource::loadPixmap( icon ) ); 119 item->setPixmap( 1, OResource::loadPixmap( icon ) );
120 120
121 int id = receivers.count(); 121 int id = receivers.count();
122 receivers[id] = item; 122 receivers[id] = item;
123 return id; 123 return id;
124} 124}
125 125
126bool SendWidget::receiverSelected(int id) 126bool SendWidget::receiverSelected(int id)
127{ 127{
128 return (bool)(receivers[id]->pixmap(2) != NULL); 128 return (bool)(receivers[id]->pixmap(2) != NULL);
129} 129}
130 130
131void SendWidget::setReceiverStatus( int id, const QString& status ) { 131void SendWidget::setReceiverStatus( int id, const QString& status ) {
132 if ( !receivers.contains(id) ) return; 132 if ( !receivers.contains(id) ) return;
133 receivers[id]->setText(3, status ); 133 receivers[id]->setText(3, status );
134} 134}
135 135
136void SendWidget::slotIrDaDevices( const QStringList& list) { 136void SendWidget::slotIrDaDevices( const QStringList& list) {
137 for (QStringList::ConstIterator it = list.begin(); 137 for (QStringList::ConstIterator it = list.begin();
138 it != list.end(); ++it ) { 138 it != list.end(); ++it ) {
139 int id = addReceiver(*it, "obex/irda.png"); 139 int id = addReceiver(*it, "obex/irda.png");
140 m_irDa.insert( id, (*it) ); 140 m_irDa.insert( id, (*it) );
141 } 141 }
142 irdaStatus->setText( tr("ready.")); 142 irdaStatus->setText( tr("ready."));
143 m_irDaIt = m_irDa.begin(); 143 m_irDaIt = m_irDa.begin();
144 144
145} 145}
146 146
147void SendWidget::slotBTDevices( const QMap<QString, QString>& str ) { 147void SendWidget::slotBTDevices( const QMap<QString, QString>& str ) {
148#ifdef BLUETOOTH 148#ifdef BLUETOOTH
149 for(QMap<QString, QString>::ConstIterator it = str.begin(); 149 for(QMap<QString, QString>::ConstIterator it = str.begin();
150 it != str.end(); ++it ) { 150 it != str.end(); ++it ) {
151 int id = addReceiver(it.key(), "obex/bt.png"); 151 int id = addReceiver(it.key(), "obex/bt.png");
152 m_bt.insert( id, Pair( it.key(), it.data() ) ); 152 m_bt.insert( id, Pair( it.key(), it.data() ) );
153 } 153 }
154 btStatus->setText(tr("ready.")); 154 btStatus->setText(tr("ready."));
155 m_btIt = m_bt.begin(); 155 m_btIt = m_bt.begin();
156 156
157#else 157#else
158 (void)str; 158 (void)str;
159#endif 159#endif
160} 160}
161void SendWidget::slotSelectedDevice( int, int ) { 161void SendWidget::slotSelectedDevice( int, int ) {
162/* if ( name == m_irDeSearch ) { 162/* if ( name == m_irDeSearch ) {
163 for (QMap<int, QString>::Iterator it= m_irDa.begin(); it != m_irDa.end(); ++it ) 163 for (QMap<int, QString>::Iterator it= m_irDa.begin(); it != m_irDa.end(); ++it )
164 m_devBox->removeDevice( it.key() ); 164 m_devBox->removeDevice( it.key() );
165 165
166 QCopEnvelope e2("QPE/IrDaApplet", "listDevices()"); 166 QCopEnvelope e2("QPE/IrDaApplet", "listDevices()");
167 }*/ 167 }*/
168} 168}
169void SendWidget::dispatchIrda( const QCString& str, const QByteArray& ar ) { 169void SendWidget::dispatchIrda( const QCString& str, const QByteArray& ar ) {
170 if ( str == "devices(QStringList)" ) { 170 if ( str == "devices(QStringList)" ) {
171 QDataStream stream( ar, IO_ReadOnly ); 171 QDataStream stream( ar, IO_ReadOnly );
172 QStringList list; 172 QStringList list;
173 stream >> list; 173 stream >> list;
174 slotIrDaDevices( list ); 174 slotIrDaDevices( list );
175 } 175 }
176} 176}
177void SendWidget::slotIrError( int ) { 177void SendWidget::slotIrError( int ) {
178 irdaStatus->setText(tr("error :(")); 178 irdaStatus->setText(tr("error :("));
179} 179}
180void SendWidget::slotIrSent( bool b) { 180void SendWidget::slotIrSent( bool b) {
181#ifdef BLUETOOTH
182 QString text = b ? tr("Sent") : tr("Failure"); 181 QString text = b ? tr("Sent") : tr("Failure");
183 setReceiverStatus( m_irDaIt.key(), text ); 182 setReceiverStatus( m_irDaIt.key(), text );
184 ++m_irDaIt; 183 ++m_irDaIt;
185 slotStartIrda(); 184 slotStartIrda();
186#else
187 (void)b;
188#endif
189} 185}
190void SendWidget::slotIrTry(unsigned int trI) { 186void SendWidget::slotIrTry(unsigned int trI) {
191 setReceiverStatus(m_irDaIt.key(), tr("Try %1").arg( QString::number( trI ) )); 187 setReceiverStatus(m_irDaIt.key(), tr("Try %1").arg( QString::number( trI ) ));
192} 188}
193void SendWidget::slotStartIrda() { 189void SendWidget::slotStartIrda() {
194 if ( !m_irDa.count() ) 190 if ( !m_irDa.count() )
195 return; 191 return;
196 if ( m_irDaIt == m_irDa.end() || !receiverSelected(m_irDaIt.key())) { 192 if ( m_irDaIt == m_irDa.end() || !receiverSelected(m_irDaIt.key())) {
197 irdaStatus->setText(tr("complete.")); 193 irdaStatus->setText(tr("complete."));
198 m_irDaIt = m_irDa.begin(); 194 m_irDaIt = m_irDa.begin();
199 return; 195 return;
200 } 196 }
201 setReceiverStatus( m_irDaIt.key(), tr("Start sending") ); 197 setReceiverStatus( m_irDaIt.key(), tr("Start sending") );
202 irdaStatus->setText(tr("sending.")); 198 irdaStatus->setText(tr("sending."));
203 m_obex->send( m_file, tr("noaddress") ); 199 m_obex->send( m_file, tr("noaddress") );
204} 200}
205 201
206void SendWidget::dispatchBt( const QCString& str, const QByteArray& ar ) { 202void SendWidget::dispatchBt( const QCString& str, const QByteArray& ar ) {
207 if ( str == "devices(QStringMap)" ) { 203 if ( str == "devices(QStringMap)" ) {
208 QDataStream stream( ar, IO_ReadOnly ); 204 QDataStream stream( ar, IO_ReadOnly );
209 QMap<QString, QString> btmap; 205 QMap<QString, QString> btmap;
210 stream >> btmap; 206 stream >> btmap;
211 slotBTDevices( btmap ); 207 slotBTDevices( btmap );
212 } 208 }
213} 209}
214void SendWidget::slotBtError( int ) { 210void SendWidget::slotBtError( int ) {
215 btStatus->setText(tr("error :(")); 211 btStatus->setText(tr("error :("));
216} 212}
217void SendWidget::slotBtSent( bool b) { 213void SendWidget::slotBtSent( bool b) {
218#ifdef BLUETOOTH 214#ifdef BLUETOOTH
219 QString text = b ? tr("Sent") : tr("Failure"); 215 QString text = b ? tr("Sent") : tr("Failure");
220 setReceiverStatus( m_btIt.key(), text ); 216 setReceiverStatus( m_btIt.key(), text );
221 ++m_btIt; 217 ++m_btIt;
222 slotStartBt(); 218 slotStartBt();
223#else 219#else
224 (void)b; 220 (void)b;
225#endif 221#endif
226} 222}
227void SendWidget::slotBtTry(unsigned int trI) { 223void SendWidget::slotBtTry(unsigned int trI) {
228#ifdef BLUETOOTH 224#ifdef BLUETOOTH
229 setReceiverStatus( m_btIt.key(), tr("Try %1").arg( QString::number( trI ) ) ); 225 setReceiverStatus( m_btIt.key(), tr("Try %1").arg( QString::number( trI ) ) );
230#else 226#else
231 (void)trI; 227 (void)trI;
232#endif 228#endif
233} 229}
234void SendWidget::slotStartBt() { 230void SendWidget::slotStartBt() {
235#ifdef BLUETOOTH 231#ifdef BLUETOOTH
236 // skip past unselected receivers 232 // skip past unselected receivers
237 if ( !m_bt.count() ) 233 if ( !m_bt.count() )
238 return; 234 return;
239 while((m_btIt != m_bt.end()) && !receiverSelected(m_btIt.key())) 235 while((m_btIt != m_bt.end()) && !receiverSelected(m_btIt.key()))
240 ++m_btIt; 236 ++m_btIt;
241 if (m_btIt == m_bt.end() ) { 237 if (m_btIt == m_bt.end() ) {
242 btStatus->setText(tr("complete.")); 238 btStatus->setText(tr("complete."));
243 m_btIt = m_bt.begin(); 239 m_btIt = m_bt.begin();
244 return; 240 return;
245 } 241 }
246 setReceiverStatus( m_btIt.key(), tr("Start sending") ); 242 setReceiverStatus( m_btIt.key(), tr("Start sending") );
247 btStatus->setText(tr("sending.")); 243 btStatus->setText(tr("sending."));
248 m_btobex->send( m_file, m_btIt.data().second() ); 244 m_btobex->send( m_file, m_btIt.data().second() );
249#endif 245#endif
250} 246}
251 247
252void SendWidget::send_to_receivers() { 248void SendWidget::send_to_receivers() {
253#ifdef BLUETOOTH 249#ifdef BLUETOOTH
254 slotStartBt(); 250 slotStartBt();
255#endif 251#endif
256 slotStartIrda(); 252 slotStartIrda();
257} 253}
258 254
259#ifdef BLUETOOTH 255#ifdef BLUETOOTH
260/** 256/**
261 * Read receivers saved by bluetooth manager 257 * Read receivers saved by bluetooth manager
262 */ 258 */
263void SendWidget::read_receivers() 259void SendWidget::read_receivers()
264{ 260{
265 QValueList<RemoteDevice> devices; 261 QValueList<RemoteDevice> devices;
266 DeviceHandler handler; 262 DeviceHandler handler;
267 QValueList<RemoteDevice>::ConstIterator it; 263 QValueList<RemoteDevice>::ConstIterator it;
268 264
269 receiverList->clear(); 265 receiverList->clear();
270 receivers.clear(); 266 receivers.clear();
271 sendButton->setDisabled( true ); 267 sendButton->setDisabled( true );
272 btStatus->setText(tr("load.")); 268 btStatus->setText(tr("load."));
273 m_bt.clear(); 269 m_bt.clear();
274 270
275 if ( QCopChannel::isRegistered("QPE/Bluetooth") ) 271 if ( QCopChannel::isRegistered("QPE/Bluetooth") )
276 { 272 {
277 devices = handler.load(); 273 devices = handler.load();
278 for( it = devices.begin(); it != devices.end() ; ++it ) 274 for( it = devices.begin(); it != devices.end() ; ++it )
279 { 275 {
280 int id = addReceiver((*it).name(), "obex/bt.png"); 276 int id = addReceiver((*it).name(), "obex/bt.png");
281 m_bt.insert(id, Pair((*it).name(), (*it).mac())); 277 m_bt.insert(id, Pair((*it).name(), (*it).mac()));
282 } 278 }
283 btStatus->setText(tr("ready.")); 279 btStatus->setText(tr("ready."));
284 m_btIt = m_bt.begin(); 280 m_btIt = m_bt.begin();
285 sendButton->setEnabled( true ); 281 sendButton->setEnabled( true );
286 } 282 }
287} 283}
288#endif 284#endif
289 285
290void SendWidget::scan_for_receivers() 286void SendWidget::scan_for_receivers()
291{ 287{
292 sendButton->setDisabled( true ); 288 sendButton->setDisabled( true );
293 receiverList->clear(); 289 receiverList->clear();
294 receivers.clear(); 290 receivers.clear();
295 m_irDa.clear(); 291 m_irDa.clear();
296#ifdef BLUETOOTH 292#ifdef BLUETOOTH
297 m_bt.clear(); 293 m_bt.clear();
298#endif 294#endif
299 if ( QCopChannel::isRegistered("QPE/IrDaApplet") ) 295 if ( QCopChannel::isRegistered("QPE/IrDaApplet") )
300 { 296 {
301 irdaStatus->setText(tr("searching...")); 297 irdaStatus->setText(tr("searching..."));
302 sendButton->setEnabled( true ); 298 sendButton->setEnabled( true );
303 QCopEnvelope e2("QPE/IrDaApplet", "listDevices()"); 299 QCopEnvelope e2("QPE/IrDaApplet", "listDevices()");
304 } 300 }
305 301
306#ifdef BLUETOOTH 302#ifdef BLUETOOTH
307 if ( QCopChannel::isRegistered("QPE/Bluetooth") ) 303 if ( QCopChannel::isRegistered("QPE/Bluetooth") )
308 { 304 {
309 btStatus->setText(tr("searching...")); 305 btStatus->setText(tr("searching..."));
310 sendButton->setEnabled( true ); 306 sendButton->setEnabled( true );
311 QCopEnvelope e3("QPE/Bluetooth", "listDevices()"); 307 QCopEnvelope e3("QPE/Bluetooth", "listDevices()");
312 } 308 }
313#endif 309#endif
314} 310}
315 311
316void SendWidget::toggle_receiver(QListViewItem* item) 312void SendWidget::toggle_receiver(QListViewItem* item)
317{ 313{
318 if (!item) 314 if (!item)
319 return; 315 return;
320 // toggle the state of an individual receiver. 316 // toggle the state of an individual receiver.
321 if (item->pixmap(2)) 317 if (item->pixmap(2))
322 item->setPixmap(2, QPixmap()); 318 item->setPixmap(2, QPixmap());
323 else 319 else
324 item->setPixmap(2, OResource::loadPixmap("obex/check.png")); 320 item->setPixmap(2, OResource::loadPixmap("obex/check.png"));
325} 321}
326 322
327 323
328void SendWidget::closeEvent( QCloseEvent* evt) { 324void SendWidget::closeEvent( QCloseEvent* evt) {
329 delete m_obex; 325 delete m_obex;
330 m_obex = NULL; 326 m_obex = NULL;
331#ifdef BLUETOOTH 327#ifdef BLUETOOTH
332 delete m_btobex; 328 delete m_btobex;
333 m_btobex = NULL; 329 m_btobex = NULL;
334#endif 330#endif
335 obexSendBase::closeEvent(evt); 331 obexSendBase::closeEvent(evt);
336 { 332 {
337 QCopEnvelope e("QPE/IrDaApplet", "disableIrda()"); 333 QCopEnvelope e("QPE/IrDaApplet", "disableIrda()");
338 } 334 }
339#ifdef BLUETOOTH 335#ifdef BLUETOOTH
340 { 336 {
341 QCopEnvelope e("QPE/Bluetooth", "disableBluetooth()"); 337 QCopEnvelope e("QPE/Bluetooth", "disableBluetooth()");
342 } 338 }
343#endif 339#endif
344} 340}
345 341
346void SendWidget::userDone() { 342void SendWidget::userDone() {
347 close(); 343 close();
348} 344}
349 345
350QString SendWidget::file()const { 346QString SendWidget::file()const {
351 return m_file; 347 return m_file;
352} 348}