summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-08-01 18:54:43 (UTC)
committer zautrix <zautrix>2004-08-01 18:54:43 (UTC)
commit3bdbe8154381abc3fca2aaf5c055b59c2f8637a2 (patch) (unidiff)
tree0782acec4c20995248e87c2ffed14e3e8812f3ba
parent3e1e7285cd2b94c0f6a041a639a0ea0a0cb72603 (diff)
downloadkdepimpi-3bdbe8154381abc3fca2aaf5c055b59c2f8637a2.zip
kdepimpi-3bdbe8154381abc3fca2aaf5c055b59c2f8637a2.tar.gz
kdepimpi-3bdbe8154381abc3fca2aaf5c055b59c2f8637a2.tar.bz2
small changes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/ksyncprefsdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkdepim/ksyncprefsdialog.cpp b/libkdepim/ksyncprefsdialog.cpp
index c6c5ff8..2f38c83 100644
--- a/libkdepim/ksyncprefsdialog.cpp
+++ b/libkdepim/ksyncprefsdialog.cpp
@@ -515,101 +515,101 @@ void KSyncPrefsDialog::addProfile ( KSyncProfile* temp )
515void KSyncPrefsDialog::newProfile() 515void KSyncPrefsDialog::newProfile()
516{ 516{
517 addProfile ( new KSyncProfile () ); 517 addProfile ( new KSyncProfile () );
518} 518}
519 519
520void KSyncPrefsDialog::cloneProfile() 520void KSyncPrefsDialog::cloneProfile()
521{ 521{
522 if ( currentSelection >= 0 ) 522 if ( currentSelection >= 0 )
523 addProfile (mSyncProfiles.at(currentSelection)->clone()) ; 523 addProfile (mSyncProfiles.at(currentSelection)->clone()) ;
524 else 524 else
525 newProfile(); 525 newProfile();
526} 526}
527 527
528void KSyncPrefsDialog::setLocalMachineName ( const QString& name ) 528void KSyncPrefsDialog::setLocalMachineName ( const QString& name )
529{ 529{
530 mMyMachineName->setText( name ); 530 mMyMachineName->setText( name );
531 531
532} 532}
533QString KSyncPrefsDialog::getLocalMachineName ( ) 533QString KSyncPrefsDialog::getLocalMachineName ( )
534{ 534{
535 return mMyMachineName->text(); 535 return mMyMachineName->text();
536} 536}
537 537
538QStringList KSyncPrefsDialog::getSyncProfileNames() 538QStringList KSyncPrefsDialog::getSyncProfileNames()
539{ 539{
540 return mSyncProfileNames; 540 return mSyncProfileNames;
541} 541}
542void KSyncPrefsDialog::usrReadConfig() 542void KSyncPrefsDialog::usrReadConfig()
543{ 543{
544 //KConfig *config = KOGlobals::config(); 544 //KConfig *config = KOGlobals::config();
545 KConfig config ( locateLocal( "config","syncprofilesrc" ) ); 545 KConfig config ( locateLocal( "config","syncprofilesrc" ) );
546 config.setGroup("SyncProfiles"); 546 config.setGroup("SyncProfiles");
547 mSyncProfileNames =config.readListEntry("SyncProfileNames"); 547 mSyncProfileNames =config.readListEntry("SyncProfileNames");
548 mMyMachineName->setText(config.readEntry("LocalMachineName","undefined")); 548 mMyMachineName->setText(config.readEntry("LocalMachineName","undefined"));
549 int i; 549 int i;
550 KSyncProfile* temp ; 550 KSyncProfile* temp ;
551 mSyncProfiles.clear(); 551 mSyncProfiles.clear();
552 for ( i = 0; i < mSyncProfileNames.count();++i ) { 552 for ( i = 0; i < mSyncProfileNames.count();++i ) {
553 temp = new KSyncProfile (); 553 temp = new KSyncProfile ();
554 temp->setName( mSyncProfileNames[i] ); 554 temp->setName( mSyncProfileNames[i] );
555 temp->readConfig( &config ); 555 temp->readConfig( &config );
556 mSyncProfiles.append( temp ); 556 mSyncProfiles.append( temp );
557 } 557 }
558 insertProfiles(); 558 insertProfiles();
559 //mMyMachineName->setText(KOPrefs::instance()->mLocalMachineName ); 559 //mMyMachineName->setText(KOPrefs::instance()->mLocalMachineName );
560} 560}
561 561
562 562
563void KSyncPrefsDialog::usrWriteConfig() 563void KSyncPrefsDialog::usrWriteConfig()
564{ 564{
565 saveProfile(); 565 saveProfile();
566 if ( currentSelection >= 0 ) 566 if ( currentSelection >= 0 )
567 profileChanged(currentSelection); 567 profileChanged(currentSelection);
568 //KConfig *config = KOGlobals::config(); 568 //KConfig *config = KOGlobals::config();
569 KConfig config ( locateLocal( "config","syncprofilesrc" ) ); 569 KConfig config ( locateLocal( "config","syncprofilesrc" ) );
570 config.setGroup("SyncProfiles"); 570 config.setGroup("SyncProfiles");
571 KSyncProfile* prof = mSyncProfiles.first(); 571 KSyncProfile* prof = mSyncProfiles.first();
572 while ( prof ) { 572 while ( prof ) {
573 prof->writeConfig(&config); 573 prof->writeConfig(&config);
574 prof = mSyncProfiles.next(); 574 prof = mSyncProfiles.next();
575 } 575 }
576 //KOPrefs::instance()->mSyncProfileNames = mSyncProfileNames; 576 //KOPrefs::instance()->mSyncProfileNames = mSyncProfileNames;
577 //KOPrefs::instance()->mLocalMachineName = mMyMachineName->text(); 577 //KOPrefs::instance()->mLocalMachineName = mMyMachineName->text();
578 config.writeEntry("SyncProfileNames",mSyncProfileNames); 578 config.writeEntry("SyncProfileNames",mSyncProfileNames);
579 QString name = mMyMachineName->text(); 579 QString name = mMyMachineName->text();
580 config.writeEntry("LocalMachineName",name); 580 config.writeEntry("LocalMachineName",name);
581} 581}
582 582
583void KSyncPrefsDialog::helpDevice() 583void KSyncPrefsDialog::helpDevice()
584{ 584{
585 QString hint = i18n("Insert device where\nphone is connected. E.g.:\n"); 585 QString hint = i18n("Insert device where\nphone is connected. E.g.:\n");
586#ifdef _WIN32_ 586#ifdef _WIN32_
587 hint += "leave empty for Irda\n" 587 hint += "leave empty for Irda\n"
588 "com1:\n(first serial port)\n" 588 "com1:\n(first serial port)\n"
589 "usb not supported\n" 589 "usb not supported\n"
590 "???\n(bluetooth device address)\n"; 590 "???\n(bluetooth device address)\n";
591 591
592#else 592#else
593 hint += "/dev/ircomm\n(Irda)\n" 593 hint += "/dev/ircomm\n(Irda)\n"
594 "/dev/ttyS0\n(first serial port)\n" 594 "/dev/ttyS0\n(first serial port)\n"
595 "/dev/ttyUSB0\n(first device usb port)\n" 595 "/dev/ttyUSB0\n(first device usb port)\n"
596 "???\n(bluetooth device address)\n"; 596 "???\n(bluetooth device address)\n";
597#endif 597#endif
598 KMessageBox::information(this,hint,i18n("KDE-Pim sync config")); 598 KMessageBox::information(this,hint,i18n("KDE-Pim sync config"));
599} 599}
600void KSyncPrefsDialog::helpModel() 600void KSyncPrefsDialog::helpModel()
601{ 601{
602 QString hint = i18n("Leave empty or\ninsert name of phone model:\n"); 602 QString hint = i18n("Leave empty or\ninsert name of phone model:\n");
603 hint += "E.g. for Nokia 6310i:\n6310i\nAlso possible:\nobex\nfor Obex connection"; 603 hint += "E.g. for Nokia 6310i:\n6310i\nAlso possible:\nobex\nfor Obex connection";
604 KMessageBox::information(this,hint,i18n("KDE-Pim sync config")); 604 KMessageBox::information(this,hint,i18n("KDE-Pim sync config"));
605 605
606} 606}
607void KSyncPrefsDialog::helpConnection() 607void KSyncPrefsDialog::helpConnection()
608{ 608{
609 QString hint = i18n("Insert kind of connection,e.g.:\n"); 609 QString hint = i18n("Insert kind of connection,e.g.:\n");
610 hint += "irda | Nokia FBUS over infrared\n" 610 hint += "irda | Nokia FBUS over infrared\n"
611 "irdaat | AT commands infrared\n(Siemens/Sony-Erricsson)\n" 611 "irdaat | AT commands infrared\n(for Siemens/Sony-Erricsson)\n"
612 "irdaobex | set model obex\n" 612 "irdaobex | set also model as obex\n"
613 "fbus | Nokia FBUS2 serial\n"; 613 "fbus | Nokia FBUS2 serial\n";
614 KMessageBox::information(this,hint,i18n("KDE-Pim sync config")); 614 KMessageBox::information(this,hint,i18n("KDE-Pim sync config"));
615} 615}