author | cniehaus <cniehaus> | 2002-12-13 16:19:10 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-13 16:19:10 (UTC) |
commit | c8383e3b2e83631f68ee93173422e83746be695f (patch) (unidiff) | |
tree | 0550567844d620155d11dd31c1c0db50ba2a9b5e | |
parent | 33513c771164337da46c65f379c98b06adb6f704 (diff) | |
download | opie-c8383e3b2e83631f68ee93173422e83746be695f.zip opie-c8383e3b2e83631f68ee93173422e83746be695f.tar.gz opie-c8383e3b2e83631f68ee93173422e83746be695f.tar.bz2 |
have overseen one
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 5ce90a9..30fa85b 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -274,193 +274,193 @@ void AddressbookWindow::slotConfig() | |||
274 | m_curFontSize = m_config.fontSize(); | 274 | m_curFontSize = m_config.fontSize(); |
275 | emit slotSetFont( m_curFontSize ); | 275 | emit slotSetFont( m_curFontSize ); |
276 | } | 276 | } |
277 | m_abView -> setListOrder( m_config.orderList() ); | 277 | m_abView -> setListOrder( m_config.orderList() ); |
278 | } | 278 | } |
279 | 279 | ||
280 | delete dlg; | 280 | delete dlg; |
281 | } | 281 | } |
282 | 282 | ||
283 | 283 | ||
284 | void AddressbookWindow::slotSetFont( int size ) | 284 | void AddressbookWindow::slotSetFont( int size ) |
285 | { | 285 | { |
286 | qWarning("void AddressbookWindow::slotSetFont( %d )", size); | 286 | qWarning("void AddressbookWindow::slotSetFont( %d )", size); |
287 | 287 | ||
288 | if (size > 2 || size < 0) | 288 | if (size > 2 || size < 0) |
289 | size = 1; | 289 | size = 1; |
290 | 290 | ||
291 | m_config.setFontSize( size ); | 291 | m_config.setFontSize( size ); |
292 | 292 | ||
293 | QFont *currentFont; | 293 | QFont *currentFont; |
294 | 294 | ||
295 | switch (size) { | 295 | switch (size) { |
296 | case 0: | 296 | case 0: |
297 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); | 297 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() - 2 ) ); |
298 | currentFont = new QFont (m_abView->font()); | 298 | currentFont = new QFont (m_abView->font()); |
299 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX | 299 | // abList->resizeRows(currentFont->pixelSize() + 7); :SX |
300 | // abList->resizeRows(); | 300 | // abList->resizeRows(); |
301 | break; | 301 | break; |
302 | case 1: | 302 | case 1: |
303 | m_abView->setFont( *defaultFont ); | 303 | m_abView->setFont( *defaultFont ); |
304 | currentFont = new QFont (m_abView->font()); | 304 | currentFont = new QFont (m_abView->font()); |
305 | // // abList->resizeRows(currentFont->pixelSize() + 7); | 305 | // // abList->resizeRows(currentFont->pixelSize() + 7); |
306 | // abList->resizeRows(); | 306 | // abList->resizeRows(); |
307 | break; | 307 | break; |
308 | case 2: | 308 | case 2: |
309 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() + 2 ) ); | 309 | m_abView->setFont( QFont( defaultFont->family(), defaultFont->pointSize() + 2 ) ); |
310 | currentFont = new QFont (m_abView->font()); | 310 | currentFont = new QFont (m_abView->font()); |
311 | // //abList->resizeRows(currentFont->pixelSize() + 7); | 311 | // //abList->resizeRows(currentFont->pixelSize() + 7); |
312 | // abList->resizeRows(); | 312 | // abList->resizeRows(); |
313 | break; | 313 | break; |
314 | } | 314 | } |
315 | } | 315 | } |
316 | 316 | ||
317 | 317 | ||
318 | 318 | ||
319 | void AddressbookWindow::importvCard() { | 319 | void AddressbookWindow::importvCard() { |
320 | QString str = OFileDialog::getOpenFileName( 1,"/");//,"", "*", this ); | 320 | QString str = OFileDialog::getOpenFileName( 1,"/");//,"", "*", this ); |
321 | if(!str.isEmpty() ){ | 321 | if(!str.isEmpty() ){ |
322 | setDocument((const QString&) str ); | 322 | setDocument((const QString&) str ); |
323 | } | 323 | } |
324 | 324 | ||
325 | } | 325 | } |
326 | 326 | ||
327 | void AddressbookWindow::setDocument( const QString &filename ) | 327 | void AddressbookWindow::setDocument( const QString &filename ) |
328 | { | 328 | { |
329 | qWarning( "void AddressbookWindow::setDocument( %s )", filename.latin1() ); | 329 | qWarning( "void AddressbookWindow::setDocument( %s )", filename.latin1() ); |
330 | 330 | ||
331 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ | 331 | if ( filename.find(".vcf") != int(filename.length()) - 4 ){ |
332 | 332 | ||
333 | 333 | ||
334 | 334 | ||
335 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), | 335 | switch( QMessageBox::information( this, tr ( "Right file type ?" ), |
336 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), | 336 | tr( "The selected file \n does not end with \".vcf\".\n Do you really want to open it?" ), |
337 | tr( "&Yes" ), tr( "&No" ), QString::null, | 337 | tr( "&Yes" ), tr( "&No" ), QString::null, |
338 | 0, // Enter == button 0 | 338 | 0, // Enter == button 0 |
339 | 2 ) ) { // Escape == button 2 | 339 | 2 ) ) { // Escape == button 2 |
340 | case 0: | 340 | case 0: |
341 | qWarning("YES clicked"); | 341 | qWarning("YES clicked"); |
342 | break; | 342 | break; |
343 | case 1: | 343 | case 1: |
344 | qWarning("NO clicked"); | 344 | qWarning("NO clicked"); |
345 | return; | 345 | return; |
346 | break; | 346 | break; |
347 | } | 347 | } |
348 | } | 348 | } |
349 | 349 | ||
350 | OContactAccessBackend* vcard_backend = new OContactAccessBackend_VCard( QString::null, | 350 | OContactAccessBackend* vcard_backend = new OContactAccessBackend_VCard( QString::null, |
351 | filename ); | 351 | filename ); |
352 | OContactAccess* access = new OContactAccess ( "addressbook", QString::null , vcard_backend, true ); | 352 | OContactAccess* access = new OContactAccess ( "addressbook", QString::null , vcard_backend, true ); |
353 | OContactAccess::List allList = access->allRecords(); | 353 | OContactAccess::List allList = access->allRecords(); |
354 | qWarning( "Found number of contacts in File: %d", allList.count() ); | 354 | qWarning( "Found number of contacts in File: %d", allList.count() ); |
355 | 355 | ||
356 | if ( !allList.count() ) { | 356 | if ( !allList.count() ) { |
357 | QMessageBox::information( this, "Import VCard", | 357 | QMessageBox::information( this, "Import VCard", |
358 | "It was impossible to import the VCard.\n" | 358 | "It was impossible to import the VCard.\n" |
359 | "The VCard may be corrupted!" ); | 359 | "The VCard may be corrupted!" ); |
360 | } | 360 | } |
361 | 361 | ||
362 | bool doAsk = true; | 362 | bool doAsk = true; |
363 | OContactAccess::List::Iterator it; | 363 | OContactAccess::List::Iterator it; |
364 | for ( it = allList.begin(); it != allList.end(); ++it ){ | 364 | for ( it = allList.begin(); it != allList.end(); ++it ){ |
365 | qWarning("Adding Contact from: %s", (*it).fullName().latin1() ); | 365 | qWarning("Adding Contact from: %s", (*it).fullName().latin1() ); |
366 | if ( doAsk ){ | 366 | if ( doAsk ){ |
367 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), | 367 | switch( QMessageBox::information( this, tr ( "Add Contact?" ), |
368 | tr( "Do you really want add contact for \n%1?" ) | 368 | tr( "Do you really want add contact for \n%1?" ) |
369 | .arg( (*it).fullName().latin1() ), | 369 | .arg( (*it).fullName().latin1() ), |
370 | tr( "&Yes" ), tr( "&No" ), tr( "&AllYes"), | 370 | tr( "&Yes" ), tr( "&No" ), tr( "&All Yes"), |
371 | 0, // Enter == button 0 | 371 | 0, // Enter == button 0 |
372 | 2 ) ) { // Escape == button 2 | 372 | 2 ) ) { // Escape == button 2 |
373 | case 0: | 373 | case 0: |
374 | qWarning("YES clicked"); | 374 | qWarning("YES clicked"); |
375 | m_abView->addEntry( *it ); | 375 | m_abView->addEntry( *it ); |
376 | break; | 376 | break; |
377 | case 1: | 377 | case 1: |
378 | qWarning("NO clicked"); | 378 | qWarning("NO clicked"); |
379 | break; | 379 | break; |
380 | case 2: | 380 | case 2: |
381 | qWarning("YesAll clicked"); | 381 | qWarning("YesAll clicked"); |
382 | doAsk = false; | 382 | doAsk = false; |
383 | break; | 383 | break; |
384 | } | 384 | } |
385 | }else | 385 | }else |
386 | m_abView->addEntry( *it ); | 386 | m_abView->addEntry( *it ); |
387 | 387 | ||
388 | } | 388 | } |
389 | 389 | ||
390 | delete access; | 390 | delete access; |
391 | } | 391 | } |
392 | 392 | ||
393 | void AddressbookWindow::resizeEvent( QResizeEvent *e ) | 393 | void AddressbookWindow::resizeEvent( QResizeEvent *e ) |
394 | { | 394 | { |
395 | QMainWindow::resizeEvent( e ); | 395 | QMainWindow::resizeEvent( e ); |
396 | 396 | ||
397 | 397 | ||
398 | } | 398 | } |
399 | 399 | ||
400 | AddressbookWindow::~AddressbookWindow() | 400 | AddressbookWindow::~AddressbookWindow() |
401 | { | 401 | { |
402 | ToolBarDock dock; | 402 | ToolBarDock dock; |
403 | int dummy; | 403 | int dummy; |
404 | bool bDummy; | 404 | bool bDummy; |
405 | getLocation ( listTools, dock, dummy, bDummy, dummy ); | 405 | getLocation ( listTools, dock, dummy, bDummy, dummy ); |
406 | m_config.setToolBarDock( dock ); | 406 | m_config.setToolBarDock( dock ); |
407 | m_config.save(); | 407 | m_config.save(); |
408 | } | 408 | } |
409 | 409 | ||
410 | void AddressbookWindow::slotUpdateToolbar() | 410 | void AddressbookWindow::slotUpdateToolbar() |
411 | { | 411 | { |
412 | OContact ce = m_abView->currentEntry(); | 412 | OContact ce = m_abView->currentEntry(); |
413 | actionMail->setEnabled( !ce.defaultEmail().isEmpty() ); | 413 | actionMail->setEnabled( !ce.defaultEmail().isEmpty() ); |
414 | } | 414 | } |
415 | 415 | ||
416 | void AddressbookWindow::slotListNew() | 416 | void AddressbookWindow::slotListNew() |
417 | { | 417 | { |
418 | OContact cnt; | 418 | OContact cnt; |
419 | if( !syncing ) { | 419 | if( !syncing ) { |
420 | editEntry( NewEntry ); | 420 | editEntry( NewEntry ); |
421 | } else { | 421 | } else { |
422 | QMessageBox::warning(this, tr("OContacts"), | 422 | QMessageBox::warning(this, tr("OContacts"), |
423 | tr("Can not edit data, currently syncing")); | 423 | tr("Can not edit data, currently syncing")); |
424 | } | 424 | } |
425 | } | 425 | } |
426 | 426 | ||
427 | // void AddressbookWindow::slotListView() | 427 | // void AddressbookWindow::slotListView() |
428 | // { | 428 | // { |
429 | // m_abView -> init( abList->currentEntry() ); | 429 | // m_abView -> init( abList->currentEntry() ); |
430 | // // :SX mView->sync(); | 430 | // // :SX mView->sync(); |
431 | // //:SXshowView(); | 431 | // //:SXshowView(); |
432 | // } | 432 | // } |
433 | 433 | ||
434 | void AddressbookWindow::slotListDelete() | 434 | void AddressbookWindow::slotListDelete() |
435 | { | 435 | { |
436 | if(!syncing) { | 436 | if(!syncing) { |
437 | OContact tmpEntry = m_abView ->currentEntry(); | 437 | OContact tmpEntry = m_abView ->currentEntry(); |
438 | 438 | ||
439 | // get a name, do the best we can... | 439 | // get a name, do the best we can... |
440 | QString strName = tmpEntry.fullName(); | 440 | QString strName = tmpEntry.fullName(); |
441 | if ( strName.isEmpty() ) { | 441 | if ( strName.isEmpty() ) { |
442 | strName = tmpEntry.company(); | 442 | strName = tmpEntry.company(); |
443 | if ( strName.isEmpty() ) | 443 | if ( strName.isEmpty() ) |
444 | strName = "No Name"; | 444 | strName = "No Name"; |
445 | } | 445 | } |
446 | 446 | ||
447 | 447 | ||
448 | if ( QPEMessageBox::confirmDelete( this, tr( "Contacts" ), | 448 | if ( QPEMessageBox::confirmDelete( this, tr( "Contacts" ), |
449 | strName ) ) { | 449 | strName ) ) { |
450 | m_abView->removeEntry( tmpEntry.uid() ); | 450 | m_abView->removeEntry( tmpEntry.uid() ); |
451 | } | 451 | } |
452 | } else { | 452 | } else { |
453 | QMessageBox::warning( this, tr("Contacts"), | 453 | QMessageBox::warning( this, tr("Contacts"), |
454 | tr("Can not edit data, currently syncing") ); | 454 | tr("Can not edit data, currently syncing") ); |
455 | } | 455 | } |
456 | } | 456 | } |
457 | 457 | ||
458 | void AddressbookWindow::slotFindOpen() | 458 | void AddressbookWindow::slotFindOpen() |
459 | { | 459 | { |
460 | searchBar->show(); | 460 | searchBar->show(); |
461 | m_abView -> inSearch(); | 461 | m_abView -> inSearch(); |
462 | searchEdit->setFocus(); | 462 | searchEdit->setFocus(); |
463 | } | 463 | } |
464 | void AddressbookWindow::slotFindClose() | 464 | void AddressbookWindow::slotFindClose() |
465 | { | 465 | { |
466 | searchBar->hide(); | 466 | searchBar->hide(); |