-rw-r--r-- | kabc/addressee.cpp | 14 | ||||
-rw-r--r-- | kabc/addressee.h | 7 | ||||
-rw-r--r-- | kabc/field.cpp | 12 | ||||
-rw-r--r-- | kabc/phonenumber.cpp | 4 |
4 files changed, 5 insertions, 32 deletions
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index 0d8e8e8..2f4a9af 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -546,1054 +546,1044 @@ void Addressee::simplifyAddresses() | |||
546 | Address::List list; | 546 | Address::List list; |
547 | Address::List::Iterator it; | 547 | Address::List::Iterator it; |
548 | Address::List::Iterator it2; | 548 | Address::List::Iterator it2; |
549 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 549 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
550 | it2 = it; | 550 | it2 = it; |
551 | ++it2; | 551 | ++it2; |
552 | for( ; it2 != mData->addresses.end(); ++it2 ) { | 552 | for( ; it2 != mData->addresses.end(); ++it2 ) { |
553 | if ( (*it) == (*it2) ) { | 553 | if ( (*it) == (*it2) ) { |
554 | list.append( *it ); | 554 | list.append( *it ); |
555 | break; | 555 | break; |
556 | } | 556 | } |
557 | } | 557 | } |
558 | } | 558 | } |
559 | for( it = list.begin(); it != list.end(); ++it ) { | 559 | for( it = list.begin(); it != list.end(); ++it ) { |
560 | removeAddress( (*it) ); | 560 | removeAddress( (*it) ); |
561 | } | 561 | } |
562 | 562 | ||
563 | list.clear(); | 563 | list.clear(); |
564 | int max = 2; | 564 | int max = 2; |
565 | if ( mData->url.isValid() ) | 565 | if ( mData->url.isValid() ) |
566 | max = 1; | 566 | max = 1; |
567 | if ( mData->addresses.count() <= max ) return ; | 567 | if ( mData->addresses.count() <= max ) return ; |
568 | int count = 0; | 568 | int count = 0; |
569 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 569 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
570 | if ( count >= max ) | 570 | if ( count >= max ) |
571 | list.append( *it ); | 571 | list.append( *it ); |
572 | ++count; | 572 | ++count; |
573 | } | 573 | } |
574 | for( it = list.begin(); it != list.end(); ++it ) { | 574 | for( it = list.begin(); it != list.end(); ++it ) { |
575 | removeAddress( (*it) ); | 575 | removeAddress( (*it) ); |
576 | } | 576 | } |
577 | } | 577 | } |
578 | 578 | ||
579 | // removes all emails but the first | 579 | // removes all emails but the first |
580 | // needed by phone sync | 580 | // needed by phone sync |
581 | void Addressee::simplifyEmails() | 581 | void Addressee::simplifyEmails() |
582 | { | 582 | { |
583 | if ( mData->emails.count() == 0 ) return ; | 583 | if ( mData->emails.count() == 0 ) return ; |
584 | QString email = mData->emails.first(); | 584 | QString email = mData->emails.first(); |
585 | detach(); | 585 | detach(); |
586 | mData->emails.clear(); | 586 | mData->emails.clear(); |
587 | mData->emails.append( email ); | 587 | mData->emails.append( email ); |
588 | } | 588 | } |
589 | void Addressee::makePhoneNumbersOLcompatible() | 589 | void Addressee::makePhoneNumbersOLcompatible() |
590 | { | 590 | { |
591 | KABC::PhoneNumber::List::Iterator phoneIter; | 591 | KABC::PhoneNumber::List::Iterator phoneIter; |
592 | KABC::PhoneNumber::List::Iterator phoneIter2; | 592 | KABC::PhoneNumber::List::Iterator phoneIter2; |
593 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 593 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
594 | ++phoneIter ) { | 594 | ++phoneIter ) { |
595 | ( *phoneIter ).makeCompat(); | 595 | ( *phoneIter ).makeCompat(); |
596 | } | 596 | } |
597 | int hasHome = hasPhoneNumberType( PhoneNumber::Home | PhoneNumber::Pref ); | 597 | int hasHome = hasPhoneNumberType( PhoneNumber::Home | PhoneNumber::Pref ); |
598 | int hasHome2 = hasPhoneNumberType( PhoneNumber::Home ); | 598 | int hasHome2 = hasPhoneNumberType( PhoneNumber::Home ); |
599 | int hasWork = hasPhoneNumberType( PhoneNumber::Work | PhoneNumber::Pref ); | 599 | int hasWork = hasPhoneNumberType( PhoneNumber::Work | PhoneNumber::Pref ); |
600 | int hasWork2 = hasPhoneNumberType( PhoneNumber::Work ); | 600 | int hasWork2 = hasPhoneNumberType( PhoneNumber::Work ); |
601 | int hasCell = hasPhoneNumberType( PhoneNumber::Cell ); | 601 | int hasCell = hasPhoneNumberType( PhoneNumber::Cell ); |
602 | int hasCell2 = hasPhoneNumberType( PhoneNumber::Car ); | 602 | int hasCell2 = hasPhoneNumberType( PhoneNumber::Car ); |
603 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 603 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
604 | ++phoneIter ) { | 604 | ++phoneIter ) { |
605 | if ( (*phoneIter).type() == PhoneNumber::Home && ! hasHome ) { | 605 | if ( (*phoneIter).type() == PhoneNumber::Home && ! hasHome ) { |
606 | (*phoneIter).setType( PhoneNumber::Home | PhoneNumber::Pref ); | 606 | (*phoneIter).setType( PhoneNumber::Home | PhoneNumber::Pref ); |
607 | ++hasHome; | 607 | ++hasHome; |
608 | if ( hasHome2 ) --hasHome2; | 608 | if ( hasHome2 ) --hasHome2; |
609 | } else if ( ( (*phoneIter).type() == PhoneNumber::Home | PhoneNumber::Pref) && hasHome>1 && !hasHome2 ) { | 609 | } else if ( ( (*phoneIter).type() == PhoneNumber::Home | PhoneNumber::Pref) && hasHome>1 && !hasHome2 ) { |
610 | (*phoneIter).setType( PhoneNumber::Home ); | 610 | (*phoneIter).setType( PhoneNumber::Home ); |
611 | --hasHome; | 611 | --hasHome; |
612 | ++hasHome2; | 612 | ++hasHome2; |
613 | } else if ( (*phoneIter).type() == PhoneNumber::Work && ! hasWork ) { | 613 | } else if ( (*phoneIter).type() == PhoneNumber::Work && ! hasWork ) { |
614 | (*phoneIter).setType( PhoneNumber::Work | PhoneNumber::Pref ); | 614 | (*phoneIter).setType( PhoneNumber::Work | PhoneNumber::Pref ); |
615 | ++hasWork; | 615 | ++hasWork; |
616 | if ( hasWork2 ) --hasWork2; | 616 | if ( hasWork2 ) --hasWork2; |
617 | } else if ( ( (*phoneIter).type() == PhoneNumber::Work | PhoneNumber::Pref) && hasWork > 1 && ! hasWork2 ) { | 617 | } else if ( ( (*phoneIter).type() == PhoneNumber::Work | PhoneNumber::Pref) && hasWork > 1 && ! hasWork2 ) { |
618 | (*phoneIter).setType( PhoneNumber::Work ); | 618 | (*phoneIter).setType( PhoneNumber::Work ); |
619 | --hasWork; | 619 | --hasWork; |
620 | ++hasWork2; | 620 | ++hasWork2; |
621 | } else if ( (*phoneIter).type() == PhoneNumber::Cell && hasCell > 1 && !hasCell2) { | 621 | } else if ( (*phoneIter).type() == PhoneNumber::Cell && hasCell > 1 && !hasCell2) { |
622 | (*phoneIter).setType( PhoneNumber::Car ); | 622 | (*phoneIter).setType( PhoneNumber::Car ); |
623 | ++hasCell2; | 623 | ++hasCell2; |
624 | --hasCell; | 624 | --hasCell; |
625 | } else if ( (*phoneIter).type() == PhoneNumber::Car && hasCell2 > 1 && !hasCell) { | 625 | } else if ( (*phoneIter).type() == PhoneNumber::Car && hasCell2 > 1 && !hasCell) { |
626 | (*phoneIter).setType( PhoneNumber::Cell ); | 626 | (*phoneIter).setType( PhoneNumber::Cell ); |
627 | ++hasCell; | 627 | ++hasCell; |
628 | --hasCell2; | 628 | --hasCell2; |
629 | } else{ | 629 | } else{ |
630 | phoneIter2 = phoneIter; | 630 | phoneIter2 = phoneIter; |
631 | ++phoneIter2; | 631 | ++phoneIter2; |
632 | for ( ; phoneIter2 != mData->phoneNumbers.end(); | 632 | for ( ; phoneIter2 != mData->phoneNumbers.end(); |
633 | ++phoneIter2 ) { | 633 | ++phoneIter2 ) { |
634 | if ( (*phoneIter2).type() == (*phoneIter).type() ) { | 634 | if ( (*phoneIter2).type() == (*phoneIter).type() ) { |
635 | (*phoneIter2).setType( PhoneNumber::Voice ); | 635 | (*phoneIter2).setType( PhoneNumber::Voice ); |
636 | 636 | ||
637 | } | 637 | } |
638 | } | 638 | } |
639 | } | 639 | } |
640 | } | 640 | } |
641 | } | 641 | } |
642 | void Addressee::simplifyPhoneNumbers() | 642 | void Addressee::simplifyPhoneNumbers() |
643 | { | 643 | { |
644 | int max = 4; | 644 | int max = 4; |
645 | int inList = mData->phoneNumbers.count(); | 645 | int inList = mData->phoneNumbers.count(); |
646 | KABC::PhoneNumber::List removeNumbers; | 646 | KABC::PhoneNumber::List removeNumbers; |
647 | KABC::PhoneNumber::List::Iterator phoneIter; | 647 | KABC::PhoneNumber::List::Iterator phoneIter; |
648 | if ( inList > max ) { | 648 | if ( inList > max ) { |
649 | // delete non-preferred numbers | 649 | // delete non-preferred numbers |
650 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 650 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
651 | ++phoneIter ) { | 651 | ++phoneIter ) { |
652 | if ( inList > max ) { | 652 | if ( inList > max ) { |
653 | if ( ! (( *phoneIter ).type() & PhoneNumber::Pref )) { | 653 | if ( ! (( *phoneIter ).type() & PhoneNumber::Pref )) { |
654 | removeNumbers.append( ( *phoneIter ) ); | 654 | removeNumbers.append( ( *phoneIter ) ); |
655 | --inList; | 655 | --inList; |
656 | } | 656 | } |
657 | } else | 657 | } else |
658 | break; | 658 | break; |
659 | } | 659 | } |
660 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); | 660 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); |
661 | ++phoneIter ) { | 661 | ++phoneIter ) { |
662 | removePhoneNumber(( *phoneIter )); | 662 | removePhoneNumber(( *phoneIter )); |
663 | } | 663 | } |
664 | // delete preferred numbers | 664 | // delete preferred numbers |
665 | if ( inList > max ) { | 665 | if ( inList > max ) { |
666 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 666 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
667 | ++phoneIter ) { | 667 | ++phoneIter ) { |
668 | if ( inList > max ) { | 668 | if ( inList > max ) { |
669 | removeNumbers.append( ( *phoneIter ) ); | 669 | removeNumbers.append( ( *phoneIter ) ); |
670 | --inList; | 670 | --inList; |
671 | } else | 671 | } else |
672 | break; | 672 | break; |
673 | } | 673 | } |
674 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); | 674 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); |
675 | ++phoneIter ) { | 675 | ++phoneIter ) { |
676 | removePhoneNumber(( *phoneIter )); | 676 | removePhoneNumber(( *phoneIter )); |
677 | } | 677 | } |
678 | } | 678 | } |
679 | } | 679 | } |
680 | // remove non-numeric characters | 680 | // remove non-numeric characters |
681 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 681 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
682 | ++phoneIter ) { | 682 | ++phoneIter ) { |
683 | if ( ! ( *phoneIter ).simplifyNumber() ) | 683 | if ( ! ( *phoneIter ).simplifyNumber() ) |
684 | removeNumbers.append( ( *phoneIter ) ); | 684 | removeNumbers.append( ( *phoneIter ) ); |
685 | } | 685 | } |
686 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); | 686 | for ( phoneIter = removeNumbers.begin(); phoneIter != removeNumbers.end(); |
687 | ++phoneIter ) { | 687 | ++phoneIter ) { |
688 | removePhoneNumber(( *phoneIter )); | 688 | removePhoneNumber(( *phoneIter )); |
689 | } | 689 | } |
690 | } | 690 | } |
691 | void Addressee::simplifyPhoneNumberTypes() | 691 | void Addressee::simplifyPhoneNumberTypes() |
692 | { | 692 | { |
693 | KABC::PhoneNumber::List::Iterator phoneIter; | 693 | KABC::PhoneNumber::List::Iterator phoneIter; |
694 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); | 694 | for ( phoneIter = mData->phoneNumbers.begin(); phoneIter != mData->phoneNumbers.end(); |
695 | ++phoneIter ) | 695 | ++phoneIter ) |
696 | ( *phoneIter ).simplifyType(); | 696 | ( *phoneIter ).simplifyType(); |
697 | } | 697 | } |
698 | void Addressee::removeID(const QString &prof) | 698 | void Addressee::removeID(const QString &prof) |
699 | { | 699 | { |
700 | detach(); | 700 | detach(); |
701 | if ( prof.isEmpty() ) | 701 | if ( prof.isEmpty() ) |
702 | mData->mExternalId = ":"; | 702 | mData->mExternalId = ":"; |
703 | else | 703 | else |
704 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); | 704 | mData->mExternalId = KIdManager::removeId ( mData->mExternalId, prof); |
705 | 705 | ||
706 | } | 706 | } |
707 | void Addressee::setID( const QString & prof , const QString & id ) | 707 | void Addressee::setID( const QString & prof , const QString & id ) |
708 | { | 708 | { |
709 | detach(); | 709 | detach(); |
710 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); | 710 | mData->mExternalId = KIdManager::setId ( mData->mExternalId, prof, id ); |
711 | //qDebug("setID2 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); | 711 | //qDebug("setID2 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); |
712 | } | 712 | } |
713 | void Addressee::setTempSyncStat( int id ) | 713 | void Addressee::setTempSyncStat( int id ) |
714 | { | 714 | { |
715 | if ( mData->mTempSyncStat == id ) return; | 715 | if ( mData->mTempSyncStat == id ) return; |
716 | detach(); | 716 | detach(); |
717 | mData->mTempSyncStat = id; | 717 | mData->mTempSyncStat = id; |
718 | } | 718 | } |
719 | int Addressee::tempSyncStat() const | 719 | int Addressee::tempSyncStat() const |
720 | { | 720 | { |
721 | return mData->mTempSyncStat; | 721 | return mData->mTempSyncStat; |
722 | } | 722 | } |
723 | 723 | ||
724 | const QString Addressee::getID( const QString & prof) const | 724 | const QString Addressee::getID( const QString & prof) const |
725 | { | 725 | { |
726 | return KIdManager::getId ( mData->mExternalId, prof ); | 726 | return KIdManager::getId ( mData->mExternalId, prof ); |
727 | } | 727 | } |
728 | 728 | ||
729 | void Addressee::setCsum( const QString & prof , const QString & id ) | 729 | void Addressee::setCsum( const QString & prof , const QString & id ) |
730 | { | 730 | { |
731 | detach(); | 731 | detach(); |
732 | //qDebug("setcsum1 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); | 732 | //qDebug("setcsum1 %s %s %s",mData->mExternalId.latin1(), prof.latin1(), id.latin1() ); |
733 | mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id ); | 733 | mData->mExternalId = KIdManager::setCsum ( mData->mExternalId, prof, id ); |
734 | //qDebug("setcsum2 %s ",mData->mExternalId.latin1() ); | 734 | //qDebug("setcsum2 %s ",mData->mExternalId.latin1() ); |
735 | } | 735 | } |
736 | 736 | ||
737 | const QString Addressee::getCsum( const QString & prof) const | 737 | const QString Addressee::getCsum( const QString & prof) const |
738 | { | 738 | { |
739 | return KIdManager::getCsum ( mData->mExternalId, prof ); | 739 | return KIdManager::getCsum ( mData->mExternalId, prof ); |
740 | } | 740 | } |
741 | 741 | ||
742 | void Addressee::setIDStr( const QString & s ) | 742 | void Addressee::setIDStr( const QString & s ) |
743 | { | 743 | { |
744 | detach(); | 744 | detach(); |
745 | mData->mExternalId = s; | 745 | mData->mExternalId = s; |
746 | } | 746 | } |
747 | 747 | ||
748 | const QString Addressee::IDStr() const | 748 | const QString Addressee::IDStr() const |
749 | { | 749 | { |
750 | return mData->mExternalId; | 750 | return mData->mExternalId; |
751 | } | 751 | } |
752 | 752 | ||
753 | void Addressee::setExternalUID( const QString &id ) | 753 | void Addressee::setExternalUID( const QString &id ) |
754 | { | 754 | { |
755 | if ( id == mData->externalUID ) return; | 755 | if ( id == mData->externalUID ) return; |
756 | detach(); | 756 | detach(); |
757 | mData->empty = false; | 757 | mData->empty = false; |
758 | mData->externalUID = id; | 758 | mData->externalUID = id; |
759 | } | 759 | } |
760 | 760 | ||
761 | const QString Addressee::externalUID() const | 761 | const QString Addressee::externalUID() const |
762 | { | 762 | { |
763 | return mData->externalUID; | 763 | return mData->externalUID; |
764 | } | 764 | } |
765 | void Addressee::setOriginalExternalUID( const QString &id ) | 765 | void Addressee::setOriginalExternalUID( const QString &id ) |
766 | { | 766 | { |
767 | if ( id == mData->originalExternalUID ) return; | 767 | if ( id == mData->originalExternalUID ) return; |
768 | detach(); | 768 | detach(); |
769 | mData->empty = false; | 769 | mData->empty = false; |
770 | //qDebug("*******Set orig uid %s ", id.latin1()); | 770 | //qDebug("*******Set orig uid %s ", id.latin1()); |
771 | mData->originalExternalUID = id; | 771 | mData->originalExternalUID = id; |
772 | } | 772 | } |
773 | 773 | ||
774 | QString Addressee::originalExternalUID() const | 774 | QString Addressee::originalExternalUID() const |
775 | { | 775 | { |
776 | return mData->originalExternalUID; | 776 | return mData->originalExternalUID; |
777 | } | 777 | } |
778 | 778 | ||
779 | void Addressee::setUid( const QString &id ) | 779 | void Addressee::setUid( const QString &id ) |
780 | { | 780 | { |
781 | if ( id == mData->uid ) return; | 781 | if ( id == mData->uid ) return; |
782 | detach(); | 782 | detach(); |
783 | //qDebug("****setuid %s ", id.latin1()); | 783 | //qDebug("****setuid %s ", id.latin1()); |
784 | mData->empty = false; | 784 | mData->empty = false; |
785 | mData->uid = id; | 785 | mData->uid = id; |
786 | } | 786 | } |
787 | 787 | ||
788 | const QString Addressee::uid() const | 788 | const QString Addressee::uid() const |
789 | { | 789 | { |
790 | if ( mData->uid.isEmpty() ) | 790 | if ( mData->uid.isEmpty() ) |
791 | mData->uid = KApplication::randomString( 10 ); | 791 | mData->uid = KApplication::randomString( 10 ); |
792 | 792 | ||
793 | return mData->uid; | 793 | return mData->uid; |
794 | } | 794 | } |
795 | 795 | ||
796 | QString Addressee::uidLabel() | 796 | QString Addressee::uidLabel() |
797 | { | 797 | { |
798 | return i18n("Unique Identifier"); | 798 | return i18n("Unique Identifier"); |
799 | } | 799 | } |
800 | 800 | ||
801 | void Addressee::setName( const QString &name ) | 801 | void Addressee::setName( const QString &name ) |
802 | { | 802 | { |
803 | if ( name == mData->name ) return; | 803 | if ( name == mData->name ) return; |
804 | detach(); | 804 | detach(); |
805 | mData->empty = false; | 805 | mData->empty = false; |
806 | mData->name = name; | 806 | mData->name = name; |
807 | } | 807 | } |
808 | 808 | ||
809 | QString Addressee::name() const | 809 | QString Addressee::name() const |
810 | { | 810 | { |
811 | return mData->name; | 811 | return mData->name; |
812 | } | 812 | } |
813 | 813 | ||
814 | QString Addressee::nameLabel() | 814 | QString Addressee::nameLabel() |
815 | { | 815 | { |
816 | return i18n("Name"); | 816 | return i18n("Name"); |
817 | } | 817 | } |
818 | 818 | ||
819 | 819 | ||
820 | void Addressee::setFormattedName( const QString &formattedName ) | 820 | void Addressee::setFormattedName( const QString &formattedName ) |
821 | { | 821 | { |
822 | if ( formattedName == mData->formattedName ) return; | 822 | if ( formattedName == mData->formattedName ) return; |
823 | detach(); | 823 | detach(); |
824 | mData->empty = false; | 824 | mData->empty = false; |
825 | mData->formattedName = formattedName; | 825 | mData->formattedName = formattedName; |
826 | } | 826 | } |
827 | 827 | ||
828 | QString Addressee::formattedName() const | 828 | QString Addressee::formattedName() const |
829 | { | 829 | { |
830 | return mData->formattedName; | 830 | return mData->formattedName; |
831 | } | 831 | } |
832 | 832 | ||
833 | QString Addressee::formattedNameLabel() | 833 | QString Addressee::formattedNameLabel() |
834 | { | 834 | { |
835 | return i18n("Formatted Name"); | 835 | return i18n("Formatted Name"); |
836 | } | 836 | } |
837 | 837 | ||
838 | 838 | ||
839 | void Addressee::setFamilyName( const QString &familyName ) | 839 | void Addressee::setFamilyName( const QString &familyName ) |
840 | { | 840 | { |
841 | if ( familyName == mData->familyName ) return; | 841 | if ( familyName == mData->familyName ) return; |
842 | detach(); | 842 | detach(); |
843 | mData->empty = false; | 843 | mData->empty = false; |
844 | mData->familyName = familyName; | 844 | mData->familyName = familyName; |
845 | } | 845 | } |
846 | 846 | ||
847 | QString Addressee::familyName() const | 847 | QString Addressee::familyName() const |
848 | { | 848 | { |
849 | return mData->familyName; | 849 | return mData->familyName; |
850 | } | 850 | } |
851 | 851 | ||
852 | QString Addressee::familyNameLabel() | 852 | QString Addressee::familyNameLabel() |
853 | { | 853 | { |
854 | return i18n("Family Name"); | 854 | return i18n("Family Name"); |
855 | } | 855 | } |
856 | 856 | ||
857 | 857 | ||
858 | void Addressee::setGivenName( const QString &givenName ) | 858 | void Addressee::setGivenName( const QString &givenName ) |
859 | { | 859 | { |
860 | if ( givenName == mData->givenName ) return; | 860 | if ( givenName == mData->givenName ) return; |
861 | detach(); | 861 | detach(); |
862 | mData->empty = false; | 862 | mData->empty = false; |
863 | mData->givenName = givenName; | 863 | mData->givenName = givenName; |
864 | } | 864 | } |
865 | 865 | ||
866 | QString Addressee::givenName() const | 866 | QString Addressee::givenName() const |
867 | { | 867 | { |
868 | return mData->givenName; | 868 | return mData->givenName; |
869 | } | 869 | } |
870 | 870 | ||
871 | QString Addressee::givenNameLabel() | 871 | QString Addressee::givenNameLabel() |
872 | { | 872 | { |
873 | return i18n("Given Name"); | 873 | return i18n("Given Name"); |
874 | } | 874 | } |
875 | 875 | ||
876 | 876 | ||
877 | void Addressee::setAdditionalName( const QString &additionalName ) | 877 | void Addressee::setAdditionalName( const QString &additionalName ) |
878 | { | 878 | { |
879 | if ( additionalName == mData->additionalName ) return; | 879 | if ( additionalName == mData->additionalName ) return; |
880 | detach(); | 880 | detach(); |
881 | mData->empty = false; | 881 | mData->empty = false; |
882 | mData->additionalName = additionalName; | 882 | mData->additionalName = additionalName; |
883 | } | 883 | } |
884 | 884 | ||
885 | QString Addressee::additionalName() const | 885 | QString Addressee::additionalName() const |
886 | { | 886 | { |
887 | return mData->additionalName; | 887 | return mData->additionalName; |
888 | } | 888 | } |
889 | 889 | ||
890 | QString Addressee::additionalNameLabel() | 890 | QString Addressee::additionalNameLabel() |
891 | { | 891 | { |
892 | return i18n("Additional Names"); | 892 | return i18n("Additional Names"); |
893 | } | 893 | } |
894 | 894 | ||
895 | 895 | ||
896 | void Addressee::setPrefix( const QString &prefix ) | 896 | void Addressee::setPrefix( const QString &prefix ) |
897 | { | 897 | { |
898 | if ( prefix == mData->prefix ) return; | 898 | if ( prefix == mData->prefix ) return; |
899 | detach(); | 899 | detach(); |
900 | mData->empty = false; | 900 | mData->empty = false; |
901 | mData->prefix = prefix; | 901 | mData->prefix = prefix; |
902 | } | 902 | } |
903 | 903 | ||
904 | QString Addressee::prefix() const | 904 | QString Addressee::prefix() const |
905 | { | 905 | { |
906 | return mData->prefix; | 906 | return mData->prefix; |
907 | } | 907 | } |
908 | 908 | ||
909 | QString Addressee::prefixLabel() | 909 | QString Addressee::prefixLabel() |
910 | { | 910 | { |
911 | return i18n("Honorific Prefixes"); | 911 | return i18n("Honorific Prefixes"); |
912 | } | 912 | } |
913 | 913 | ||
914 | 914 | ||
915 | void Addressee::setSuffix( const QString &suffix ) | 915 | void Addressee::setSuffix( const QString &suffix ) |
916 | { | 916 | { |
917 | if ( suffix == mData->suffix ) return; | 917 | if ( suffix == mData->suffix ) return; |
918 | detach(); | 918 | detach(); |
919 | mData->empty = false; | 919 | mData->empty = false; |
920 | mData->suffix = suffix; | 920 | mData->suffix = suffix; |
921 | } | 921 | } |
922 | 922 | ||
923 | QString Addressee::suffix() const | 923 | QString Addressee::suffix() const |
924 | { | 924 | { |
925 | return mData->suffix; | 925 | return mData->suffix; |
926 | } | 926 | } |
927 | 927 | ||
928 | QString Addressee::suffixLabel() | 928 | QString Addressee::suffixLabel() |
929 | { | 929 | { |
930 | return i18n("Honorific Suffixes"); | 930 | return i18n("Honorific Suffixes"); |
931 | } | 931 | } |
932 | 932 | ||
933 | 933 | ||
934 | void Addressee::setNickName( const QString &nickName ) | 934 | void Addressee::setNickName( const QString &nickName ) |
935 | { | 935 | { |
936 | if ( nickName == mData->nickName ) return; | 936 | if ( nickName == mData->nickName ) return; |
937 | detach(); | 937 | detach(); |
938 | mData->empty = false; | 938 | mData->empty = false; |
939 | mData->nickName = nickName; | 939 | mData->nickName = nickName; |
940 | } | 940 | } |
941 | 941 | ||
942 | QString Addressee::nickName() const | 942 | QString Addressee::nickName() const |
943 | { | 943 | { |
944 | return mData->nickName; | 944 | return mData->nickName; |
945 | } | 945 | } |
946 | 946 | ||
947 | QString Addressee::nickNameLabel() | 947 | QString Addressee::nickNameLabel() |
948 | { | 948 | { |
949 | return i18n("Nick Name"); | 949 | return i18n("Nick Name"); |
950 | } | 950 | } |
951 | 951 | ||
952 | 952 | ||
953 | void Addressee::setBirthday( const QDateTime &birthday ) | 953 | void Addressee::setBirthday( const QDateTime &birthday ) |
954 | { | 954 | { |
955 | if ( birthday == mData->birthday ) return; | 955 | if ( birthday == mData->birthday ) return; |
956 | detach(); | 956 | detach(); |
957 | mData->empty = false; | 957 | mData->empty = false; |
958 | mData->birthday = birthday; | 958 | mData->birthday = birthday; |
959 | } | 959 | } |
960 | 960 | ||
961 | QDateTime Addressee::birthday() const | 961 | QDateTime Addressee::birthday() const |
962 | { | 962 | { |
963 | return mData->birthday; | 963 | return mData->birthday; |
964 | } | 964 | } |
965 | 965 | ||
966 | QString Addressee::birthdayLabel() | 966 | QString Addressee::birthdayLabel() |
967 | { | 967 | { |
968 | return i18n("Birthday"); | 968 | return i18n("Birthday"); |
969 | } | 969 | } |
970 | 970 | ||
971 | 971 | ||
972 | QString Addressee::homeAddressStreetLabel() | 972 | QString Addressee::homeAddressStreetLabel() |
973 | { | 973 | { |
974 | return i18n("Home Address Street"); | 974 | return i18n("Home Address Street"); |
975 | } | 975 | } |
976 | 976 | ||
977 | 977 | ||
978 | QString Addressee::homeAddressLocalityLabel() | 978 | QString Addressee::homeAddressLocalityLabel() |
979 | { | 979 | { |
980 | return i18n("Home Address Locality"); | 980 | return i18n("Home Address Locality"); |
981 | } | 981 | } |
982 | 982 | ||
983 | 983 | ||
984 | QString Addressee::homeAddressRegionLabel() | 984 | QString Addressee::homeAddressRegionLabel() |
985 | { | 985 | { |
986 | return i18n("Home Address Region"); | 986 | return i18n("Home Address Region"); |
987 | } | 987 | } |
988 | 988 | ||
989 | 989 | ||
990 | QString Addressee::homeAddressPostalCodeLabel() | 990 | QString Addressee::homeAddressPostalCodeLabel() |
991 | { | 991 | { |
992 | return i18n("Home Address Postal Code"); | 992 | return i18n("Home Address Postal Code"); |
993 | } | 993 | } |
994 | 994 | ||
995 | 995 | ||
996 | QString Addressee::homeAddressCountryLabel() | 996 | QString Addressee::homeAddressCountryLabel() |
997 | { | 997 | { |
998 | return i18n("Home Address Country"); | 998 | return i18n("Home Address Country"); |
999 | } | 999 | } |
1000 | 1000 | ||
1001 | 1001 | ||
1002 | QString Addressee::homeAddressLabelLabel() | 1002 | QString Addressee::homeAddressLabelLabel() |
1003 | { | 1003 | { |
1004 | return i18n("Home Address Label"); | 1004 | return i18n("Home Address Label"); |
1005 | } | 1005 | } |
1006 | 1006 | ||
1007 | 1007 | ||
1008 | QString Addressee::businessAddressStreetLabel() | 1008 | QString Addressee::businessAddressStreetLabel() |
1009 | { | 1009 | { |
1010 | return i18n("Business Address Street"); | 1010 | return i18n("Business Address Street"); |
1011 | } | 1011 | } |
1012 | 1012 | ||
1013 | 1013 | ||
1014 | QString Addressee::businessAddressLocalityLabel() | 1014 | QString Addressee::businessAddressLocalityLabel() |
1015 | { | 1015 | { |
1016 | return i18n("Business Address Locality"); | 1016 | return i18n("Business Address Locality"); |
1017 | } | 1017 | } |
1018 | 1018 | ||
1019 | 1019 | ||
1020 | QString Addressee::businessAddressRegionLabel() | 1020 | QString Addressee::businessAddressRegionLabel() |
1021 | { | 1021 | { |
1022 | return i18n("Business Address Region"); | 1022 | return i18n("Business Address Region"); |
1023 | } | 1023 | } |
1024 | 1024 | ||
1025 | 1025 | ||
1026 | QString Addressee::businessAddressPostalCodeLabel() | 1026 | QString Addressee::businessAddressPostalCodeLabel() |
1027 | { | 1027 | { |
1028 | return i18n("Business Address Postal Code"); | 1028 | return i18n("Business Address Postal Code"); |
1029 | } | 1029 | } |
1030 | 1030 | ||
1031 | 1031 | ||
1032 | QString Addressee::businessAddressCountryLabel() | 1032 | QString Addressee::businessAddressCountryLabel() |
1033 | { | 1033 | { |
1034 | return i18n("Business Address Country"); | 1034 | return i18n("Business Address Country"); |
1035 | } | 1035 | } |
1036 | 1036 | ||
1037 | 1037 | ||
1038 | QString Addressee::businessAddressLabelLabel() | 1038 | QString Addressee::businessAddressLabelLabel() |
1039 | { | 1039 | { |
1040 | return i18n("Business Address Label"); | 1040 | return i18n("Business Address Label"); |
1041 | } | 1041 | } |
1042 | 1042 | ||
1043 | 1043 | ||
1044 | QString Addressee::homePhoneLabel() | 1044 | QString Addressee::homePhoneLabel() |
1045 | { | 1045 | { |
1046 | return i18n("Home Phone"); | 1046 | return i18n("Home Phone"); |
1047 | } | 1047 | } |
1048 | 1048 | ||
1049 | 1049 | ||
1050 | QString Addressee::businessPhoneLabel() | 1050 | QString Addressee::businessPhoneLabel() |
1051 | { | 1051 | { |
1052 | return i18n("Work Phone"); | 1052 | return i18n("Work Phone"); |
1053 | } | 1053 | } |
1054 | 1054 | ||
1055 | 1055 | ||
1056 | QString Addressee::mobilePhoneLabel() | 1056 | QString Addressee::mobilePhoneLabel() |
1057 | { | 1057 | { |
1058 | return i18n("Mobile Phone"); | 1058 | return i18n("Mobile"); |
1059 | } | 1059 | } |
1060 | QString Addressee::mobileWorkPhoneLabel() | 1060 | QString Addressee::mobileWorkPhoneLabel() |
1061 | { | 1061 | { |
1062 | return i18n("Mobile2 (Work)"); | 1062 | return i18n("Mobile2"); |
1063 | } | ||
1064 | QString Addressee::mobileHomePhoneLabel() | ||
1065 | { | ||
1066 | return i18n("Mobile (Home)"); | ||
1067 | } | 1063 | } |
1068 | 1064 | ||
1069 | 1065 | ||
1070 | QString Addressee::homeFaxLabel() | 1066 | QString Addressee::homeFaxLabel() |
1071 | { | 1067 | { |
1072 | return i18n("Fax (Home)"); | 1068 | return i18n("Fax (Home)"); |
1073 | } | 1069 | } |
1074 | 1070 | ||
1075 | 1071 | ||
1076 | QString Addressee::businessFaxLabel() | 1072 | QString Addressee::businessFaxLabel() |
1077 | { | 1073 | { |
1078 | return i18n("Fax (Work)"); | 1074 | return i18n("Fax (Work)"); |
1079 | } | 1075 | } |
1080 | 1076 | ||
1081 | 1077 | ||
1082 | QString Addressee::carPhoneLabel() | ||
1083 | { | ||
1084 | return i18n("Mobile2 (Car)"); | ||
1085 | } | ||
1086 | |||
1087 | |||
1088 | QString Addressee::isdnLabel() | 1078 | QString Addressee::isdnLabel() |
1089 | { | 1079 | { |
1090 | return i18n("ISDN"); | 1080 | return i18n("ISDN"); |
1091 | } | 1081 | } |
1092 | 1082 | ||
1093 | 1083 | ||
1094 | QString Addressee::pagerLabel() | 1084 | QString Addressee::pagerLabel() |
1095 | { | 1085 | { |
1096 | return i18n("Pager"); | 1086 | return i18n("Pager"); |
1097 | } | 1087 | } |
1098 | QString Addressee::otherPhoneLabel() | 1088 | QString Addressee::otherPhoneLabel() |
1099 | { | 1089 | { |
1100 | return i18n("Other Phone"); | 1090 | return i18n("Other Phone"); |
1101 | } | 1091 | } |
1102 | 1092 | ||
1103 | QString Addressee::sipLabel() | 1093 | QString Addressee::sipLabel() |
1104 | { | 1094 | { |
1105 | return i18n("SIP"); | 1095 | return i18n("SIP"); |
1106 | } | 1096 | } |
1107 | 1097 | ||
1108 | QString Addressee::emailLabel() | 1098 | QString Addressee::emailLabel() |
1109 | { | 1099 | { |
1110 | return i18n("Email Address"); | 1100 | return i18n("Email Address"); |
1111 | } | 1101 | } |
1112 | 1102 | ||
1113 | 1103 | ||
1114 | void Addressee::setMailer( const QString &mailer ) | 1104 | void Addressee::setMailer( const QString &mailer ) |
1115 | { | 1105 | { |
1116 | if ( mailer == mData->mailer ) return; | 1106 | if ( mailer == mData->mailer ) return; |
1117 | detach(); | 1107 | detach(); |
1118 | mData->empty = false; | 1108 | mData->empty = false; |
1119 | mData->mailer = mailer; | 1109 | mData->mailer = mailer; |
1120 | } | 1110 | } |
1121 | 1111 | ||
1122 | QString Addressee::mailer() const | 1112 | QString Addressee::mailer() const |
1123 | { | 1113 | { |
1124 | return mData->mailer; | 1114 | return mData->mailer; |
1125 | } | 1115 | } |
1126 | 1116 | ||
1127 | QString Addressee::mailerLabel() | 1117 | QString Addressee::mailerLabel() |
1128 | { | 1118 | { |
1129 | return i18n("Mail Client"); | 1119 | return i18n("Mail Client"); |
1130 | } | 1120 | } |
1131 | 1121 | ||
1132 | 1122 | ||
1133 | void Addressee::setTimeZone( const TimeZone &timeZone ) | 1123 | void Addressee::setTimeZone( const TimeZone &timeZone ) |
1134 | { | 1124 | { |
1135 | if ( timeZone == mData->timeZone ) return; | 1125 | if ( timeZone == mData->timeZone ) return; |
1136 | detach(); | 1126 | detach(); |
1137 | mData->empty = false; | 1127 | mData->empty = false; |
1138 | mData->timeZone = timeZone; | 1128 | mData->timeZone = timeZone; |
1139 | } | 1129 | } |
1140 | 1130 | ||
1141 | TimeZone Addressee::timeZone() const | 1131 | TimeZone Addressee::timeZone() const |
1142 | { | 1132 | { |
1143 | return mData->timeZone; | 1133 | return mData->timeZone; |
1144 | } | 1134 | } |
1145 | 1135 | ||
1146 | QString Addressee::timeZoneLabel() | 1136 | QString Addressee::timeZoneLabel() |
1147 | { | 1137 | { |
1148 | return i18n("Time Zone"); | 1138 | return i18n("Time Zone"); |
1149 | } | 1139 | } |
1150 | 1140 | ||
1151 | 1141 | ||
1152 | void Addressee::setGeo( const Geo &geo ) | 1142 | void Addressee::setGeo( const Geo &geo ) |
1153 | { | 1143 | { |
1154 | if ( geo == mData->geo ) return; | 1144 | if ( geo == mData->geo ) return; |
1155 | detach(); | 1145 | detach(); |
1156 | mData->empty = false; | 1146 | mData->empty = false; |
1157 | mData->geo = geo; | 1147 | mData->geo = geo; |
1158 | } | 1148 | } |
1159 | 1149 | ||
1160 | Geo Addressee::geo() const | 1150 | Geo Addressee::geo() const |
1161 | { | 1151 | { |
1162 | return mData->geo; | 1152 | return mData->geo; |
1163 | } | 1153 | } |
1164 | 1154 | ||
1165 | QString Addressee::geoLabel() | 1155 | QString Addressee::geoLabel() |
1166 | { | 1156 | { |
1167 | return i18n("Geographic Position"); | 1157 | return i18n("Geographic Position"); |
1168 | } | 1158 | } |
1169 | 1159 | ||
1170 | 1160 | ||
1171 | void Addressee::setTitle( const QString &title ) | 1161 | void Addressee::setTitle( const QString &title ) |
1172 | { | 1162 | { |
1173 | if ( title == mData->title ) return; | 1163 | if ( title == mData->title ) return; |
1174 | detach(); | 1164 | detach(); |
1175 | mData->empty = false; | 1165 | mData->empty = false; |
1176 | mData->title = title; | 1166 | mData->title = title; |
1177 | } | 1167 | } |
1178 | 1168 | ||
1179 | QString Addressee::title() const | 1169 | QString Addressee::title() const |
1180 | { | 1170 | { |
1181 | return mData->title; | 1171 | return mData->title; |
1182 | } | 1172 | } |
1183 | 1173 | ||
1184 | QString Addressee::titleLabel() | 1174 | QString Addressee::titleLabel() |
1185 | { | 1175 | { |
1186 | return i18n("Title"); | 1176 | return i18n("Title"); |
1187 | } | 1177 | } |
1188 | 1178 | ||
1189 | 1179 | ||
1190 | void Addressee::setRole( const QString &role ) | 1180 | void Addressee::setRole( const QString &role ) |
1191 | { | 1181 | { |
1192 | if ( role == mData->role ) return; | 1182 | if ( role == mData->role ) return; |
1193 | detach(); | 1183 | detach(); |
1194 | mData->empty = false; | 1184 | mData->empty = false; |
1195 | mData->role = role; | 1185 | mData->role = role; |
1196 | } | 1186 | } |
1197 | 1187 | ||
1198 | QString Addressee::role() const | 1188 | QString Addressee::role() const |
1199 | { | 1189 | { |
1200 | return mData->role; | 1190 | return mData->role; |
1201 | } | 1191 | } |
1202 | 1192 | ||
1203 | QString Addressee::roleLabel() | 1193 | QString Addressee::roleLabel() |
1204 | { | 1194 | { |
1205 | return i18n("Role"); | 1195 | return i18n("Role"); |
1206 | } | 1196 | } |
1207 | 1197 | ||
1208 | 1198 | ||
1209 | void Addressee::setOrganization( const QString &organization ) | 1199 | void Addressee::setOrganization( const QString &organization ) |
1210 | { | 1200 | { |
1211 | if ( organization == mData->organization ) return; | 1201 | if ( organization == mData->organization ) return; |
1212 | detach(); | 1202 | detach(); |
1213 | mData->empty = false; | 1203 | mData->empty = false; |
1214 | mData->organization = organization; | 1204 | mData->organization = organization; |
1215 | } | 1205 | } |
1216 | 1206 | ||
1217 | QString Addressee::organization() const | 1207 | QString Addressee::organization() const |
1218 | { | 1208 | { |
1219 | return mData->organization; | 1209 | return mData->organization; |
1220 | } | 1210 | } |
1221 | 1211 | ||
1222 | QString Addressee::organizationLabel() | 1212 | QString Addressee::organizationLabel() |
1223 | { | 1213 | { |
1224 | return i18n("Organization"); | 1214 | return i18n("Organization"); |
1225 | } | 1215 | } |
1226 | 1216 | ||
1227 | 1217 | ||
1228 | void Addressee::setNote( const QString ¬e ) | 1218 | void Addressee::setNote( const QString ¬e ) |
1229 | { | 1219 | { |
1230 | if ( note == mData->note ) return; | 1220 | if ( note == mData->note ) return; |
1231 | detach(); | 1221 | detach(); |
1232 | mData->empty = false; | 1222 | mData->empty = false; |
1233 | mData->note = note; | 1223 | mData->note = note; |
1234 | } | 1224 | } |
1235 | 1225 | ||
1236 | QString Addressee::note() const | 1226 | QString Addressee::note() const |
1237 | { | 1227 | { |
1238 | return mData->note; | 1228 | return mData->note; |
1239 | } | 1229 | } |
1240 | 1230 | ||
1241 | QString Addressee::noteLabel() | 1231 | QString Addressee::noteLabel() |
1242 | { | 1232 | { |
1243 | return i18n("Note"); | 1233 | return i18n("Note"); |
1244 | } | 1234 | } |
1245 | 1235 | ||
1246 | 1236 | ||
1247 | void Addressee::setProductId( const QString &productId ) | 1237 | void Addressee::setProductId( const QString &productId ) |
1248 | { | 1238 | { |
1249 | if ( productId == mData->productId ) return; | 1239 | if ( productId == mData->productId ) return; |
1250 | detach(); | 1240 | detach(); |
1251 | mData->empty = false; | 1241 | mData->empty = false; |
1252 | mData->productId = productId; | 1242 | mData->productId = productId; |
1253 | } | 1243 | } |
1254 | 1244 | ||
1255 | QString Addressee::productId() const | 1245 | QString Addressee::productId() const |
1256 | { | 1246 | { |
1257 | return mData->productId; | 1247 | return mData->productId; |
1258 | } | 1248 | } |
1259 | 1249 | ||
1260 | QString Addressee::productIdLabel() | 1250 | QString Addressee::productIdLabel() |
1261 | { | 1251 | { |
1262 | return i18n("Product Identifier"); | 1252 | return i18n("Product Identifier"); |
1263 | } | 1253 | } |
1264 | 1254 | ||
1265 | 1255 | ||
1266 | void Addressee::setRevision( const QDateTime &revision ) | 1256 | void Addressee::setRevision( const QDateTime &revision ) |
1267 | { | 1257 | { |
1268 | if ( revision == mData->revision ) return; | 1258 | if ( revision == mData->revision ) return; |
1269 | detach(); | 1259 | detach(); |
1270 | mData->empty = false; | 1260 | mData->empty = false; |
1271 | mData->revision = QDateTime( revision.date(), | 1261 | mData->revision = QDateTime( revision.date(), |
1272 | QTime (revision.time().hour(), | 1262 | QTime (revision.time().hour(), |
1273 | revision.time().minute(), | 1263 | revision.time().minute(), |
1274 | revision.time().second())); | 1264 | revision.time().second())); |
1275 | } | 1265 | } |
1276 | 1266 | ||
1277 | QDateTime Addressee::revision() const | 1267 | QDateTime Addressee::revision() const |
1278 | { | 1268 | { |
1279 | return mData->revision; | 1269 | return mData->revision; |
1280 | } | 1270 | } |
1281 | 1271 | ||
1282 | QString Addressee::revisionLabel() | 1272 | QString Addressee::revisionLabel() |
1283 | { | 1273 | { |
1284 | return i18n("Revision Date"); | 1274 | return i18n("Revision Date"); |
1285 | } | 1275 | } |
1286 | 1276 | ||
1287 | 1277 | ||
1288 | void Addressee::setSortString( const QString &sortString ) | 1278 | void Addressee::setSortString( const QString &sortString ) |
1289 | { | 1279 | { |
1290 | if ( sortString == mData->sortString ) return; | 1280 | if ( sortString == mData->sortString ) return; |
1291 | detach(); | 1281 | detach(); |
1292 | mData->empty = false; | 1282 | mData->empty = false; |
1293 | mData->sortString = sortString; | 1283 | mData->sortString = sortString; |
1294 | } | 1284 | } |
1295 | 1285 | ||
1296 | QString Addressee::sortString() const | 1286 | QString Addressee::sortString() const |
1297 | { | 1287 | { |
1298 | return mData->sortString; | 1288 | return mData->sortString; |
1299 | } | 1289 | } |
1300 | 1290 | ||
1301 | QString Addressee::sortStringLabel() | 1291 | QString Addressee::sortStringLabel() |
1302 | { | 1292 | { |
1303 | return i18n("Sort String"); | 1293 | return i18n("Sort String"); |
1304 | } | 1294 | } |
1305 | 1295 | ||
1306 | 1296 | ||
1307 | void Addressee::setUrl( const KURL &url ) | 1297 | void Addressee::setUrl( const KURL &url ) |
1308 | { | 1298 | { |
1309 | if ( url == mData->url ) return; | 1299 | if ( url == mData->url ) return; |
1310 | detach(); | 1300 | detach(); |
1311 | mData->empty = false; | 1301 | mData->empty = false; |
1312 | mData->url = url; | 1302 | mData->url = url; |
1313 | } | 1303 | } |
1314 | 1304 | ||
1315 | KURL Addressee::url() const | 1305 | KURL Addressee::url() const |
1316 | { | 1306 | { |
1317 | return mData->url; | 1307 | return mData->url; |
1318 | } | 1308 | } |
1319 | 1309 | ||
1320 | QString Addressee::urlLabel() | 1310 | QString Addressee::urlLabel() |
1321 | { | 1311 | { |
1322 | return i18n("URL"); | 1312 | return i18n("URL"); |
1323 | } | 1313 | } |
1324 | 1314 | ||
1325 | 1315 | ||
1326 | void Addressee::setSecrecy( const Secrecy &secrecy ) | 1316 | void Addressee::setSecrecy( const Secrecy &secrecy ) |
1327 | { | 1317 | { |
1328 | if ( secrecy == mData->secrecy ) return; | 1318 | if ( secrecy == mData->secrecy ) return; |
1329 | detach(); | 1319 | detach(); |
1330 | mData->empty = false; | 1320 | mData->empty = false; |
1331 | mData->secrecy = secrecy; | 1321 | mData->secrecy = secrecy; |
1332 | } | 1322 | } |
1333 | 1323 | ||
1334 | Secrecy Addressee::secrecy() const | 1324 | Secrecy Addressee::secrecy() const |
1335 | { | 1325 | { |
1336 | return mData->secrecy; | 1326 | return mData->secrecy; |
1337 | } | 1327 | } |
1338 | 1328 | ||
1339 | QString Addressee::secrecyLabel() | 1329 | QString Addressee::secrecyLabel() |
1340 | { | 1330 | { |
1341 | return i18n("Security Class"); | 1331 | return i18n("Security Class"); |
1342 | } | 1332 | } |
1343 | 1333 | ||
1344 | 1334 | ||
1345 | void Addressee::setLogo( const Picture &logo ) | 1335 | void Addressee::setLogo( const Picture &logo ) |
1346 | { | 1336 | { |
1347 | if ( logo == mData->logo ) return; | 1337 | if ( logo == mData->logo ) return; |
1348 | detach(); | 1338 | detach(); |
1349 | mData->empty = false; | 1339 | mData->empty = false; |
1350 | mData->logo = logo; | 1340 | mData->logo = logo; |
1351 | } | 1341 | } |
1352 | 1342 | ||
1353 | Picture Addressee::logo() const | 1343 | Picture Addressee::logo() const |
1354 | { | 1344 | { |
1355 | return mData->logo; | 1345 | return mData->logo; |
1356 | } | 1346 | } |
1357 | 1347 | ||
1358 | QString Addressee::logoLabel() | 1348 | QString Addressee::logoLabel() |
1359 | { | 1349 | { |
1360 | return i18n("Logo"); | 1350 | return i18n("Logo"); |
1361 | } | 1351 | } |
1362 | 1352 | ||
1363 | 1353 | ||
1364 | void Addressee::setPhoto( const Picture &photo ) | 1354 | void Addressee::setPhoto( const Picture &photo ) |
1365 | { | 1355 | { |
1366 | if ( photo == mData->photo ) return; | 1356 | if ( photo == mData->photo ) return; |
1367 | detach(); | 1357 | detach(); |
1368 | mData->empty = false; | 1358 | mData->empty = false; |
1369 | mData->photo = photo; | 1359 | mData->photo = photo; |
1370 | } | 1360 | } |
1371 | 1361 | ||
1372 | Picture Addressee::photo() const | 1362 | Picture Addressee::photo() const |
1373 | { | 1363 | { |
1374 | return mData->photo; | 1364 | return mData->photo; |
1375 | } | 1365 | } |
1376 | 1366 | ||
1377 | QString Addressee::photoLabel() | 1367 | QString Addressee::photoLabel() |
1378 | { | 1368 | { |
1379 | return i18n("Photo"); | 1369 | return i18n("Photo"); |
1380 | } | 1370 | } |
1381 | 1371 | ||
1382 | 1372 | ||
1383 | void Addressee::setSound( const Sound &sound ) | 1373 | void Addressee::setSound( const Sound &sound ) |
1384 | { | 1374 | { |
1385 | if ( sound == mData->sound ) return; | 1375 | if ( sound == mData->sound ) return; |
1386 | detach(); | 1376 | detach(); |
1387 | mData->empty = false; | 1377 | mData->empty = false; |
1388 | mData->sound = sound; | 1378 | mData->sound = sound; |
1389 | } | 1379 | } |
1390 | 1380 | ||
1391 | Sound Addressee::sound() const | 1381 | Sound Addressee::sound() const |
1392 | { | 1382 | { |
1393 | return mData->sound; | 1383 | return mData->sound; |
1394 | } | 1384 | } |
1395 | 1385 | ||
1396 | QString Addressee::soundLabel() | 1386 | QString Addressee::soundLabel() |
1397 | { | 1387 | { |
1398 | return i18n("Sound"); | 1388 | return i18n("Sound"); |
1399 | } | 1389 | } |
1400 | 1390 | ||
1401 | 1391 | ||
1402 | void Addressee::setAgent( const Agent &agent ) | 1392 | void Addressee::setAgent( const Agent &agent ) |
1403 | { | 1393 | { |
1404 | if ( agent == mData->agent ) return; | 1394 | if ( agent == mData->agent ) return; |
1405 | detach(); | 1395 | detach(); |
1406 | mData->empty = false; | 1396 | mData->empty = false; |
1407 | mData->agent = agent; | 1397 | mData->agent = agent; |
1408 | } | 1398 | } |
1409 | 1399 | ||
1410 | Agent Addressee::agent() const | 1400 | Agent Addressee::agent() const |
1411 | { | 1401 | { |
1412 | return mData->agent; | 1402 | return mData->agent; |
1413 | } | 1403 | } |
1414 | 1404 | ||
1415 | QString Addressee::agentLabel() | 1405 | QString Addressee::agentLabel() |
1416 | { | 1406 | { |
1417 | return i18n("Agent"); | 1407 | return i18n("Agent"); |
1418 | } | 1408 | } |
1419 | 1409 | ||
1420 | 1410 | ||
1421 | 1411 | ||
1422 | void Addressee::setNameFromString( const QString &str ) | 1412 | void Addressee::setNameFromString( const QString &str ) |
1423 | { | 1413 | { |
1424 | setFormattedName( str ); | 1414 | setFormattedName( str ); |
1425 | setName( str ); | 1415 | setName( str ); |
1426 | 1416 | ||
1427 | static bool first = true; | 1417 | static bool first = true; |
1428 | static QStringList titles; | 1418 | static QStringList titles; |
1429 | static QStringList suffixes; | 1419 | static QStringList suffixes; |
1430 | static QStringList prefixes; | 1420 | static QStringList prefixes; |
1431 | 1421 | ||
1432 | if ( first ) { | 1422 | if ( first ) { |
1433 | first = false; | 1423 | first = false; |
1434 | titles += i18n( "Dr." ); | 1424 | titles += i18n( "Dr." ); |
1435 | titles += i18n( "Miss" ); | 1425 | titles += i18n( "Miss" ); |
1436 | titles += i18n( "Mr." ); | 1426 | titles += i18n( "Mr." ); |
1437 | titles += i18n( "Mrs." ); | 1427 | titles += i18n( "Mrs." ); |
1438 | titles += i18n( "Ms." ); | 1428 | titles += i18n( "Ms." ); |
1439 | titles += i18n( "Prof." ); | 1429 | titles += i18n( "Prof." ); |
1440 | 1430 | ||
1441 | suffixes += i18n( "I" ); | 1431 | suffixes += i18n( "I" ); |
1442 | suffixes += i18n( "II" ); | 1432 | suffixes += i18n( "II" ); |
1443 | suffixes += i18n( "III" ); | 1433 | suffixes += i18n( "III" ); |
1444 | suffixes += i18n( "Jr." ); | 1434 | suffixes += i18n( "Jr." ); |
1445 | suffixes += i18n( "Sr." ); | 1435 | suffixes += i18n( "Sr." ); |
1446 | 1436 | ||
1447 | prefixes += "van"; | 1437 | prefixes += "van"; |
1448 | prefixes += "von"; | 1438 | prefixes += "von"; |
1449 | prefixes += "de"; | 1439 | prefixes += "de"; |
1450 | 1440 | ||
1451 | KConfig config( locateLocal( "config", "kabcrc") ); | 1441 | KConfig config( locateLocal( "config", "kabcrc") ); |
1452 | config.setGroup( "General" ); | 1442 | config.setGroup( "General" ); |
1453 | titles += config.readListEntry( "Prefixes" ); | 1443 | titles += config.readListEntry( "Prefixes" ); |
1454 | titles.remove( "" ); | 1444 | titles.remove( "" ); |
1455 | prefixes += config.readListEntry( "Inclusions" ); | 1445 | prefixes += config.readListEntry( "Inclusions" ); |
1456 | prefixes.remove( "" ); | 1446 | prefixes.remove( "" ); |
1457 | suffixes += config.readListEntry( "Suffixes" ); | 1447 | suffixes += config.readListEntry( "Suffixes" ); |
1458 | suffixes.remove( "" ); | 1448 | suffixes.remove( "" ); |
1459 | } | 1449 | } |
1460 | 1450 | ||
1461 | // clear all name parts | 1451 | // clear all name parts |
1462 | setPrefix( "" ); | 1452 | setPrefix( "" ); |
1463 | setGivenName( "" ); | 1453 | setGivenName( "" ); |
1464 | setAdditionalName( "" ); | 1454 | setAdditionalName( "" ); |
1465 | setFamilyName( "" ); | 1455 | setFamilyName( "" ); |
1466 | setSuffix( "" ); | 1456 | setSuffix( "" ); |
1467 | 1457 | ||
1468 | if ( str.isEmpty() ) | 1458 | if ( str.isEmpty() ) |
1469 | return; | 1459 | return; |
1470 | 1460 | ||
1471 | int i = str.find(','); | 1461 | int i = str.find(','); |
1472 | if( i < 0 ) { | 1462 | if( i < 0 ) { |
1473 | QStringList parts = QStringList::split( " ", str ); | 1463 | QStringList parts = QStringList::split( " ", str ); |
1474 | int leftOffset = 0; | 1464 | int leftOffset = 0; |
1475 | int rightOffset = parts.count() - 1; | 1465 | int rightOffset = parts.count() - 1; |
1476 | 1466 | ||
1477 | QString suffix; | 1467 | QString suffix; |
1478 | while ( rightOffset >= 0 ) { | 1468 | while ( rightOffset >= 0 ) { |
1479 | if ( suffixes.contains( parts[ rightOffset ] ) ) { | 1469 | if ( suffixes.contains( parts[ rightOffset ] ) ) { |
1480 | suffix.prepend(parts[ rightOffset ] + (suffix.isEmpty() ? "" : " ")); | 1470 | suffix.prepend(parts[ rightOffset ] + (suffix.isEmpty() ? "" : " ")); |
1481 | rightOffset--; | 1471 | rightOffset--; |
1482 | } else | 1472 | } else |
1483 | break; | 1473 | break; |
1484 | } | 1474 | } |
1485 | setSuffix( suffix ); | 1475 | setSuffix( suffix ); |
1486 | 1476 | ||
1487 | if ( rightOffset < 0 ) | 1477 | if ( rightOffset < 0 ) |
1488 | return; | 1478 | return; |
1489 | 1479 | ||
1490 | if ( rightOffset - 1 >= 0 && prefixes.contains( parts[ rightOffset - 1 ].lower() ) ) { | 1480 | if ( rightOffset - 1 >= 0 && prefixes.contains( parts[ rightOffset - 1 ].lower() ) ) { |
1491 | setFamilyName( parts[ rightOffset - 1 ] + " " + parts[ rightOffset ] ); | 1481 | setFamilyName( parts[ rightOffset - 1 ] + " " + parts[ rightOffset ] ); |
1492 | rightOffset--; | 1482 | rightOffset--; |
1493 | } else | 1483 | } else |
1494 | setFamilyName( parts[ rightOffset ] ); | 1484 | setFamilyName( parts[ rightOffset ] ); |
1495 | 1485 | ||
1496 | QString prefix; | 1486 | QString prefix; |
1497 | while ( leftOffset < rightOffset ) { | 1487 | while ( leftOffset < rightOffset ) { |
1498 | if ( titles.contains( parts[ leftOffset ] ) ) { | 1488 | if ( titles.contains( parts[ leftOffset ] ) ) { |
1499 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); | 1489 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); |
1500 | leftOffset++; | 1490 | leftOffset++; |
1501 | } else | 1491 | } else |
1502 | break; | 1492 | break; |
1503 | } | 1493 | } |
1504 | setPrefix( prefix ); | 1494 | setPrefix( prefix ); |
1505 | 1495 | ||
1506 | if ( leftOffset < rightOffset ) { | 1496 | if ( leftOffset < rightOffset ) { |
1507 | setGivenName( parts[ leftOffset ] ); | 1497 | setGivenName( parts[ leftOffset ] ); |
1508 | leftOffset++; | 1498 | leftOffset++; |
1509 | } | 1499 | } |
1510 | 1500 | ||
1511 | QString additionalName; | 1501 | QString additionalName; |
1512 | while ( leftOffset < rightOffset ) { | 1502 | while ( leftOffset < rightOffset ) { |
1513 | additionalName.append( ( additionalName.isEmpty() ? "" : " ") + parts[ leftOffset ] ); | 1503 | additionalName.append( ( additionalName.isEmpty() ? "" : " ") + parts[ leftOffset ] ); |
1514 | leftOffset++; | 1504 | leftOffset++; |
1515 | } | 1505 | } |
1516 | setAdditionalName( additionalName ); | 1506 | setAdditionalName( additionalName ); |
1517 | } else { | 1507 | } else { |
1518 | QString part1 = str.left( i ); | 1508 | QString part1 = str.left( i ); |
1519 | QString part2 = str.mid( i + 1 ); | 1509 | QString part2 = str.mid( i + 1 ); |
1520 | 1510 | ||
1521 | QStringList parts = QStringList::split( " ", part1 ); | 1511 | QStringList parts = QStringList::split( " ", part1 ); |
1522 | int leftOffset = 0; | 1512 | int leftOffset = 0; |
1523 | int rightOffset = parts.count() - 1; | 1513 | int rightOffset = parts.count() - 1; |
1524 | 1514 | ||
1525 | QString suffix; | 1515 | QString suffix; |
1526 | while ( rightOffset >= 0 ) { | 1516 | while ( rightOffset >= 0 ) { |
1527 | if ( suffixes.contains( parts[ rightOffset ] ) ) { | 1517 | if ( suffixes.contains( parts[ rightOffset ] ) ) { |
1528 | suffix.prepend(parts[ rightOffset ] + (suffix.isEmpty() ? "" : " ")); | 1518 | suffix.prepend(parts[ rightOffset ] + (suffix.isEmpty() ? "" : " ")); |
1529 | rightOffset--; | 1519 | rightOffset--; |
1530 | } else | 1520 | } else |
1531 | break; | 1521 | break; |
1532 | } | 1522 | } |
1533 | setSuffix( suffix ); | 1523 | setSuffix( suffix ); |
1534 | 1524 | ||
1535 | if ( rightOffset - 1 >= 0 && prefixes.contains( parts[ rightOffset - 1 ].lower() ) ) { | 1525 | if ( rightOffset - 1 >= 0 && prefixes.contains( parts[ rightOffset - 1 ].lower() ) ) { |
1536 | setFamilyName( parts[ rightOffset - 1 ] + " " + parts[ rightOffset ] ); | 1526 | setFamilyName( parts[ rightOffset - 1 ] + " " + parts[ rightOffset ] ); |
1537 | rightOffset--; | 1527 | rightOffset--; |
1538 | } else | 1528 | } else |
1539 | setFamilyName( parts[ rightOffset ] ); | 1529 | setFamilyName( parts[ rightOffset ] ); |
1540 | 1530 | ||
1541 | QString prefix; | 1531 | QString prefix; |
1542 | while ( leftOffset < rightOffset ) { | 1532 | while ( leftOffset < rightOffset ) { |
1543 | if ( titles.contains( parts[ leftOffset ] ) ) { | 1533 | if ( titles.contains( parts[ leftOffset ] ) ) { |
1544 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); | 1534 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); |
1545 | leftOffset++; | 1535 | leftOffset++; |
1546 | } else | 1536 | } else |
1547 | break; | 1537 | break; |
1548 | } | 1538 | } |
1549 | 1539 | ||
1550 | parts = QStringList::split( " ", part2 ); | 1540 | parts = QStringList::split( " ", part2 ); |
1551 | 1541 | ||
1552 | leftOffset = 0; | 1542 | leftOffset = 0; |
1553 | rightOffset = parts.count(); | 1543 | rightOffset = parts.count(); |
1554 | 1544 | ||
1555 | while ( leftOffset < rightOffset ) { | 1545 | while ( leftOffset < rightOffset ) { |
1556 | if ( titles.contains( parts[ leftOffset ] ) ) { | 1546 | if ( titles.contains( parts[ leftOffset ] ) ) { |
1557 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); | 1547 | prefix.append( ( prefix.isEmpty() ? "" : " ") + parts[ leftOffset ] ); |
1558 | leftOffset++; | 1548 | leftOffset++; |
1559 | } else | 1549 | } else |
1560 | break; | 1550 | break; |
1561 | } | 1551 | } |
1562 | setPrefix( prefix ); | 1552 | setPrefix( prefix ); |
1563 | 1553 | ||
1564 | if ( leftOffset < rightOffset ) { | 1554 | if ( leftOffset < rightOffset ) { |
1565 | setGivenName( parts[ leftOffset ] ); | 1555 | setGivenName( parts[ leftOffset ] ); |
1566 | leftOffset++; | 1556 | leftOffset++; |
1567 | } | 1557 | } |
1568 | 1558 | ||
1569 | QString additionalName; | 1559 | QString additionalName; |
1570 | while ( leftOffset < rightOffset ) { | 1560 | while ( leftOffset < rightOffset ) { |
1571 | additionalName.append( ( additionalName.isEmpty() ? "" : " ") + parts[ leftOffset ] ); | 1561 | additionalName.append( ( additionalName.isEmpty() ? "" : " ") + parts[ leftOffset ] ); |
1572 | leftOffset++; | 1562 | leftOffset++; |
1573 | } | 1563 | } |
1574 | setAdditionalName( additionalName ); | 1564 | setAdditionalName( additionalName ); |
1575 | } | 1565 | } |
1576 | } | 1566 | } |
1577 | 1567 | ||
1578 | QString Addressee::realName() const | 1568 | QString Addressee::realName() const |
1579 | { | 1569 | { |
1580 | if ( !formattedName().isEmpty() ) | 1570 | if ( !formattedName().isEmpty() ) |
1581 | return formattedName(); | 1571 | return formattedName(); |
1582 | 1572 | ||
1583 | QString n = assembledName(); | 1573 | QString n = assembledName(); |
1584 | 1574 | ||
1585 | if ( n.isEmpty() ) | 1575 | if ( n.isEmpty() ) |
1586 | n = name(); | 1576 | n = name(); |
1587 | if ( n.isEmpty() ) | 1577 | if ( n.isEmpty() ) |
1588 | n = organization(); | 1578 | n = organization(); |
1589 | return n; | 1579 | return n; |
1590 | } | 1580 | } |
1591 | 1581 | ||
1592 | QString Addressee::assembledName() const | 1582 | QString Addressee::assembledName() const |
1593 | { | 1583 | { |
1594 | QString name = prefix() + " " + givenName() + " " + additionalName() + " " + | 1584 | QString name = prefix() + " " + givenName() + " " + additionalName() + " " + |
1595 | familyName() + " " + suffix(); | 1585 | familyName() + " " + suffix(); |
1596 | 1586 | ||
1597 | return name.simplifyWhiteSpace(); | 1587 | return name.simplifyWhiteSpace(); |
1598 | } | 1588 | } |
1599 | 1589 | ||
diff --git a/kabc/addressee.h b/kabc/addressee.h index fcadda6..aac78dc 100644 --- a/kabc/addressee.h +++ b/kabc/addressee.h | |||
@@ -1,861 +1,856 @@ | |||
1 | /*** Warning! This file has been generated by the script makeaddressee ***/ | 1 | /*** Warning! This file has been generated by the script makeaddressee ***/ |
2 | /* | 2 | /* |
3 | This file is part of libkabc. | 3 | This file is part of libkabc. |
4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | /* | 22 | /* |
23 | Enhanced Version of the file for platform independent KDE tools. | 23 | Enhanced Version of the file for platform independent KDE tools. |
24 | Copyright (c) 2004 Ulf Schenk | 24 | Copyright (c) 2004 Ulf Schenk |
25 | 25 | ||
26 | $Id$ | 26 | $Id$ |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #ifndef KABC_ADDRESSEE_H | 29 | #ifndef KABC_ADDRESSEE_H |
30 | #define KABC_ADDRESSEE_H | 30 | #define KABC_ADDRESSEE_H |
31 | 31 | ||
32 | #include <qdatetime.h> | 32 | #include <qdatetime.h> |
33 | #include <qstring.h> | 33 | #include <qstring.h> |
34 | #include <qregexp.h> | 34 | #include <qregexp.h> |
35 | #include <qstringlist.h> | 35 | #include <qstringlist.h> |
36 | #include <qvaluelist.h> | 36 | #include <qvaluelist.h> |
37 | 37 | ||
38 | #include <ksharedptr.h> | 38 | #include <ksharedptr.h> |
39 | #include <kurl.h> | 39 | #include <kurl.h> |
40 | 40 | ||
41 | #include "address.h" | 41 | #include "address.h" |
42 | #include "agent.h" | 42 | #include "agent.h" |
43 | #include "geo.h" | 43 | #include "geo.h" |
44 | #include "key.h" | 44 | #include "key.h" |
45 | #include "phonenumber.h" | 45 | #include "phonenumber.h" |
46 | #include "picture.h" | 46 | #include "picture.h" |
47 | #include "secrecy.h" | 47 | #include "secrecy.h" |
48 | #include "sound.h" | 48 | #include "sound.h" |
49 | #include "timezone.h" | 49 | #include "timezone.h" |
50 | 50 | ||
51 | namespace KABC { | 51 | namespace KABC { |
52 | 52 | ||
53 | class Resource; | 53 | class Resource; |
54 | 54 | ||
55 | /** | 55 | /** |
56 | @short address book entry | 56 | @short address book entry |
57 | 57 | ||
58 | This class represents an entry in the address book. | 58 | This class represents an entry in the address book. |
59 | 59 | ||
60 | The data of this class is implicitly shared. You can pass this class by value. | 60 | The data of this class is implicitly shared. You can pass this class by value. |
61 | 61 | ||
62 | If you need the name of a field for presenting it to the user you should use | 62 | If you need the name of a field for presenting it to the user you should use |
63 | the functions ending in Label(). They return a translated string which can be | 63 | the functions ending in Label(). They return a translated string which can be |
64 | used as label for the corresponding field. | 64 | used as label for the corresponding field. |
65 | 65 | ||
66 | About the name fields: | 66 | About the name fields: |
67 | 67 | ||
68 | givenName() is the first name and familyName() the last name. In some | 68 | givenName() is the first name and familyName() the last name. In some |
69 | countries the family name comes first, that's the reason for the | 69 | countries the family name comes first, that's the reason for the |
70 | naming. formattedName() is the full name with the correct formatting. | 70 | naming. formattedName() is the full name with the correct formatting. |
71 | It is used as an override, when the correct formatting can't be generated | 71 | It is used as an override, when the correct formatting can't be generated |
72 | from the other name fields automatically. | 72 | from the other name fields automatically. |
73 | 73 | ||
74 | realName() returns a fully formatted name(). It uses formattedName, if set, | 74 | realName() returns a fully formatted name(). It uses formattedName, if set, |
75 | otherwise it constucts the name from the name fields. As fallback, if | 75 | otherwise it constucts the name from the name fields. As fallback, if |
76 | nothing else is set it uses name(). | 76 | nothing else is set it uses name(). |
77 | 77 | ||
78 | name() is the NAME type of RFC2426. It can be used as internal name for the | 78 | name() is the NAME type of RFC2426. It can be used as internal name for the |
79 | data enty, but shouldn't be used for displaying the data to the user. | 79 | data enty, but shouldn't be used for displaying the data to the user. |
80 | */ | 80 | */ |
81 | class Addressee | 81 | class Addressee |
82 | { | 82 | { |
83 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); | 83 | friend QDataStream &operator<<( QDataStream &, const Addressee & ); |
84 | friend QDataStream &operator>>( QDataStream &, Addressee & ); | 84 | friend QDataStream &operator>>( QDataStream &, Addressee & ); |
85 | 85 | ||
86 | public: | 86 | public: |
87 | typedef QValueList<Addressee> List; | 87 | typedef QValueList<Addressee> List; |
88 | 88 | ||
89 | /** | 89 | /** |
90 | Construct an empty address book entry. | 90 | Construct an empty address book entry. |
91 | */ | 91 | */ |
92 | Addressee(); | 92 | Addressee(); |
93 | ~Addressee(); | 93 | ~Addressee(); |
94 | 94 | ||
95 | Addressee( const Addressee & ); | 95 | Addressee( const Addressee & ); |
96 | Addressee &operator=( const Addressee & ); | 96 | Addressee &operator=( const Addressee & ); |
97 | 97 | ||
98 | bool operator==( const Addressee & ) const; | 98 | bool operator==( const Addressee & ) const; |
99 | bool operator!=( const Addressee & ) const; | 99 | bool operator!=( const Addressee & ) const; |
100 | // sync stuff | 100 | // sync stuff |
101 | void setTempSyncStat(int id); | 101 | void setTempSyncStat(int id); |
102 | int tempSyncStat() const; | 102 | int tempSyncStat() const; |
103 | void setIDStr( const QString & ); | 103 | void setIDStr( const QString & ); |
104 | const QString IDStr() const; | 104 | const QString IDStr() const; |
105 | void setID( const QString &, const QString & ); | 105 | void setID( const QString &, const QString & ); |
106 | const QString getID( const QString & ) const; | 106 | const QString getID( const QString & ) const; |
107 | void setCsum( const QString &, const QString & ); | 107 | void setCsum( const QString &, const QString & ); |
108 | const QString getCsum( const QString & ) const ; | 108 | const QString getCsum( const QString & ) const ; |
109 | void removeID(const QString &); | 109 | void removeID(const QString &); |
110 | void computeCsum(const QString &dev); | 110 | void computeCsum(const QString &dev); |
111 | ulong getCsum4List( const QStringList & attList); | 111 | ulong getCsum4List( const QStringList & attList); |
112 | /** | 112 | /** |
113 | Return, if the address book entry is empty. | 113 | Return, if the address book entry is empty. |
114 | */ | 114 | */ |
115 | bool isEmpty() const; | 115 | bool isEmpty() const; |
116 | void setExternalUID( const QString &id ); | 116 | void setExternalUID( const QString &id ); |
117 | const QString externalUID() const; | 117 | const QString externalUID() const; |
118 | void setOriginalExternalUID( const QString &id ); | 118 | void setOriginalExternalUID( const QString &id ); |
119 | QString originalExternalUID() const; | 119 | QString originalExternalUID() const; |
120 | void mergeContact( const Addressee& ad, bool isSubSet ); | 120 | void mergeContact( const Addressee& ad, bool isSubSet ); |
121 | void simplifyEmails(); | 121 | void simplifyEmails(); |
122 | void simplifyAddresses(); | 122 | void simplifyAddresses(); |
123 | void simplifyPhoneNumbers(); | 123 | void simplifyPhoneNumbers(); |
124 | void simplifyPhoneNumberTypes(); | 124 | void simplifyPhoneNumberTypes(); |
125 | void makePhoneNumbersOLcompatible(); | 125 | void makePhoneNumbersOLcompatible(); |
126 | int hasPhoneNumberType( int type ); | 126 | int hasPhoneNumberType( int type ); |
127 | bool removeVoice(); | 127 | bool removeVoice(); |
128 | bool containsAdr(const Addressee& addr ); | 128 | bool containsAdr(const Addressee& addr ); |
129 | 129 | ||
130 | /** | 130 | /** |
131 | Set unique identifier. | 131 | Set unique identifier. |
132 | */ | 132 | */ |
133 | void setUid( const QString &uid ); | 133 | void setUid( const QString &uid ); |
134 | /** | 134 | /** |
135 | Return unique identifier. | 135 | Return unique identifier. |
136 | */ | 136 | */ |
137 | const QString uid() const; | 137 | const QString uid() const; |
138 | /** | 138 | /** |
139 | Return translated label for uid field. | 139 | Return translated label for uid field. |
140 | */ | 140 | */ |
141 | static QString uidLabel(); | 141 | static QString uidLabel(); |
142 | 142 | ||
143 | /** | 143 | /** |
144 | Set name. | 144 | Set name. |
145 | */ | 145 | */ |
146 | void setName( const QString &name ); | 146 | void setName( const QString &name ); |
147 | /** | 147 | /** |
148 | Return name. | 148 | Return name. |
149 | */ | 149 | */ |
150 | QString name() const; | 150 | QString name() const; |
151 | /** | 151 | /** |
152 | Return translated label for name field. | 152 | Return translated label for name field. |
153 | */ | 153 | */ |
154 | static QString nameLabel(); | 154 | static QString nameLabel(); |
155 | 155 | ||
156 | /** | 156 | /** |
157 | Set formatted name. | 157 | Set formatted name. |
158 | */ | 158 | */ |
159 | void setFormattedName( const QString &formattedName ); | 159 | void setFormattedName( const QString &formattedName ); |
160 | /** | 160 | /** |
161 | Return formatted name. | 161 | Return formatted name. |
162 | */ | 162 | */ |
163 | QString formattedName() const; | 163 | QString formattedName() const; |
164 | /** | 164 | /** |
165 | Return translated label for formattedName field. | 165 | Return translated label for formattedName field. |
166 | */ | 166 | */ |
167 | static QString formattedNameLabel(); | 167 | static QString formattedNameLabel(); |
168 | 168 | ||
169 | /** | 169 | /** |
170 | Set family name. | 170 | Set family name. |
171 | */ | 171 | */ |
172 | void setFamilyName( const QString &familyName ); | 172 | void setFamilyName( const QString &familyName ); |
173 | /** | 173 | /** |
174 | Return family name. | 174 | Return family name. |
175 | */ | 175 | */ |
176 | QString familyName() const; | 176 | QString familyName() const; |
177 | /** | 177 | /** |
178 | Return translated label for familyName field. | 178 | Return translated label for familyName field. |
179 | */ | 179 | */ |
180 | static QString familyNameLabel(); | 180 | static QString familyNameLabel(); |
181 | 181 | ||
182 | /** | 182 | /** |
183 | Set given name. | 183 | Set given name. |
184 | */ | 184 | */ |
185 | void setGivenName( const QString &givenName ); | 185 | void setGivenName( const QString &givenName ); |
186 | /** | 186 | /** |
187 | Return given name. | 187 | Return given name. |
188 | */ | 188 | */ |
189 | QString givenName() const; | 189 | QString givenName() const; |
190 | /** | 190 | /** |
191 | Return translated label for givenName field. | 191 | Return translated label for givenName field. |
192 | */ | 192 | */ |
193 | static QString givenNameLabel(); | 193 | static QString givenNameLabel(); |
194 | 194 | ||
195 | /** | 195 | /** |
196 | Set additional names. | 196 | Set additional names. |
197 | */ | 197 | */ |
198 | void setAdditionalName( const QString &additionalName ); | 198 | void setAdditionalName( const QString &additionalName ); |
199 | /** | 199 | /** |
200 | Return additional names. | 200 | Return additional names. |
201 | */ | 201 | */ |
202 | QString additionalName() const; | 202 | QString additionalName() const; |
203 | /** | 203 | /** |
204 | Return translated label for additionalName field. | 204 | Return translated label for additionalName field. |
205 | */ | 205 | */ |
206 | static QString additionalNameLabel(); | 206 | static QString additionalNameLabel(); |
207 | 207 | ||
208 | /** | 208 | /** |
209 | Set honorific prefixes. | 209 | Set honorific prefixes. |
210 | */ | 210 | */ |
211 | void setPrefix( const QString &prefix ); | 211 | void setPrefix( const QString &prefix ); |
212 | /** | 212 | /** |
213 | Return honorific prefixes. | 213 | Return honorific prefixes. |
214 | */ | 214 | */ |
215 | QString prefix() const; | 215 | QString prefix() const; |
216 | /** | 216 | /** |
217 | Return translated label for prefix field. | 217 | Return translated label for prefix field. |
218 | */ | 218 | */ |
219 | static QString prefixLabel(); | 219 | static QString prefixLabel(); |
220 | 220 | ||
221 | /** | 221 | /** |
222 | Set honorific suffixes. | 222 | Set honorific suffixes. |
223 | */ | 223 | */ |
224 | void setSuffix( const QString &suffix ); | 224 | void setSuffix( const QString &suffix ); |
225 | /** | 225 | /** |
226 | Return honorific suffixes. | 226 | Return honorific suffixes. |
227 | */ | 227 | */ |
228 | QString suffix() const; | 228 | QString suffix() const; |
229 | /** | 229 | /** |
230 | Return translated label for suffix field. | 230 | Return translated label for suffix field. |
231 | */ | 231 | */ |
232 | static QString suffixLabel(); | 232 | static QString suffixLabel(); |
233 | 233 | ||
234 | /** | 234 | /** |
235 | Set nick name. | 235 | Set nick name. |
236 | */ | 236 | */ |
237 | void setNickName( const QString &nickName ); | 237 | void setNickName( const QString &nickName ); |
238 | /** | 238 | /** |
239 | Return nick name. | 239 | Return nick name. |
240 | */ | 240 | */ |
241 | QString nickName() const; | 241 | QString nickName() const; |
242 | /** | 242 | /** |
243 | Return translated label for nickName field. | 243 | Return translated label for nickName field. |
244 | */ | 244 | */ |
245 | static QString nickNameLabel(); | 245 | static QString nickNameLabel(); |
246 | 246 | ||
247 | /** | 247 | /** |
248 | Set birthday. | 248 | Set birthday. |
249 | */ | 249 | */ |
250 | void setBirthday( const QDateTime &birthday ); | 250 | void setBirthday( const QDateTime &birthday ); |
251 | /** | 251 | /** |
252 | Return birthday. | 252 | Return birthday. |
253 | */ | 253 | */ |
254 | QDateTime birthday() const; | 254 | QDateTime birthday() const; |
255 | /** | 255 | /** |
256 | Return translated label for birthday field. | 256 | Return translated label for birthday field. |
257 | */ | 257 | */ |
258 | static QString birthdayLabel(); | 258 | static QString birthdayLabel(); |
259 | 259 | ||
260 | /** | 260 | /** |
261 | Return translated label for homeAddressStreet field. | 261 | Return translated label for homeAddressStreet field. |
262 | */ | 262 | */ |
263 | static QString homeAddressStreetLabel(); | 263 | static QString homeAddressStreetLabel(); |
264 | 264 | ||
265 | /** | 265 | /** |
266 | Return translated label for homeAddressLocality field. | 266 | Return translated label for homeAddressLocality field. |
267 | */ | 267 | */ |
268 | static QString homeAddressLocalityLabel(); | 268 | static QString homeAddressLocalityLabel(); |
269 | 269 | ||
270 | /** | 270 | /** |
271 | Return translated label for homeAddressRegion field. | 271 | Return translated label for homeAddressRegion field. |
272 | */ | 272 | */ |
273 | static QString homeAddressRegionLabel(); | 273 | static QString homeAddressRegionLabel(); |
274 | 274 | ||
275 | /** | 275 | /** |
276 | Return translated label for homeAddressPostalCode field. | 276 | Return translated label for homeAddressPostalCode field. |
277 | */ | 277 | */ |
278 | static QString homeAddressPostalCodeLabel(); | 278 | static QString homeAddressPostalCodeLabel(); |
279 | 279 | ||
280 | /** | 280 | /** |
281 | Return translated label for homeAddressCountry field. | 281 | Return translated label for homeAddressCountry field. |
282 | */ | 282 | */ |
283 | static QString homeAddressCountryLabel(); | 283 | static QString homeAddressCountryLabel(); |
284 | 284 | ||
285 | /** | 285 | /** |
286 | Return translated label for homeAddressLabel field. | 286 | Return translated label for homeAddressLabel field. |
287 | */ | 287 | */ |
288 | static QString homeAddressLabelLabel(); | 288 | static QString homeAddressLabelLabel(); |
289 | 289 | ||
290 | /** | 290 | /** |
291 | Return translated label for businessAddressStreet field. | 291 | Return translated label for businessAddressStreet field. |
292 | */ | 292 | */ |
293 | static QString businessAddressStreetLabel(); | 293 | static QString businessAddressStreetLabel(); |
294 | 294 | ||
295 | /** | 295 | /** |
296 | Return translated label for businessAddressLocality field. | 296 | Return translated label for businessAddressLocality field. |
297 | */ | 297 | */ |
298 | static QString businessAddressLocalityLabel(); | 298 | static QString businessAddressLocalityLabel(); |
299 | 299 | ||
300 | /** | 300 | /** |
301 | Return translated label for businessAddressRegion field. | 301 | Return translated label for businessAddressRegion field. |
302 | */ | 302 | */ |
303 | static QString businessAddressRegionLabel(); | 303 | static QString businessAddressRegionLabel(); |
304 | 304 | ||
305 | /** | 305 | /** |
306 | Return translated label for businessAddressPostalCode field. | 306 | Return translated label for businessAddressPostalCode field. |
307 | */ | 307 | */ |
308 | static QString businessAddressPostalCodeLabel(); | 308 | static QString businessAddressPostalCodeLabel(); |
309 | 309 | ||
310 | /** | 310 | /** |
311 | Return translated label for businessAddressCountry field. | 311 | Return translated label for businessAddressCountry field. |
312 | */ | 312 | */ |
313 | static QString businessAddressCountryLabel(); | 313 | static QString businessAddressCountryLabel(); |
314 | 314 | ||
315 | /** | 315 | /** |
316 | Return translated label for businessAddressLabel field. | 316 | Return translated label for businessAddressLabel field. |
317 | */ | 317 | */ |
318 | static QString businessAddressLabelLabel(); | 318 | static QString businessAddressLabelLabel(); |
319 | 319 | ||
320 | /** | 320 | /** |
321 | Return translated label for homePhone field. | 321 | Return translated label for homePhone field. |
322 | */ | 322 | */ |
323 | static QString homePhoneLabel(); | 323 | static QString homePhoneLabel(); |
324 | 324 | ||
325 | /** | 325 | /** |
326 | Return translated label for businessPhone field. | 326 | Return translated label for businessPhone field. |
327 | */ | 327 | */ |
328 | static QString businessPhoneLabel(); | 328 | static QString businessPhoneLabel(); |
329 | 329 | ||
330 | /** | 330 | /** |
331 | Return translated label for mobilePhone field. | 331 | Return translated label for mobilePhone field. |
332 | */ | 332 | */ |
333 | static QString mobilePhoneLabel(); | 333 | static QString mobilePhoneLabel(); |
334 | static QString mobileWorkPhoneLabel(); | 334 | static QString mobileWorkPhoneLabel(); |
335 | static QString mobileHomePhoneLabel(); | ||
336 | 335 | ||
337 | /** | 336 | /** |
338 | Return translated label for homeFax field. | 337 | Return translated label for homeFax field. |
339 | */ | 338 | */ |
340 | static QString homeFaxLabel(); | 339 | static QString homeFaxLabel(); |
341 | 340 | ||
342 | /** | 341 | /** |
343 | Return translated label for businessFax field. | 342 | Return translated label for businessFax field. |
344 | */ | 343 | */ |
345 | static QString businessFaxLabel(); | 344 | static QString businessFaxLabel(); |
346 | 345 | ||
347 | /** | 346 | |
348 | Return translated label for carPhone field. | ||
349 | */ | ||
350 | static QString carPhoneLabel(); | ||
351 | |||
352 | /** | 347 | /** |
353 | Return translated label for isdn field. | 348 | Return translated label for isdn field. |
354 | */ | 349 | */ |
355 | static QString isdnLabel(); | 350 | static QString isdnLabel(); |
356 | 351 | ||
357 | /** | 352 | /** |
358 | Return translated label for pager field. | 353 | Return translated label for pager field. |
359 | */ | 354 | */ |
360 | static QString pagerLabel(); | 355 | static QString pagerLabel(); |
361 | static QString otherPhoneLabel(); | 356 | static QString otherPhoneLabel(); |
362 | /** | 357 | /** |
363 | Return translated label for sip field. | 358 | Return translated label for sip field. |
364 | */ | 359 | */ |
365 | static QString sipLabel(); | 360 | static QString sipLabel(); |
366 | 361 | ||
367 | /** | 362 | /** |
368 | Return translated label for email field. | 363 | Return translated label for email field. |
369 | */ | 364 | */ |
370 | static QString emailLabel(); | 365 | static QString emailLabel(); |
371 | 366 | ||
372 | /** | 367 | /** |
373 | Set mail client. | 368 | Set mail client. |
374 | */ | 369 | */ |
375 | void setMailer( const QString &mailer ); | 370 | void setMailer( const QString &mailer ); |
376 | /** | 371 | /** |
377 | Return mail client. | 372 | Return mail client. |
378 | */ | 373 | */ |
379 | QString mailer() const; | 374 | QString mailer() const; |
380 | /** | 375 | /** |
381 | Return translated label for mailer field. | 376 | Return translated label for mailer field. |
382 | */ | 377 | */ |
383 | static QString mailerLabel(); | 378 | static QString mailerLabel(); |
384 | 379 | ||
385 | /** | 380 | /** |
386 | Set time zone. | 381 | Set time zone. |
387 | */ | 382 | */ |
388 | void setTimeZone( const TimeZone &timeZone ); | 383 | void setTimeZone( const TimeZone &timeZone ); |
389 | /** | 384 | /** |
390 | Return time zone. | 385 | Return time zone. |
391 | */ | 386 | */ |
392 | TimeZone timeZone() const; | 387 | TimeZone timeZone() const; |
393 | /** | 388 | /** |
394 | Return translated label for timeZone field. | 389 | Return translated label for timeZone field. |
395 | */ | 390 | */ |
396 | static QString timeZoneLabel(); | 391 | static QString timeZoneLabel(); |
397 | 392 | ||
398 | /** | 393 | /** |
399 | Set geographic position. | 394 | Set geographic position. |
400 | */ | 395 | */ |
401 | void setGeo( const Geo &geo ); | 396 | void setGeo( const Geo &geo ); |
402 | /** | 397 | /** |
403 | Return geographic position. | 398 | Return geographic position. |
404 | */ | 399 | */ |
405 | Geo geo() const; | 400 | Geo geo() const; |
406 | /** | 401 | /** |
407 | Return translated label for geo field. | 402 | Return translated label for geo field. |
408 | */ | 403 | */ |
409 | static QString geoLabel(); | 404 | static QString geoLabel(); |
410 | 405 | ||
411 | /** | 406 | /** |
412 | Set title. | 407 | Set title. |
413 | */ | 408 | */ |
414 | void setTitle( const QString &title ); | 409 | void setTitle( const QString &title ); |
415 | /** | 410 | /** |
416 | Return title. | 411 | Return title. |
417 | */ | 412 | */ |
418 | QString title() const; | 413 | QString title() const; |
419 | /** | 414 | /** |
420 | Return translated label for title field. | 415 | Return translated label for title field. |
421 | */ | 416 | */ |
422 | static QString titleLabel(); | 417 | static QString titleLabel(); |
423 | 418 | ||
424 | /** | 419 | /** |
425 | Set role. | 420 | Set role. |
426 | */ | 421 | */ |
427 | void setRole( const QString &role ); | 422 | void setRole( const QString &role ); |
428 | /** | 423 | /** |
429 | Return role. | 424 | Return role. |
430 | */ | 425 | */ |
431 | QString role() const; | 426 | QString role() const; |
432 | /** | 427 | /** |
433 | Return translated label for role field. | 428 | Return translated label for role field. |
434 | */ | 429 | */ |
435 | static QString roleLabel(); | 430 | static QString roleLabel(); |
436 | 431 | ||
437 | /** | 432 | /** |
438 | Set organization. | 433 | Set organization. |
439 | */ | 434 | */ |
440 | void setOrganization( const QString &organization ); | 435 | void setOrganization( const QString &organization ); |
441 | /** | 436 | /** |
442 | Return organization. | 437 | Return organization. |
443 | */ | 438 | */ |
444 | QString organization() const; | 439 | QString organization() const; |
445 | /** | 440 | /** |
446 | Return translated label for organization field. | 441 | Return translated label for organization field. |
447 | */ | 442 | */ |
448 | static QString organizationLabel(); | 443 | static QString organizationLabel(); |
449 | 444 | ||
450 | /** | 445 | /** |
451 | Set note. | 446 | Set note. |
452 | */ | 447 | */ |
453 | void setNote( const QString ¬e ); | 448 | void setNote( const QString ¬e ); |
454 | /** | 449 | /** |
455 | Return note. | 450 | Return note. |
456 | */ | 451 | */ |
457 | QString note() const; | 452 | QString note() const; |
458 | /** | 453 | /** |
459 | Return translated label for note field. | 454 | Return translated label for note field. |
460 | */ | 455 | */ |
461 | static QString noteLabel(); | 456 | static QString noteLabel(); |
462 | 457 | ||
463 | /** | 458 | /** |
464 | Set product identifier. | 459 | Set product identifier. |
465 | */ | 460 | */ |
466 | void setProductId( const QString &productId ); | 461 | void setProductId( const QString &productId ); |
467 | /** | 462 | /** |
468 | Return product identifier. | 463 | Return product identifier. |
469 | */ | 464 | */ |
470 | QString productId() const; | 465 | QString productId() const; |
471 | /** | 466 | /** |
472 | Return translated label for productId field. | 467 | Return translated label for productId field. |
473 | */ | 468 | */ |
474 | static QString productIdLabel(); | 469 | static QString productIdLabel(); |
475 | 470 | ||
476 | /** | 471 | /** |
477 | Set revision date. | 472 | Set revision date. |
478 | */ | 473 | */ |
479 | void setRevision( const QDateTime &revision ); | 474 | void setRevision( const QDateTime &revision ); |
480 | /** | 475 | /** |
481 | Return revision date. | 476 | Return revision date. |
482 | */ | 477 | */ |
483 | QDateTime revision() const; | 478 | QDateTime revision() const; |
484 | /** | 479 | /** |
485 | Return translated label for revision field. | 480 | Return translated label for revision field. |
486 | */ | 481 | */ |
487 | static QString revisionLabel(); | 482 | static QString revisionLabel(); |
488 | 483 | ||
489 | /** | 484 | /** |
490 | Set sort string. | 485 | Set sort string. |
491 | */ | 486 | */ |
492 | void setSortString( const QString &sortString ); | 487 | void setSortString( const QString &sortString ); |
493 | /** | 488 | /** |
494 | Return sort string. | 489 | Return sort string. |
495 | */ | 490 | */ |
496 | QString sortString() const; | 491 | QString sortString() const; |
497 | /** | 492 | /** |
498 | Return translated label for sortString field. | 493 | Return translated label for sortString field. |
499 | */ | 494 | */ |
500 | static QString sortStringLabel(); | 495 | static QString sortStringLabel(); |
501 | 496 | ||
502 | /** | 497 | /** |
503 | Set URL. | 498 | Set URL. |
504 | */ | 499 | */ |
505 | void setUrl( const KURL &url ); | 500 | void setUrl( const KURL &url ); |
506 | /** | 501 | /** |
507 | Return URL. | 502 | Return URL. |
508 | */ | 503 | */ |
509 | KURL url() const; | 504 | KURL url() const; |
510 | /** | 505 | /** |
511 | Return translated label for url field. | 506 | Return translated label for url field. |
512 | */ | 507 | */ |
513 | static QString urlLabel(); | 508 | static QString urlLabel(); |
514 | 509 | ||
515 | /** | 510 | /** |
516 | Set security class. | 511 | Set security class. |
517 | */ | 512 | */ |
518 | void setSecrecy( const Secrecy &secrecy ); | 513 | void setSecrecy( const Secrecy &secrecy ); |
519 | /** | 514 | /** |
520 | Return security class. | 515 | Return security class. |
521 | */ | 516 | */ |
522 | Secrecy secrecy() const; | 517 | Secrecy secrecy() const; |
523 | /** | 518 | /** |
524 | Return translated label for secrecy field. | 519 | Return translated label for secrecy field. |
525 | */ | 520 | */ |
526 | static QString secrecyLabel(); | 521 | static QString secrecyLabel(); |
527 | 522 | ||
528 | /** | 523 | /** |
529 | Set logo. | 524 | Set logo. |
530 | */ | 525 | */ |
531 | void setLogo( const Picture &logo ); | 526 | void setLogo( const Picture &logo ); |
532 | /** | 527 | /** |
533 | Return logo. | 528 | Return logo. |
534 | */ | 529 | */ |
535 | Picture logo() const; | 530 | Picture logo() const; |
536 | /** | 531 | /** |
537 | Return translated label for logo field. | 532 | Return translated label for logo field. |
538 | */ | 533 | */ |
539 | static QString logoLabel(); | 534 | static QString logoLabel(); |
540 | 535 | ||
541 | /** | 536 | /** |
542 | Set photo. | 537 | Set photo. |
543 | */ | 538 | */ |
544 | void setPhoto( const Picture &photo ); | 539 | void setPhoto( const Picture &photo ); |
545 | /** | 540 | /** |
546 | Return photo. | 541 | Return photo. |
547 | */ | 542 | */ |
548 | Picture photo() const; | 543 | Picture photo() const; |
549 | /** | 544 | /** |
550 | Return translated label for photo field. | 545 | Return translated label for photo field. |
551 | */ | 546 | */ |
552 | static QString photoLabel(); | 547 | static QString photoLabel(); |
553 | 548 | ||
554 | /** | 549 | /** |
555 | Set sound. | 550 | Set sound. |
556 | */ | 551 | */ |
557 | void setSound( const Sound &sound ); | 552 | void setSound( const Sound &sound ); |
558 | /** | 553 | /** |
559 | Return sound. | 554 | Return sound. |
560 | */ | 555 | */ |
561 | Sound sound() const; | 556 | Sound sound() const; |
562 | /** | 557 | /** |
563 | Return translated label for sound field. | 558 | Return translated label for sound field. |
564 | */ | 559 | */ |
565 | static QString soundLabel(); | 560 | static QString soundLabel(); |
566 | 561 | ||
567 | /** | 562 | /** |
568 | Set agent. | 563 | Set agent. |
569 | */ | 564 | */ |
570 | void setAgent( const Agent &agent ); | 565 | void setAgent( const Agent &agent ); |
571 | /** | 566 | /** |
572 | Return agent. | 567 | Return agent. |
573 | */ | 568 | */ |
574 | Agent agent() const; | 569 | Agent agent() const; |
575 | /** | 570 | /** |
576 | Return translated label for agent field. | 571 | Return translated label for agent field. |
577 | */ | 572 | */ |
578 | static QString agentLabel(); | 573 | static QString agentLabel(); |
579 | 574 | ||
580 | /** | 575 | /** |
581 | Set name fields by parsing the given string and trying to associate the | 576 | Set name fields by parsing the given string and trying to associate the |
582 | parts of the string with according fields. This function should probably | 577 | parts of the string with according fields. This function should probably |
583 | be a bit more clever. | 578 | be a bit more clever. |
584 | */ | 579 | */ |
585 | void setNameFromString( const QString & ); | 580 | void setNameFromString( const QString & ); |
586 | 581 | ||
587 | /** | 582 | /** |
588 | Return the name of the addressee. This is calculated from all the name | 583 | Return the name of the addressee. This is calculated from all the name |
589 | fields. | 584 | fields. |
590 | */ | 585 | */ |
591 | QString realName() const; | 586 | QString realName() const; |
592 | 587 | ||
593 | /** | 588 | /** |
594 | Return the name that consists of all name parts. | 589 | Return the name that consists of all name parts. |
595 | */ | 590 | */ |
596 | QString assembledName() const; | 591 | QString assembledName() const; |
597 | 592 | ||
598 | /** | 593 | /** |
599 | Return email address including real name. | 594 | Return email address including real name. |
600 | 595 | ||
601 | @param email Email address to be used to construct the full email string. | 596 | @param email Email address to be used to construct the full email string. |
602 | If this is QString::null the preferred email address is used. | 597 | If this is QString::null the preferred email address is used. |
603 | */ | 598 | */ |
604 | QString fullEmail( const QString &email=QString::null ) const; | 599 | QString fullEmail( const QString &email=QString::null ) const; |
605 | 600 | ||
606 | /** | 601 | /** |
607 | Insert an email address. If the email address already exists in this | 602 | Insert an email address. If the email address already exists in this |
608 | addressee it is not duplicated. | 603 | addressee it is not duplicated. |
609 | 604 | ||
610 | @param email Email address | 605 | @param email Email address |
611 | @param preferred Set to true, if this is the preferred email address of | 606 | @param preferred Set to true, if this is the preferred email address of |
612 | the addressee. | 607 | the addressee. |
613 | */ | 608 | */ |
614 | void insertEmail( const QString &email, bool preferred=false ); | 609 | void insertEmail( const QString &email, bool preferred=false ); |
615 | 610 | ||
616 | /** | 611 | /** |
617 | Remove email address. If the email address doesn't exist, nothing happens. | 612 | Remove email address. If the email address doesn't exist, nothing happens. |
618 | */ | 613 | */ |
619 | void removeEmail( const QString &email ); | 614 | void removeEmail( const QString &email ); |
620 | 615 | ||
621 | /** | 616 | /** |
622 | Return preferred email address. This is the first email address or the | 617 | Return preferred email address. This is the first email address or the |
623 | last one added with @ref insertEmail() with a set preferred parameter. | 618 | last one added with @ref insertEmail() with a set preferred parameter. |
624 | */ | 619 | */ |
625 | QString preferredEmail() const; | 620 | QString preferredEmail() const; |
626 | 621 | ||
627 | /** | 622 | /** |
628 | Return list of all email addresses. | 623 | Return list of all email addresses. |
629 | */ | 624 | */ |
630 | QStringList emails() const; | 625 | QStringList emails() const; |
631 | 626 | ||
632 | /** | 627 | /** |
633 | Set the emails to @param. | 628 | Set the emails to @param. |
634 | The first email address gets the preferred one! | 629 | The first email address gets the preferred one! |
635 | @param list The list of email addresses. | 630 | @param list The list of email addresses. |
636 | */ | 631 | */ |
637 | void setEmails( const QStringList& list); | 632 | void setEmails( const QStringList& list); |
638 | 633 | ||
639 | /** | 634 | /** |
640 | Insert a phone number. If a phone number with the same id already exists | 635 | Insert a phone number. If a phone number with the same id already exists |
641 | in this addressee it is not duplicated. | 636 | in this addressee it is not duplicated. |
642 | */ | 637 | */ |
643 | void insertPhoneNumber( const PhoneNumber &phoneNumber ); | 638 | void insertPhoneNumber( const PhoneNumber &phoneNumber ); |
644 | 639 | ||
645 | /** | 640 | /** |
646 | Remove phone number. If no phone number with the given id exists for this | 641 | Remove phone number. If no phone number with the given id exists for this |
647 | addresse nothing happens. | 642 | addresse nothing happens. |
648 | */ | 643 | */ |
649 | void removePhoneNumber( const PhoneNumber &phoneNumber ); | 644 | void removePhoneNumber( const PhoneNumber &phoneNumber ); |
650 | 645 | ||
651 | /** | 646 | /** |
652 | Return phone number, which matches the given type. | 647 | Return phone number, which matches the given type. |
653 | */ | 648 | */ |
654 | PhoneNumber phoneNumber( int type ) const; | 649 | PhoneNumber phoneNumber( int type ) const; |
655 | 650 | ||
656 | bool matchPhoneNumber( QRegExp* searchExp ) const; | 651 | bool matchPhoneNumber( QRegExp* searchExp ) const; |
657 | bool matchAddress( QRegExp* searchExp ) const; | 652 | bool matchAddress( QRegExp* searchExp ) const; |
658 | 653 | ||
659 | /** | 654 | /** |
660 | Return list of all phone numbers. | 655 | Return list of all phone numbers. |
661 | */ | 656 | */ |
662 | PhoneNumber::List phoneNumbers() const; | 657 | PhoneNumber::List phoneNumbers() const; |
663 | 658 | ||
664 | /** | 659 | /** |
665 | Return list of phone numbers with a special type. | 660 | Return list of phone numbers with a special type. |
666 | */ | 661 | */ |
667 | PhoneNumber::List phoneNumbers( int type ) const; | 662 | PhoneNumber::List phoneNumbers( int type ) const; |
668 | 663 | ||
669 | /** | 664 | /** |
670 | Return phone number with the given id. | 665 | Return phone number with the given id. |
671 | */ | 666 | */ |
672 | PhoneNumber findPhoneNumber( const QString &id ) const; | 667 | PhoneNumber findPhoneNumber( const QString &id ) const; |
673 | 668 | ||
674 | /** | 669 | /** |
675 | Insert a key. If a key with the same id already exists | 670 | Insert a key. If a key with the same id already exists |
676 | in this addressee it is not duplicated. | 671 | in this addressee it is not duplicated. |
677 | */ | 672 | */ |
678 | void insertKey( const Key &key ); | 673 | void insertKey( const Key &key ); |
679 | 674 | ||
680 | /** | 675 | /** |
681 | Remove a key. If no key with the given id exists for this | 676 | Remove a key. If no key with the given id exists for this |
682 | addresse nothing happens. | 677 | addresse nothing happens. |
683 | */ | 678 | */ |
684 | void removeKey( const Key &key ); | 679 | void removeKey( const Key &key ); |
685 | 680 | ||
686 | /** | 681 | /** |
687 | Return key, which matches the given type. | 682 | Return key, which matches the given type. |
688 | If @p type == Key::Custom you can specify a string | 683 | If @p type == Key::Custom you can specify a string |
689 | that should match. If you leave the string empty, the first | 684 | that should match. If you leave the string empty, the first |
690 | key with a custom value is returned. | 685 | key with a custom value is returned. |
691 | */ | 686 | */ |
692 | Key key( int type, QString customTypeString = QString::null ) const; | 687 | Key key( int type, QString customTypeString = QString::null ) const; |
693 | 688 | ||
694 | /** | 689 | /** |
695 | Return list of all keys. | 690 | Return list of all keys. |
696 | */ | 691 | */ |
697 | Key::List keys() const; | 692 | Key::List keys() const; |
698 | 693 | ||
699 | /** | 694 | /** |
700 | Set the list of keys | 695 | Set the list of keys |
701 | @param keys The keys to be set. | 696 | @param keys The keys to be set. |
702 | */ | 697 | */ |
703 | void setKeys( const Key::List& keys); | 698 | void setKeys( const Key::List& keys); |
704 | 699 | ||
705 | /** | 700 | /** |
706 | Return list of keys with a special type. | 701 | Return list of keys with a special type. |
707 | If @p type == Key::Custom you can specify a string | 702 | If @p type == Key::Custom you can specify a string |
708 | that should match. If you leave the string empty, all custom | 703 | that should match. If you leave the string empty, all custom |
709 | keys will be returned. | 704 | keys will be returned. |
710 | */ | 705 | */ |
711 | Key::List keys( int type, QString customTypeString = QString::null ) const; | 706 | Key::List keys( int type, QString customTypeString = QString::null ) const; |
712 | 707 | ||
713 | /** | 708 | /** |
714 | Return key with the given id. | 709 | Return key with the given id. |
715 | */ | 710 | */ |
716 | Key findKey( const QString &id ) const; | 711 | Key findKey( const QString &id ) const; |
717 | 712 | ||
718 | /** | 713 | /** |
719 | Insert an address. If an address with the same id already exists | 714 | Insert an address. If an address with the same id already exists |
720 | in this addressee it is not duplicated. | 715 | in this addressee it is not duplicated. |
721 | */ | 716 | */ |
722 | void insertAddress( const Address &address ); | 717 | void insertAddress( const Address &address ); |
723 | 718 | ||
724 | /** | 719 | /** |
725 | Remove address. If no address with the given id exists for this | 720 | Remove address. If no address with the given id exists for this |
726 | addresse nothing happens. | 721 | addresse nothing happens. |
727 | */ | 722 | */ |
728 | void removeAddress( const Address &address ); | 723 | void removeAddress( const Address &address ); |
729 | 724 | ||
730 | /** | 725 | /** |
731 | Return address, which matches the given type. | 726 | Return address, which matches the given type. |
732 | */ | 727 | */ |
733 | Address address( int type ) const; | 728 | Address address( int type ) const; |
734 | 729 | ||
735 | /** | 730 | /** |
736 | Return list of all addresses. | 731 | Return list of all addresses. |
737 | */ | 732 | */ |
738 | Address::List addresses() const; | 733 | Address::List addresses() const; |
739 | 734 | ||
740 | /** | 735 | /** |
741 | Return list of addresses with a special type. | 736 | Return list of addresses with a special type. |
742 | */ | 737 | */ |
743 | Address::List addresses( int type ) const; | 738 | Address::List addresses( int type ) const; |
744 | 739 | ||
745 | /** | 740 | /** |
746 | Return address with the given id. | 741 | Return address with the given id. |
747 | */ | 742 | */ |
748 | Address findAddress( const QString &id ) const; | 743 | Address findAddress( const QString &id ) const; |
749 | 744 | ||
750 | /** | 745 | /** |
751 | Insert category. If the category already exists it is not duplicated. | 746 | Insert category. If the category already exists it is not duplicated. |
752 | */ | 747 | */ |
753 | void insertCategory( const QString & ); | 748 | void insertCategory( const QString & ); |
754 | 749 | ||
755 | /** | 750 | /** |
756 | Remove category. | 751 | Remove category. |
757 | */ | 752 | */ |
758 | void removeCategory( const QString & ); | 753 | void removeCategory( const QString & ); |
759 | 754 | ||
760 | /** | 755 | /** |
761 | Return, if addressee has the given category. | 756 | Return, if addressee has the given category. |
762 | */ | 757 | */ |
763 | bool hasCategory( const QString & ) const; | 758 | bool hasCategory( const QString & ) const; |
764 | 759 | ||
765 | /** | 760 | /** |
766 | Set categories to given value. | 761 | Set categories to given value. |
767 | */ | 762 | */ |
768 | void setCategories( const QStringList & ); | 763 | void setCategories( const QStringList & ); |
769 | 764 | ||
770 | /** | 765 | /** |
771 | Return list of all set categories. | 766 | Return list of all set categories. |
772 | */ | 767 | */ |
773 | QStringList categories() const; | 768 | QStringList categories() const; |
774 | 769 | ||
775 | /** | 770 | /** |
776 | Insert custom entry. The entry is identified by the name of the inserting | 771 | Insert custom entry. The entry is identified by the name of the inserting |
777 | application and a unique name. If an entry with the given app and name | 772 | application and a unique name. If an entry with the given app and name |
778 | already exists its value is replaced with the new given value. | 773 | already exists its value is replaced with the new given value. |
779 | */ | 774 | */ |
780 | void insertCustom( const QString &app, const QString &name, | 775 | void insertCustom( const QString &app, const QString &name, |
781 | const QString &value ); | 776 | const QString &value ); |
782 | 777 | ||
783 | /** | 778 | /** |
784 | Remove custom entry. | 779 | Remove custom entry. |
785 | */ | 780 | */ |
786 | void removeCustom( const QString &app, const QString &name ); | 781 | void removeCustom( const QString &app, const QString &name ); |
787 | 782 | ||
788 | /** | 783 | /** |
789 | Return value of custom entry, identified by app and entry name. | 784 | Return value of custom entry, identified by app and entry name. |
790 | */ | 785 | */ |
791 | QString custom( const QString &app, const QString &name ) const; | 786 | QString custom( const QString &app, const QString &name ) const; |
792 | 787 | ||
793 | /** | 788 | /** |
794 | Set all custom entries. | 789 | Set all custom entries. |
795 | */ | 790 | */ |
796 | void setCustoms( const QStringList & ); | 791 | void setCustoms( const QStringList & ); |
797 | 792 | ||
798 | /** | 793 | /** |
799 | Return list of all custom entries. | 794 | Return list of all custom entries. |
800 | */ | 795 | */ |
801 | QStringList customs() const; | 796 | QStringList customs() const; |
802 | 797 | ||
803 | /** | 798 | /** |
804 | Parse full email address. The result is given back in fullName and email. | 799 | Parse full email address. The result is given back in fullName and email. |
805 | */ | 800 | */ |
806 | static void parseEmailAddress( const QString &rawEmail, QString &fullName, | 801 | static void parseEmailAddress( const QString &rawEmail, QString &fullName, |
807 | QString &email ); | 802 | QString &email ); |
808 | 803 | ||
809 | /** | 804 | /** |
810 | Debug output. | 805 | Debug output. |
811 | */ | 806 | */ |
812 | void dump() const; | 807 | void dump() const; |
813 | 808 | ||
814 | /** | 809 | /** |
815 | Returns string representation of the addressee. | 810 | Returns string representation of the addressee. |
816 | */ | 811 | */ |
817 | QString asString() const; | 812 | QString asString() const; |
818 | 813 | ||
819 | /** | 814 | /** |
820 | Set resource where the addressee is from. | 815 | Set resource where the addressee is from. |
821 | */ | 816 | */ |
822 | void setResource( Resource *resource ); | 817 | void setResource( Resource *resource ); |
823 | 818 | ||
824 | /** | 819 | /** |
825 | Return pointer to resource. | 820 | Return pointer to resource. |
826 | */ | 821 | */ |
827 | Resource *resource() const; | 822 | Resource *resource() const; |
828 | 823 | ||
829 | /** | 824 | /** |
830 | Return resourcelabel. | 825 | Return resourcelabel. |
831 | */ | 826 | */ |
832 | //US | 827 | //US |
833 | static QString resourceLabel(); | 828 | static QString resourceLabel(); |
834 | static QString categoryLabel(); | 829 | static QString categoryLabel(); |
835 | /** | 830 | /** |
836 | Mark addressee as changed. | 831 | Mark addressee as changed. |
837 | */ | 832 | */ |
838 | void setChanged( bool value ); | 833 | void setChanged( bool value ); |
839 | 834 | ||
840 | /** | 835 | /** |
841 | Return whether the addressee is changed. | 836 | Return whether the addressee is changed. |
842 | */ | 837 | */ |
843 | bool changed() const; | 838 | bool changed() const; |
844 | 839 | ||
845 | void setTagged( bool value ); | 840 | void setTagged( bool value ); |
846 | bool tagged() const; | 841 | bool tagged() const; |
847 | 842 | ||
848 | private: | 843 | private: |
849 | Addressee copy(); | 844 | Addressee copy(); |
850 | void detach(); | 845 | void detach(); |
851 | 846 | ||
852 | struct AddresseeData; | 847 | struct AddresseeData; |
853 | mutable KSharedPtr<AddresseeData> mData; | 848 | mutable KSharedPtr<AddresseeData> mData; |
854 | }; | 849 | }; |
855 | 850 | ||
856 | QDataStream &operator<<( QDataStream &, const Addressee & ); | 851 | QDataStream &operator<<( QDataStream &, const Addressee & ); |
857 | QDataStream &operator>>( QDataStream &, Addressee & ); | 852 | QDataStream &operator>>( QDataStream &, Addressee & ); |
858 | 853 | ||
859 | } | 854 | } |
860 | 855 | ||
861 | #endif | 856 | #endif |
diff --git a/kabc/field.cpp b/kabc/field.cpp index 6f2b307..7c6d7a9 100644 --- a/kabc/field.cpp +++ b/kabc/field.cpp | |||
@@ -1,596 +1,584 @@ | |||
1 | /*** Warning! This file has been generated by the script makeaddressee ***/ | 1 | /*** Warning! This file has been generated by the script makeaddressee ***/ |
2 | /* | 2 | /* |
3 | This file is part of libkabc. | 3 | This file is part of libkabc. |
4 | Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> | 4 | Copyright (c) 2002 Cornelius Schumacher <schumacher@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | /* | 22 | /* |
23 | Enhanced Version of the file for platform independent KDE tools. | 23 | Enhanced Version of the file for platform independent KDE tools. |
24 | Copyright (c) 2004 Ulf Schenk | 24 | Copyright (c) 2004 Ulf Schenk |
25 | 25 | ||
26 | $Id$ | 26 | $Id$ |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #include <klocale.h> | 29 | #include <klocale.h> |
30 | #include <kconfig.h> | 30 | #include <kconfig.h> |
31 | #include <kconfigbase.h> | 31 | #include <kconfigbase.h> |
32 | #include <kglobal.h> | 32 | #include <kglobal.h> |
33 | 33 | ||
34 | #include "field.h" | 34 | #include "field.h" |
35 | #include "resource.h" | 35 | #include "resource.h" |
36 | 36 | ||
37 | using namespace KABC; | 37 | using namespace KABC; |
38 | 38 | ||
39 | class Field::FieldImpl | 39 | class Field::FieldImpl |
40 | { | 40 | { |
41 | public: | 41 | public: |
42 | FieldImpl( int fieldId, int category = 0, | 42 | FieldImpl( int fieldId, int category = 0, |
43 | const QString &label = QString::null, | 43 | const QString &label = QString::null, |
44 | const QString &key = QString::null, | 44 | const QString &key = QString::null, |
45 | const QString &app = QString::null ) | 45 | const QString &app = QString::null ) |
46 | : mFieldId( fieldId ), mCategory( category ), mLabel( label ), | 46 | : mFieldId( fieldId ), mCategory( category ), mLabel( label ), |
47 | mKey( key ), mApp( app ) {} | 47 | mKey( key ), mApp( app ) {} |
48 | 48 | ||
49 | enum FieldId | 49 | enum FieldId |
50 | { | 50 | { |
51 | CustomField, | 51 | CustomField, |
52 | FormattedName, | 52 | FormattedName, |
53 | FamilyName, | 53 | FamilyName, |
54 | GivenName, | 54 | GivenName, |
55 | AdditionalName, | 55 | AdditionalName, |
56 | Prefix, | 56 | Prefix, |
57 | Suffix, | 57 | Suffix, |
58 | NickName, | 58 | NickName, |
59 | Birthday, | 59 | Birthday, |
60 | Category, | 60 | Category, |
61 | HomeAddressStreet, | 61 | HomeAddressStreet, |
62 | HomeAddressLocality, | 62 | HomeAddressLocality, |
63 | HomeAddressRegion, | 63 | HomeAddressRegion, |
64 | HomeAddressPostalCode, | 64 | HomeAddressPostalCode, |
65 | HomeAddressCountry, | 65 | HomeAddressCountry, |
66 | HomeAddressLabel, | 66 | HomeAddressLabel, |
67 | BusinessAddressStreet, | 67 | BusinessAddressStreet, |
68 | BusinessAddressLocality, | 68 | BusinessAddressLocality, |
69 | BusinessAddressRegion, | 69 | BusinessAddressRegion, |
70 | BusinessAddressPostalCode, | 70 | BusinessAddressPostalCode, |
71 | BusinessAddressCountry, | 71 | BusinessAddressCountry, |
72 | BusinessAddressLabel, | 72 | BusinessAddressLabel, |
73 | HomePhone, | 73 | HomePhone, |
74 | BusinessPhone, | 74 | BusinessPhone, |
75 | MobilePhone, | 75 | MobilePhone, |
76 | HomeFax, | 76 | HomeFax, |
77 | BusinessFax, | 77 | BusinessFax, |
78 | CarPhone, | ||
79 | Isdn, | 78 | Isdn, |
80 | Pager, | 79 | Pager, |
81 | Email, | 80 | Email, |
82 | Mailer, | 81 | Mailer, |
83 | Title, | 82 | Title, |
84 | Role, | 83 | Role, |
85 | Organization, | 84 | Organization, |
86 | Note, | 85 | Note, |
87 | Url, | 86 | Url, |
88 | Resource, | 87 | Resource, |
89 | Sip, | 88 | Sip, |
90 | MobileWorkPhone, | 89 | MobileWorkPhone, |
91 | MobileHomePhone, | ||
92 | OtherPhone | 90 | OtherPhone |
93 | }; | 91 | }; |
94 | 92 | ||
95 | int fieldId() { return mFieldId; } | 93 | int fieldId() { return mFieldId; } |
96 | int category() { return mCategory; } | 94 | int category() { return mCategory; } |
97 | 95 | ||
98 | QString label() { return mLabel; } | 96 | QString label() { return mLabel; } |
99 | QString key() { return mKey; } | 97 | QString key() { return mKey; } |
100 | QString app() { return mApp; } | 98 | QString app() { return mApp; } |
101 | 99 | ||
102 | private: | 100 | private: |
103 | int mFieldId; | 101 | int mFieldId; |
104 | int mCategory; | 102 | int mCategory; |
105 | 103 | ||
106 | QString mLabel; | 104 | QString mLabel; |
107 | QString mKey; | 105 | QString mKey; |
108 | QString mApp; | 106 | QString mApp; |
109 | }; | 107 | }; |
110 | 108 | ||
111 | 109 | ||
112 | Field::List Field::mAllFields; | 110 | Field::List Field::mAllFields; |
113 | Field::List Field::mDefaultFields; | 111 | Field::List Field::mDefaultFields; |
114 | Field::List Field::mCustomFields; | 112 | Field::List Field::mCustomFields; |
115 | 113 | ||
116 | 114 | ||
117 | Field::Field( FieldImpl *impl ) | 115 | Field::Field( FieldImpl *impl ) |
118 | { | 116 | { |
119 | mImpl = impl; | 117 | mImpl = impl; |
120 | } | 118 | } |
121 | 119 | ||
122 | Field::~Field() | 120 | Field::~Field() |
123 | { | 121 | { |
124 | delete mImpl; | 122 | delete mImpl; |
125 | } | 123 | } |
126 | 124 | ||
127 | QString Field::label() | 125 | QString Field::label() |
128 | { | 126 | { |
129 | switch ( mImpl->fieldId() ) { | 127 | switch ( mImpl->fieldId() ) { |
130 | case FieldImpl::FormattedName: | 128 | case FieldImpl::FormattedName: |
131 | return Addressee::formattedNameLabel(); | 129 | return Addressee::formattedNameLabel(); |
132 | case FieldImpl::FamilyName: | 130 | case FieldImpl::FamilyName: |
133 | return Addressee::familyNameLabel(); | 131 | return Addressee::familyNameLabel(); |
134 | case FieldImpl::GivenName: | 132 | case FieldImpl::GivenName: |
135 | return Addressee::givenNameLabel(); | 133 | return Addressee::givenNameLabel(); |
136 | case FieldImpl::AdditionalName: | 134 | case FieldImpl::AdditionalName: |
137 | return Addressee::additionalNameLabel(); | 135 | return Addressee::additionalNameLabel(); |
138 | case FieldImpl::Prefix: | 136 | case FieldImpl::Prefix: |
139 | return Addressee::prefixLabel(); | 137 | return Addressee::prefixLabel(); |
140 | case FieldImpl::Suffix: | 138 | case FieldImpl::Suffix: |
141 | return Addressee::suffixLabel(); | 139 | return Addressee::suffixLabel(); |
142 | case FieldImpl::NickName: | 140 | case FieldImpl::NickName: |
143 | return Addressee::nickNameLabel(); | 141 | return Addressee::nickNameLabel(); |
144 | case FieldImpl::Birthday: | 142 | case FieldImpl::Birthday: |
145 | return Addressee::birthdayLabel(); | 143 | return Addressee::birthdayLabel(); |
146 | case FieldImpl::HomeAddressStreet: | 144 | case FieldImpl::HomeAddressStreet: |
147 | return Addressee::homeAddressStreetLabel(); | 145 | return Addressee::homeAddressStreetLabel(); |
148 | case FieldImpl::HomeAddressLocality: | 146 | case FieldImpl::HomeAddressLocality: |
149 | return Addressee::homeAddressLocalityLabel(); | 147 | return Addressee::homeAddressLocalityLabel(); |
150 | case FieldImpl::HomeAddressRegion: | 148 | case FieldImpl::HomeAddressRegion: |
151 | return Addressee::homeAddressRegionLabel(); | 149 | return Addressee::homeAddressRegionLabel(); |
152 | case FieldImpl::HomeAddressPostalCode: | 150 | case FieldImpl::HomeAddressPostalCode: |
153 | return Addressee::homeAddressPostalCodeLabel(); | 151 | return Addressee::homeAddressPostalCodeLabel(); |
154 | case FieldImpl::HomeAddressCountry: | 152 | case FieldImpl::HomeAddressCountry: |
155 | return Addressee::homeAddressCountryLabel(); | 153 | return Addressee::homeAddressCountryLabel(); |
156 | case FieldImpl::HomeAddressLabel: | 154 | case FieldImpl::HomeAddressLabel: |
157 | return Addressee::homeAddressLabelLabel(); | 155 | return Addressee::homeAddressLabelLabel(); |
158 | case FieldImpl::BusinessAddressStreet: | 156 | case FieldImpl::BusinessAddressStreet: |
159 | return Addressee::businessAddressStreetLabel(); | 157 | return Addressee::businessAddressStreetLabel(); |
160 | case FieldImpl::BusinessAddressLocality: | 158 | case FieldImpl::BusinessAddressLocality: |
161 | return Addressee::businessAddressLocalityLabel(); | 159 | return Addressee::businessAddressLocalityLabel(); |
162 | case FieldImpl::BusinessAddressRegion: | 160 | case FieldImpl::BusinessAddressRegion: |
163 | return Addressee::businessAddressRegionLabel(); | 161 | return Addressee::businessAddressRegionLabel(); |
164 | case FieldImpl::BusinessAddressPostalCode: | 162 | case FieldImpl::BusinessAddressPostalCode: |
165 | return Addressee::businessAddressPostalCodeLabel(); | 163 | return Addressee::businessAddressPostalCodeLabel(); |
166 | case FieldImpl::BusinessAddressCountry: | 164 | case FieldImpl::BusinessAddressCountry: |
167 | return Addressee::businessAddressCountryLabel(); | 165 | return Addressee::businessAddressCountryLabel(); |
168 | case FieldImpl::BusinessAddressLabel: | 166 | case FieldImpl::BusinessAddressLabel: |
169 | return Addressee::businessAddressLabelLabel(); | 167 | return Addressee::businessAddressLabelLabel(); |
170 | case FieldImpl::HomePhone: | 168 | case FieldImpl::HomePhone: |
171 | return Addressee::homePhoneLabel(); | 169 | return Addressee::homePhoneLabel(); |
172 | case FieldImpl::BusinessPhone: | 170 | case FieldImpl::BusinessPhone: |
173 | return Addressee::businessPhoneLabel(); | 171 | return Addressee::businessPhoneLabel(); |
174 | case FieldImpl::MobilePhone: | 172 | case FieldImpl::MobilePhone: |
175 | return Addressee::mobilePhoneLabel(); | 173 | return Addressee::mobilePhoneLabel(); |
176 | case FieldImpl::MobileHomePhone: | ||
177 | return Addressee::mobileHomePhoneLabel(); | ||
178 | case FieldImpl::MobileWorkPhone: | 174 | case FieldImpl::MobileWorkPhone: |
179 | return Addressee::mobileWorkPhoneLabel(); | 175 | return Addressee::mobileWorkPhoneLabel(); |
180 | case FieldImpl::HomeFax: | 176 | case FieldImpl::HomeFax: |
181 | return Addressee::homeFaxLabel(); | 177 | return Addressee::homeFaxLabel(); |
182 | case FieldImpl::BusinessFax: | 178 | case FieldImpl::BusinessFax: |
183 | return Addressee::businessFaxLabel(); | 179 | return Addressee::businessFaxLabel(); |
184 | case FieldImpl::CarPhone: | ||
185 | return Addressee::carPhoneLabel(); | ||
186 | case FieldImpl::Isdn: | 180 | case FieldImpl::Isdn: |
187 | return Addressee::isdnLabel(); | 181 | return Addressee::isdnLabel(); |
188 | case FieldImpl::Pager: | 182 | case FieldImpl::Pager: |
189 | return Addressee::pagerLabel(); | 183 | return Addressee::pagerLabel(); |
190 | case FieldImpl::Email: | 184 | case FieldImpl::Email: |
191 | return Addressee::emailLabel(); | 185 | return Addressee::emailLabel(); |
192 | case FieldImpl::Mailer: | 186 | case FieldImpl::Mailer: |
193 | return Addressee::mailerLabel(); | 187 | return Addressee::mailerLabel(); |
194 | case FieldImpl::Title: | 188 | case FieldImpl::Title: |
195 | return Addressee::titleLabel(); | 189 | return Addressee::titleLabel(); |
196 | case FieldImpl::Role: | 190 | case FieldImpl::Role: |
197 | return Addressee::roleLabel(); | 191 | return Addressee::roleLabel(); |
198 | case FieldImpl::Organization: | 192 | case FieldImpl::Organization: |
199 | return Addressee::organizationLabel(); | 193 | return Addressee::organizationLabel(); |
200 | case FieldImpl::Note: | 194 | case FieldImpl::Note: |
201 | return Addressee::noteLabel(); | 195 | return Addressee::noteLabel(); |
202 | case FieldImpl::Url: | 196 | case FieldImpl::Url: |
203 | return Addressee::urlLabel(); | 197 | return Addressee::urlLabel(); |
204 | case FieldImpl::Resource: | 198 | case FieldImpl::Resource: |
205 | return Addressee::resourceLabel(); | 199 | return Addressee::resourceLabel(); |
206 | case FieldImpl::Category: | 200 | case FieldImpl::Category: |
207 | return Addressee::categoryLabel(); | 201 | return Addressee::categoryLabel(); |
208 | case FieldImpl::Sip: | 202 | case FieldImpl::Sip: |
209 | return Addressee::sipLabel(); | 203 | return Addressee::sipLabel(); |
210 | case FieldImpl::OtherPhone: | 204 | case FieldImpl::OtherPhone: |
211 | return Addressee::otherPhoneLabel(); | 205 | return Addressee::otherPhoneLabel(); |
212 | case FieldImpl::CustomField: | 206 | case FieldImpl::CustomField: |
213 | return mImpl->label(); | 207 | return mImpl->label(); |
214 | default: | 208 | default: |
215 | return i18n("Unknown Field"); | 209 | return i18n("Unknown Field"); |
216 | } | 210 | } |
217 | } | 211 | } |
218 | 212 | ||
219 | int Field::category() | 213 | int Field::category() |
220 | { | 214 | { |
221 | return mImpl->category(); | 215 | return mImpl->category(); |
222 | } | 216 | } |
223 | 217 | ||
224 | QString Field::categoryLabel( int category ) | 218 | QString Field::categoryLabel( int category ) |
225 | { | 219 | { |
226 | switch ( category ) { | 220 | switch ( category ) { |
227 | case All: | 221 | case All: |
228 | return i18n("All"); | 222 | return i18n("All"); |
229 | case Frequent: | 223 | case Frequent: |
230 | return i18n("Frequent"); | 224 | return i18n("Frequent"); |
231 | case Address: | 225 | case Address: |
232 | return i18n("Address"); | 226 | return i18n("Address"); |
233 | case Email: | 227 | case Email: |
234 | return i18n("Email"); | 228 | return i18n("Email"); |
235 | case Personal: | 229 | case Personal: |
236 | return i18n("Personal"); | 230 | return i18n("Personal"); |
237 | case Organization: | 231 | case Organization: |
238 | return i18n("Organization"); | 232 | return i18n("Organization"); |
239 | case CustomCategory: | 233 | case CustomCategory: |
240 | return i18n("Custom"); | 234 | return i18n("Custom"); |
241 | default: | 235 | default: |
242 | return i18n("Undefined"); | 236 | return i18n("Undefined"); |
243 | } | 237 | } |
244 | } | 238 | } |
245 | 239 | ||
246 | QString Field::value( const KABC::Addressee &a ) | 240 | QString Field::value( const KABC::Addressee &a ) |
247 | { | 241 | { |
248 | switch ( mImpl->fieldId() ) { | 242 | switch ( mImpl->fieldId() ) { |
249 | case FieldImpl::FormattedName: | 243 | case FieldImpl::FormattedName: |
250 | return a.formattedName(); | 244 | return a.formattedName(); |
251 | case FieldImpl::FamilyName: | 245 | case FieldImpl::FamilyName: |
252 | return a.familyName(); | 246 | return a.familyName(); |
253 | case FieldImpl::GivenName: | 247 | case FieldImpl::GivenName: |
254 | return a.givenName(); | 248 | return a.givenName(); |
255 | case FieldImpl::AdditionalName: | 249 | case FieldImpl::AdditionalName: |
256 | return a.additionalName(); | 250 | return a.additionalName(); |
257 | case FieldImpl::Prefix: | 251 | case FieldImpl::Prefix: |
258 | return a.prefix(); | 252 | return a.prefix(); |
259 | case FieldImpl::Suffix: | 253 | case FieldImpl::Suffix: |
260 | return a.suffix(); | 254 | return a.suffix(); |
261 | case FieldImpl::NickName: | 255 | case FieldImpl::NickName: |
262 | return a.nickName(); | 256 | return a.nickName(); |
263 | case FieldImpl::Mailer: | 257 | case FieldImpl::Mailer: |
264 | return a.mailer(); | 258 | return a.mailer(); |
265 | case FieldImpl::Title: | 259 | case FieldImpl::Title: |
266 | return a.title(); | 260 | return a.title(); |
267 | case FieldImpl::Role: | 261 | case FieldImpl::Role: |
268 | return a.role(); | 262 | return a.role(); |
269 | case FieldImpl::Organization: | 263 | case FieldImpl::Organization: |
270 | return a.organization(); | 264 | return a.organization(); |
271 | case FieldImpl::Note: | 265 | case FieldImpl::Note: |
272 | return a.note(); | 266 | return a.note(); |
273 | case FieldImpl::Email: | 267 | case FieldImpl::Email: |
274 | return a.preferredEmail(); | 268 | return a.preferredEmail(); |
275 | case FieldImpl::Birthday: | 269 | case FieldImpl::Birthday: |
276 | if ( a.birthday().isValid() ) { | 270 | if ( a.birthday().isValid() ) { |
277 | //the generated code had the following format: return a.birthday().date().toString( Qt::ISODate ); | 271 | //the generated code had the following format: return a.birthday().date().toString( Qt::ISODate ); |
278 | // But Qt::IsoDate was not specified. | 272 | // But Qt::IsoDate was not specified. |
279 | // QString _oldFormat = KGlobal::locale()->dateFormat(); | 273 | // QString _oldFormat = KGlobal::locale()->dateFormat(); |
280 | // KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate | 274 | // KGlobal::locale()->setDateFormat("%Y-%m-%d"); // = Qt::ISODate |
281 | QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false, KLocale::ISODate); | 275 | QString dt = KGlobal::locale()->formatDate(a.birthday().date(), false, KLocale::ISODate); |
282 | // KGlobal::locale()->setDateFormat(_oldFormat); | 276 | // KGlobal::locale()->setDateFormat(_oldFormat); |
283 | return dt; | 277 | return dt; |
284 | } | 278 | } |
285 | else | 279 | else |
286 | return QString::null; | 280 | return QString::null; |
287 | case FieldImpl::Url: | 281 | case FieldImpl::Url: |
288 | return a.url().prettyURL(); | 282 | return a.url().prettyURL(); |
289 | //US | 283 | //US |
290 | case FieldImpl::Resource: | 284 | case FieldImpl::Resource: |
291 | return a.resource()->resourceName(); | 285 | return a.resource()->resourceName(); |
292 | case FieldImpl::Category: | 286 | case FieldImpl::Category: |
293 | return a.categories().join(","); | 287 | return a.categories().join(","); |
294 | case FieldImpl::HomePhone: | 288 | case FieldImpl::HomePhone: |
295 | return a.phoneNumber( PhoneNumber::Home| PhoneNumber::Pref ).number(); | 289 | return a.phoneNumber( PhoneNumber::Home| PhoneNumber::Pref ).number(); |
296 | case FieldImpl::BusinessPhone: | 290 | case FieldImpl::BusinessPhone: |
297 | return a.phoneNumber( PhoneNumber::Work| PhoneNumber::Pref ).number(); | 291 | return a.phoneNumber( PhoneNumber::Work| PhoneNumber::Pref ).number(); |
298 | case FieldImpl::MobilePhone: | 292 | case FieldImpl::MobilePhone: |
299 | return a.phoneNumber( PhoneNumber::Cell ).number(); | 293 | return a.phoneNumber( PhoneNumber::Cell ).number(); |
300 | case FieldImpl::MobileWorkPhone: | 294 | case FieldImpl::MobileWorkPhone: |
301 | return a.phoneNumber( PhoneNumber::Car ).number(); | 295 | return a.phoneNumber( PhoneNumber::Car ).number(); |
302 | case FieldImpl::MobileHomePhone: | ||
303 | return a.phoneNumber( PhoneNumber::Cell ).number(); | ||
304 | case FieldImpl::HomeFax: | 296 | case FieldImpl::HomeFax: |
305 | return a.phoneNumber( PhoneNumber::Home | PhoneNumber::Fax ).number(); | 297 | return a.phoneNumber( PhoneNumber::Home | PhoneNumber::Fax ).number(); |
306 | case FieldImpl::BusinessFax: | 298 | case FieldImpl::BusinessFax: |
307 | return a.phoneNumber( PhoneNumber::Work | PhoneNumber::Fax ).number(); | 299 | return a.phoneNumber( PhoneNumber::Work | PhoneNumber::Fax ).number(); |
308 | case FieldImpl::CarPhone: | ||
309 | return a.phoneNumber( PhoneNumber::Car ).number(); | ||
310 | case FieldImpl::Isdn: | 300 | case FieldImpl::Isdn: |
311 | return a.phoneNumber( PhoneNumber::Isdn ).number(); | 301 | return a.phoneNumber( PhoneNumber::Isdn ).number(); |
312 | case FieldImpl::Pager: | 302 | case FieldImpl::Pager: |
313 | return a.phoneNumber( PhoneNumber::Pager ).number(); | 303 | return a.phoneNumber( PhoneNumber::Pager ).number(); |
314 | case FieldImpl::Sip: | 304 | case FieldImpl::Sip: |
315 | return a.phoneNumber( PhoneNumber::Pcs | PhoneNumber::Pref ).number(); | 305 | return a.phoneNumber( PhoneNumber::Pcs | PhoneNumber::Pref ).number(); |
316 | case FieldImpl::OtherPhone: | 306 | case FieldImpl::OtherPhone: |
317 | return a.phoneNumber( PhoneNumber::Voice ).number(); | 307 | return a.phoneNumber( PhoneNumber::Voice ).number(); |
318 | case FieldImpl::HomeAddressStreet: | 308 | case FieldImpl::HomeAddressStreet: |
319 | return a.address( Address::Home ).street(); | 309 | return a.address( Address::Home ).street(); |
320 | case FieldImpl::HomeAddressLocality: | 310 | case FieldImpl::HomeAddressLocality: |
321 | return a.address( Address::Home ).locality(); | 311 | return a.address( Address::Home ).locality(); |
322 | case FieldImpl::HomeAddressRegion: | 312 | case FieldImpl::HomeAddressRegion: |
323 | return a.address( Address::Home ).region(); | 313 | return a.address( Address::Home ).region(); |
324 | case FieldImpl::HomeAddressPostalCode: | 314 | case FieldImpl::HomeAddressPostalCode: |
325 | return a.address( Address::Home ).postalCode(); | 315 | return a.address( Address::Home ).postalCode(); |
326 | case FieldImpl::HomeAddressCountry: | 316 | case FieldImpl::HomeAddressCountry: |
327 | return a.address( Address::Home ).country(); | 317 | return a.address( Address::Home ).country(); |
328 | case FieldImpl::BusinessAddressStreet: | 318 | case FieldImpl::BusinessAddressStreet: |
329 | return a.address( Address::Work ).street(); | 319 | return a.address( Address::Work ).street(); |
330 | case FieldImpl::BusinessAddressLocality: | 320 | case FieldImpl::BusinessAddressLocality: |
331 | return a.address( Address::Work ).locality(); | 321 | return a.address( Address::Work ).locality(); |
332 | case FieldImpl::BusinessAddressRegion: | 322 | case FieldImpl::BusinessAddressRegion: |
333 | return a.address( Address::Work ).region(); | 323 | return a.address( Address::Work ).region(); |
334 | case FieldImpl::BusinessAddressPostalCode: | 324 | case FieldImpl::BusinessAddressPostalCode: |
335 | return a.address( Address::Work ).postalCode(); | 325 | return a.address( Address::Work ).postalCode(); |
336 | case FieldImpl::BusinessAddressCountry: | 326 | case FieldImpl::BusinessAddressCountry: |
337 | return a.address( Address::Work ).country(); | 327 | return a.address( Address::Work ).country(); |
338 | case FieldImpl::CustomField: | 328 | case FieldImpl::CustomField: |
339 | return a.custom( mImpl->app(), mImpl->key() ); | 329 | return a.custom( mImpl->app(), mImpl->key() ); |
340 | default: | 330 | default: |
341 | return QString::null; | 331 | return QString::null; |
342 | } | 332 | } |
343 | } | 333 | } |
344 | 334 | ||
345 | bool Field::setValue( KABC::Addressee &a, const QString &value ) | 335 | bool Field::setValue( KABC::Addressee &a, const QString &value ) |
346 | { | 336 | { |
347 | switch ( mImpl->fieldId() ) { | 337 | switch ( mImpl->fieldId() ) { |
348 | case FieldImpl::FormattedName: | 338 | case FieldImpl::FormattedName: |
349 | a.setFormattedName( value ); | 339 | a.setFormattedName( value ); |
350 | return true; | 340 | return true; |
351 | case FieldImpl::FamilyName: | 341 | case FieldImpl::FamilyName: |
352 | a.setFamilyName( value ); | 342 | a.setFamilyName( value ); |
353 | return true; | 343 | return true; |
354 | case FieldImpl::GivenName: | 344 | case FieldImpl::GivenName: |
355 | a.setGivenName( value ); | 345 | a.setGivenName( value ); |
356 | return true; | 346 | return true; |
357 | case FieldImpl::AdditionalName: | 347 | case FieldImpl::AdditionalName: |
358 | a.setAdditionalName( value ); | 348 | a.setAdditionalName( value ); |
359 | return true; | 349 | return true; |
360 | case FieldImpl::Prefix: | 350 | case FieldImpl::Prefix: |
361 | a.setPrefix( value ); | 351 | a.setPrefix( value ); |
362 | return true; | 352 | return true; |
363 | case FieldImpl::Suffix: | 353 | case FieldImpl::Suffix: |
364 | a.setSuffix( value ); | 354 | a.setSuffix( value ); |
365 | return true; | 355 | return true; |
366 | case FieldImpl::NickName: | 356 | case FieldImpl::NickName: |
367 | a.setNickName( value ); | 357 | a.setNickName( value ); |
368 | return true; | 358 | return true; |
369 | case FieldImpl::Mailer: | 359 | case FieldImpl::Mailer: |
370 | a.setMailer( value ); | 360 | a.setMailer( value ); |
371 | return true; | 361 | return true; |
372 | case FieldImpl::Title: | 362 | case FieldImpl::Title: |
373 | a.setTitle( value ); | 363 | a.setTitle( value ); |
374 | return true; | 364 | return true; |
375 | case FieldImpl::Role: | 365 | case FieldImpl::Role: |
376 | a.setRole( value ); | 366 | a.setRole( value ); |
377 | return true; | 367 | return true; |
378 | case FieldImpl::Organization: | 368 | case FieldImpl::Organization: |
379 | a.setOrganization( value ); | 369 | a.setOrganization( value ); |
380 | return true; | 370 | return true; |
381 | case FieldImpl::Note: | 371 | case FieldImpl::Note: |
382 | a.setNote( value ); | 372 | a.setNote( value ); |
383 | return true; | 373 | return true; |
384 | case FieldImpl::Birthday: | 374 | case FieldImpl::Birthday: |
385 | //US | 375 | //US |
386 | //the generated code had the following format: return a.setBirthday( QDate::fromString( value, Qt::ISODate ) ); | 376 | //the generated code had the following format: return a.setBirthday( QDate::fromString( value, Qt::ISODate ) ); |
387 | // But Qt::IsoDate and QDate::fromString was not specified. Do I have the wrong QT version ? | 377 | // But Qt::IsoDate and QDate::fromString was not specified. Do I have the wrong QT version ? |
388 | { | 378 | { |
389 | QDate dt = KGlobal::locale()->readDate( value, "%Y-%m-%d"); // = Qt::ISODate | 379 | QDate dt = KGlobal::locale()->readDate( value, "%Y-%m-%d"); // = Qt::ISODate |
390 | a.setBirthday(dt); | 380 | a.setBirthday(dt); |
391 | } | 381 | } |
392 | return true; | 382 | return true; |
393 | case FieldImpl::CustomField: | 383 | case FieldImpl::CustomField: |
394 | a.insertCustom( mImpl->app(), mImpl->key(), value ); | 384 | a.insertCustom( mImpl->app(), mImpl->key(), value ); |
395 | //US never copy the resourcename back to the adressee. | 385 | //US never copy the resourcename back to the adressee. |
396 | case FieldImpl::Resource: | 386 | case FieldImpl::Resource: |
397 | default: | 387 | default: |
398 | return false; | 388 | return false; |
399 | } | 389 | } |
400 | } | 390 | } |
401 | 391 | ||
402 | bool Field::isCustom() | 392 | bool Field::isCustom() |
403 | { | 393 | { |
404 | return mImpl->fieldId() == FieldImpl::CustomField; | 394 | return mImpl->fieldId() == FieldImpl::CustomField; |
405 | } | 395 | } |
406 | 396 | ||
407 | Field::List Field::allFields() | 397 | Field::List Field::allFields() |
408 | { | 398 | { |
409 | if ( mAllFields.isEmpty() ) { | 399 | if ( mAllFields.isEmpty() ) { |
410 | createField( FieldImpl::FormattedName, Frequent ); | 400 | createField( FieldImpl::FormattedName, Frequent ); |
411 | createField( FieldImpl::FamilyName, Frequent ); | 401 | createField( FieldImpl::FamilyName, Frequent ); |
412 | createField( FieldImpl::GivenName, Frequent ); | 402 | createField( FieldImpl::GivenName, Frequent ); |
413 | createField( FieldImpl::AdditionalName ); | 403 | createField( FieldImpl::AdditionalName ); |
414 | createField( FieldImpl::Prefix ); | 404 | createField( FieldImpl::Prefix ); |
415 | createField( FieldImpl::Suffix ); | 405 | createField( FieldImpl::Suffix ); |
416 | createField( FieldImpl::NickName, Personal ); | 406 | createField( FieldImpl::NickName, Personal ); |
417 | createField( FieldImpl::Birthday, Personal ); | 407 | createField( FieldImpl::Birthday, Personal ); |
418 | createField( FieldImpl::Category ); | 408 | createField( FieldImpl::Category ); |
419 | createField( FieldImpl::HomeAddressStreet, Address|Personal ); | 409 | createField( FieldImpl::HomeAddressStreet, Address|Personal ); |
420 | createField( FieldImpl::HomeAddressLocality, Address|Personal ); | 410 | createField( FieldImpl::HomeAddressLocality, Address|Personal ); |
421 | createField( FieldImpl::HomeAddressRegion, Address|Personal ); | 411 | createField( FieldImpl::HomeAddressRegion, Address|Personal ); |
422 | createField( FieldImpl::HomeAddressPostalCode, Address|Personal ); | 412 | createField( FieldImpl::HomeAddressPostalCode, Address|Personal ); |
423 | createField( FieldImpl::HomeAddressCountry, Address|Personal ); | 413 | createField( FieldImpl::HomeAddressCountry, Address|Personal ); |
424 | createField( FieldImpl::HomeAddressLabel, Address|Personal ); | 414 | createField( FieldImpl::HomeAddressLabel, Address|Personal ); |
425 | createField( FieldImpl::BusinessAddressStreet, Address|Organization ); | 415 | createField( FieldImpl::BusinessAddressStreet, Address|Organization ); |
426 | createField( FieldImpl::BusinessAddressLocality, Address|Organization ); | 416 | createField( FieldImpl::BusinessAddressLocality, Address|Organization ); |
427 | createField( FieldImpl::BusinessAddressRegion, Address|Organization ); | 417 | createField( FieldImpl::BusinessAddressRegion, Address|Organization ); |
428 | createField( FieldImpl::BusinessAddressPostalCode, Address|Organization ); | 418 | createField( FieldImpl::BusinessAddressPostalCode, Address|Organization ); |
429 | createField( FieldImpl::BusinessAddressCountry, Address|Organization ); | 419 | createField( FieldImpl::BusinessAddressCountry, Address|Organization ); |
430 | createField( FieldImpl::BusinessAddressLabel, Address|Organization ); | 420 | createField( FieldImpl::BusinessAddressLabel, Address|Organization ); |
431 | createField( FieldImpl::HomePhone, Personal|Frequent ); | 421 | createField( FieldImpl::HomePhone, Personal|Frequent ); |
432 | createField( FieldImpl::BusinessPhone, Organization|Frequent ); | 422 | createField( FieldImpl::BusinessPhone, Organization|Frequent ); |
433 | createField( FieldImpl::MobilePhone, Frequent ); | 423 | createField( FieldImpl::MobilePhone, Frequent ); |
434 | createField( FieldImpl::MobileHomePhone, Frequent ); | ||
435 | createField( FieldImpl::MobileWorkPhone, Frequent ); | 424 | createField( FieldImpl::MobileWorkPhone, Frequent ); |
436 | createField( FieldImpl::HomeFax ); | 425 | createField( FieldImpl::HomeFax ); |
437 | createField( FieldImpl::BusinessFax ); | 426 | createField( FieldImpl::BusinessFax ); |
438 | createField( FieldImpl::CarPhone ); | ||
439 | createField( FieldImpl::Isdn ); | 427 | createField( FieldImpl::Isdn ); |
440 | createField( FieldImpl::Pager ); | 428 | createField( FieldImpl::Pager ); |
441 | createField( FieldImpl::Email, Email|Frequent ); | 429 | createField( FieldImpl::Email, Email|Frequent ); |
442 | createField( FieldImpl::Mailer, Email ); | 430 | createField( FieldImpl::Mailer, Email ); |
443 | createField( FieldImpl::Title, Organization ); | 431 | createField( FieldImpl::Title, Organization ); |
444 | createField( FieldImpl::Role, Organization ); | 432 | createField( FieldImpl::Role, Organization ); |
445 | createField( FieldImpl::Organization, Organization ); | 433 | createField( FieldImpl::Organization, Organization ); |
446 | createField( FieldImpl::Note ); | 434 | createField( FieldImpl::Note ); |
447 | createField( FieldImpl::Url ); | 435 | createField( FieldImpl::Url ); |
448 | createField( FieldImpl::Resource ); | 436 | createField( FieldImpl::Resource ); |
449 | createField( FieldImpl::Sip ); | 437 | createField( FieldImpl::Sip ); |
450 | createField( FieldImpl::OtherPhone ); | 438 | createField( FieldImpl::OtherPhone ); |
451 | } | 439 | } |
452 | 440 | ||
453 | return mAllFields; | 441 | return mAllFields; |
454 | } | 442 | } |
455 | 443 | ||
456 | Field::List Field::defaultFields() | 444 | Field::List Field::defaultFields() |
457 | { | 445 | { |
458 | if ( mDefaultFields.isEmpty() ) { | 446 | if ( mDefaultFields.isEmpty() ) { |
459 | createDefaultField( FieldImpl::GivenName ); | 447 | createDefaultField( FieldImpl::GivenName ); |
460 | createDefaultField( FieldImpl::FamilyName ); | 448 | createDefaultField( FieldImpl::FamilyName ); |
461 | createDefaultField( FieldImpl::Email ); | 449 | createDefaultField( FieldImpl::Email ); |
462 | } | 450 | } |
463 | 451 | ||
464 | return mDefaultFields; | 452 | return mDefaultFields; |
465 | } | 453 | } |
466 | 454 | ||
467 | void Field::createField( int id, int category ) | 455 | void Field::createField( int id, int category ) |
468 | { | 456 | { |
469 | mAllFields.append( new Field( new FieldImpl( id, category ) ) ); | 457 | mAllFields.append( new Field( new FieldImpl( id, category ) ) ); |
470 | } | 458 | } |
471 | 459 | ||
472 | void Field::createDefaultField( int id, int category ) | 460 | void Field::createDefaultField( int id, int category ) |
473 | { | 461 | { |
474 | mDefaultFields.append( new Field( new FieldImpl( id, category ) ) ); | 462 | mDefaultFields.append( new Field( new FieldImpl( id, category ) ) ); |
475 | } | 463 | } |
476 | 464 | ||
477 | void Field::deleteFields() | 465 | void Field::deleteFields() |
478 | { | 466 | { |
479 | Field::List::ConstIterator it; | 467 | Field::List::ConstIterator it; |
480 | 468 | ||
481 | for( it = mAllFields.begin(); it != mAllFields.end(); ++it ) { | 469 | for( it = mAllFields.begin(); it != mAllFields.end(); ++it ) { |
482 | delete (*it); | 470 | delete (*it); |
483 | } | 471 | } |
484 | mAllFields.clear(); | 472 | mAllFields.clear(); |
485 | 473 | ||
486 | for( it = mDefaultFields.begin(); it != mDefaultFields.end(); ++it ) { | 474 | for( it = mDefaultFields.begin(); it != mDefaultFields.end(); ++it ) { |
487 | delete (*it); | 475 | delete (*it); |
488 | } | 476 | } |
489 | mDefaultFields.clear(); | 477 | mDefaultFields.clear(); |
490 | 478 | ||
491 | for( it = mCustomFields.begin(); it != mCustomFields.end(); ++it ) { | 479 | for( it = mCustomFields.begin(); it != mCustomFields.end(); ++it ) { |
492 | delete (*it); | 480 | delete (*it); |
493 | } | 481 | } |
494 | mCustomFields.clear(); | 482 | mCustomFields.clear(); |
495 | } | 483 | } |
496 | 484 | ||
497 | void Field::saveFields( const QString &identifier, | 485 | void Field::saveFields( const QString &identifier, |
498 | const Field::List &fields ) | 486 | const Field::List &fields ) |
499 | { | 487 | { |
500 | KConfig *cfg = KGlobal::config(); | 488 | KConfig *cfg = KGlobal::config(); |
501 | KConfigGroupSaver( cfg, "KABCFields" ); | 489 | KConfigGroupSaver( cfg, "KABCFields" ); |
502 | saveFields( cfg, identifier, fields ); | 490 | saveFields( cfg, identifier, fields ); |
503 | } | 491 | } |
504 | 492 | ||
505 | void Field::saveFields( KConfig *cfg, const QString &identifier, | 493 | void Field::saveFields( KConfig *cfg, const QString &identifier, |
506 | const Field::List &fields ) | 494 | const Field::List &fields ) |
507 | { | 495 | { |
508 | QValueList<int> fieldIds; | 496 | QValueList<int> fieldIds; |
509 | 497 | ||
510 | //US | 498 | //US |
511 | // qDebug("Field::saveFields to %s %s", cfg->getFileName().latin1(), identifier.latin1()); | 499 | // qDebug("Field::saveFields to %s %s", cfg->getFileName().latin1(), identifier.latin1()); |
512 | 500 | ||
513 | int custom = 0; | 501 | int custom = 0; |
514 | Field::List::ConstIterator it; | 502 | Field::List::ConstIterator it; |
515 | for( it = fields.begin(); it != fields.end(); ++it ) { | 503 | for( it = fields.begin(); it != fields.end(); ++it ) { |
516 | //US | 504 | //US |
517 | // qDebug("Field::saveFields field:%i", (*it)->mImpl->fieldId()); | 505 | // qDebug("Field::saveFields field:%i", (*it)->mImpl->fieldId()); |
518 | 506 | ||
519 | fieldIds.append( (*it)->mImpl->fieldId() ); | 507 | fieldIds.append( (*it)->mImpl->fieldId() ); |
520 | if( (*it)->isCustom() ) { | 508 | if( (*it)->isCustom() ) { |
521 | QStringList customEntry; | 509 | QStringList customEntry; |
522 | customEntry << (*it)->mImpl->label(); | 510 | customEntry << (*it)->mImpl->label(); |
523 | customEntry << (*it)->mImpl->key(); | 511 | customEntry << (*it)->mImpl->key(); |
524 | customEntry << (*it)->mImpl->app(); | 512 | customEntry << (*it)->mImpl->app(); |
525 | cfg->writeEntry( "KABC_CustomEntry_" + identifier + "_" + | 513 | cfg->writeEntry( "KABC_CustomEntry_" + identifier + "_" + |
526 | QString::number( custom++ ), customEntry ); | 514 | QString::number( custom++ ), customEntry ); |
527 | } | 515 | } |
528 | } | 516 | } |
529 | cfg->writeEntry( identifier, fieldIds ); | 517 | cfg->writeEntry( identifier, fieldIds ); |
530 | } | 518 | } |
531 | 519 | ||
532 | Field::List Field::restoreFields( const QString &identifier ) | 520 | Field::List Field::restoreFields( const QString &identifier ) |
533 | { | 521 | { |
534 | //US | 522 | //US |
535 | // qDebug("Field::restoreFields, identifier: %s", identifier.latin1()); | 523 | // qDebug("Field::restoreFields, identifier: %s", identifier.latin1()); |
536 | 524 | ||
537 | KConfig *cfg = KGlobal::config(); | 525 | KConfig *cfg = KGlobal::config(); |
538 | KConfigGroupSaver( cfg, "KABCFields" ); | 526 | KConfigGroupSaver( cfg, "KABCFields" ); |
539 | cfg->setGroup( "KABCFields" ); | 527 | cfg->setGroup( "KABCFields" ); |
540 | 528 | ||
541 | Field::List l = restoreFields( cfg, identifier ); | 529 | Field::List l = restoreFields( cfg, identifier ); |
542 | 530 | ||
543 | return l; | 531 | return l; |
544 | } | 532 | } |
545 | 533 | ||
546 | Field::List Field::restoreFields( KConfig *cfg, const QString &identifier ) | 534 | Field::List Field::restoreFields( KConfig *cfg, const QString &identifier ) |
547 | { | 535 | { |
548 | QValueList<int> fieldIds = cfg->readIntListEntry( identifier); | 536 | QValueList<int> fieldIds = cfg->readIntListEntry( identifier); |
549 | //US | 537 | //US |
550 | // qDebug("Field::restoreFields from %s, identifier: %s", cfg->getFileName().latin1(), identifier.latin1()); | 538 | // qDebug("Field::restoreFields from %s, identifier: %s", cfg->getFileName().latin1(), identifier.latin1()); |
551 | 539 | ||
552 | Field::List fields; | 540 | Field::List fields; |
553 | 541 | ||
554 | int custom = 0; | 542 | int custom = 0; |
555 | QValueList<int>::ConstIterator it; | 543 | QValueList<int>::ConstIterator it; |
556 | for( it = fieldIds.begin(); it != fieldIds.end(); ++it ) { | 544 | for( it = fieldIds.begin(); it != fieldIds.end(); ++it ) { |
557 | FieldImpl *f = 0; | 545 | FieldImpl *f = 0; |
558 | if ( (*it) == FieldImpl::CustomField ) { | 546 | if ( (*it) == FieldImpl::CustomField ) { |
559 | QStringList customEntry = cfg->readListEntry( "KABC_CustomEntry_" + | 547 | QStringList customEntry = cfg->readListEntry( "KABC_CustomEntry_" + |
560 | identifier + "_" + | 548 | identifier + "_" + |
561 | QString::number( custom++ ) ); | 549 | QString::number( custom++ ) ); |
562 | f = new FieldImpl( *it, CustomCategory, customEntry[ 0 ], | 550 | f = new FieldImpl( *it, CustomCategory, customEntry[ 0 ], |
563 | customEntry[ 1 ], customEntry[ 2 ] ); | 551 | customEntry[ 1 ], customEntry[ 2 ] ); |
564 | } else { | 552 | } else { |
565 | f = new FieldImpl( *it ); | 553 | f = new FieldImpl( *it ); |
566 | } | 554 | } |
567 | fields.append( new Field( f ) ); | 555 | fields.append( new Field( f ) ); |
568 | } | 556 | } |
569 | 557 | ||
570 | return fields; | 558 | return fields; |
571 | } | 559 | } |
572 | 560 | ||
573 | bool Field::equals( Field *field ) | 561 | bool Field::equals( Field *field ) |
574 | { | 562 | { |
575 | bool sameId = ( mImpl->fieldId() == field->mImpl->fieldId() ); | 563 | bool sameId = ( mImpl->fieldId() == field->mImpl->fieldId() ); |
576 | 564 | ||
577 | if ( !sameId ) return false; | 565 | if ( !sameId ) return false; |
578 | 566 | ||
579 | if ( mImpl->fieldId() != FieldImpl::CustomField ) return true; | 567 | if ( mImpl->fieldId() != FieldImpl::CustomField ) return true; |
580 | 568 | ||
581 | return mImpl->key() == field->mImpl->key(); | 569 | return mImpl->key() == field->mImpl->key(); |
582 | } | 570 | } |
583 | 571 | ||
584 | Field *Field::createCustomField( const QString &label, int category, | 572 | Field *Field::createCustomField( const QString &label, int category, |
585 | const QString &key, const QString &app ) | 573 | const QString &key, const QString &app ) |
586 | { | 574 | { |
587 | Field *field = new Field( new FieldImpl( FieldImpl::CustomField, | 575 | Field *field = new Field( new FieldImpl( FieldImpl::CustomField, |
588 | category | CustomCategory, | 576 | category | CustomCategory, |
589 | label, key, app ) ); | 577 | label, key, app ) ); |
590 | //US | 578 | //US |
591 | // qDebug("Field::createCustomField label %s", label.latin1() ); | 579 | // qDebug("Field::createCustomField label %s", label.latin1() ); |
592 | 580 | ||
593 | mCustomFields.append( field ); | 581 | mCustomFields.append( field ); |
594 | 582 | ||
595 | return field; | 583 | return field; |
596 | } | 584 | } |
diff --git a/kabc/phonenumber.cpp b/kabc/phonenumber.cpp index 90cc4cf..6db1bcf 100644 --- a/kabc/phonenumber.cpp +++ b/kabc/phonenumber.cpp | |||
@@ -1,369 +1,369 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of libkabc. | 2 | This file is part of libkabc. |
3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> | 3 | Copyright (c) 2001 Cornelius Schumacher <schumacher@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | /* | 21 | /* |
22 | Enhanced Version of the file for platform independent KDE tools. | 22 | Enhanced Version of the file for platform independent KDE tools. |
23 | Copyright (c) 2004 Ulf Schenk | 23 | Copyright (c) 2004 Ulf Schenk |
24 | 24 | ||
25 | $Id$ | 25 | $Id$ |
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <kapplication.h> | 28 | #include <kapplication.h> |
29 | #include <klocale.h> | 29 | #include <klocale.h> |
30 | 30 | ||
31 | #include "phonenumber.h" | 31 | #include "phonenumber.h" |
32 | 32 | ||
33 | using namespace KABC; | 33 | using namespace KABC; |
34 | 34 | ||
35 | PhoneNumber::PhoneNumber() : | 35 | PhoneNumber::PhoneNumber() : |
36 | mType( Home ) | 36 | mType( Home ) |
37 | { | 37 | { |
38 | init(); | 38 | init(); |
39 | } | 39 | } |
40 | 40 | ||
41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : | 41 | PhoneNumber::PhoneNumber( const QString &number, int type ) : |
42 | mType( type ), mNumber( number ) | 42 | mType( type ), mNumber( number ) |
43 | { | 43 | { |
44 | init(); | 44 | init(); |
45 | } | 45 | } |
46 | 46 | ||
47 | PhoneNumber::~PhoneNumber() | 47 | PhoneNumber::~PhoneNumber() |
48 | { | 48 | { |
49 | } | 49 | } |
50 | 50 | ||
51 | void PhoneNumber::init() | 51 | void PhoneNumber::init() |
52 | { | 52 | { |
53 | mId = KApplication::randomString( 8 ); | 53 | mId = KApplication::randomString( 8 ); |
54 | } | 54 | } |
55 | 55 | ||
56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const | 56 | bool PhoneNumber::operator==( const PhoneNumber &p ) const |
57 | { | 57 | { |
58 | if ( mNumber != p.mNumber ) return false; | 58 | if ( mNumber != p.mNumber ) return false; |
59 | if ( mType != p.mType ) return false; | 59 | if ( mType != p.mType ) return false; |
60 | 60 | ||
61 | return true; | 61 | return true; |
62 | } | 62 | } |
63 | 63 | ||
64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const | 64 | bool PhoneNumber::operator!=( const PhoneNumber &p ) const |
65 | { | 65 | { |
66 | return !( p == *this ); | 66 | return !( p == *this ); |
67 | } | 67 | } |
68 | void PhoneNumber::makeCompat() | 68 | void PhoneNumber::makeCompat() |
69 | { | 69 | { |
70 | mType = getCompatType( mType ); | 70 | mType = getCompatType( mType ); |
71 | } | 71 | } |
72 | int PhoneNumber::getCompatType( int type ) | 72 | int PhoneNumber::getCompatType( int type ) |
73 | { | 73 | { |
74 | 74 | ||
75 | if ((type & Cell) == Cell) { | 75 | if ((type & Cell) == Cell) { |
76 | if ((type & Work) == Work) | 76 | if ((type & Work) == Work) |
77 | return Car; | 77 | return Car; |
78 | return Cell; | 78 | return Cell; |
79 | } | 79 | } |
80 | if ((type & Home) == Home) { | 80 | if ((type & Home) == Home) { |
81 | if ((type & Pref) == Pref) | 81 | if ((type & Pref) == Pref) |
82 | return (Home | Pref); | 82 | return (Home | Pref); |
83 | if ((type & Fax) == Fax) | 83 | if ((type & Fax) == Fax) |
84 | return (Home | Fax); | 84 | return (Home | Fax); |
85 | return (Home); | 85 | return (Home); |
86 | } | 86 | } |
87 | if ((type & Work) == Work) { | 87 | if ((type & Work) == Work) { |
88 | if ((type & Pref) == Pref) | 88 | if ((type & Pref) == Pref) |
89 | return (Work| Pref); | 89 | return (Work| Pref); |
90 | if ((type & Fax) == Fax) | 90 | if ((type & Fax) == Fax) |
91 | return (Fax |Work); | 91 | return (Fax |Work); |
92 | if ((type & Msg) == Msg) { | 92 | if ((type & Msg) == Msg) { |
93 | if ((type & Voice) == Voice) | 93 | if ((type & Voice) == Voice) |
94 | return ( Msg | Voice |Work); | 94 | return ( Msg | Voice |Work); |
95 | return ( Msg | Work); | 95 | return ( Msg | Work); |
96 | } | 96 | } |
97 | return Work; | 97 | return Work; |
98 | } | 98 | } |
99 | if ((type & Pcs) == Pcs) { | 99 | if ((type & Pcs) == Pcs) { |
100 | if ((type & Pref) == Pref) | 100 | if ((type & Pref) == Pref) |
101 | return Pcs | Pref; | 101 | return Pcs | Pref; |
102 | return Pcs; | 102 | return Pcs; |
103 | } | 103 | } |
104 | if ((type & Car) == Car) | 104 | if ((type & Car) == Car) |
105 | return Car; | 105 | return Car; |
106 | if ((type & Pager) == Pager) | 106 | if ((type & Pager) == Pager) |
107 | return Pager; | 107 | return Pager; |
108 | if ((type & Isdn) == Isdn) | 108 | if ((type & Isdn) == Isdn) |
109 | return Isdn; | 109 | return Isdn; |
110 | if ((type & Video) == Video) | 110 | if ((type & Video) == Video) |
111 | return Video; | 111 | return Video; |
112 | 112 | ||
113 | if ((type & Msg) == Msg) | 113 | if ((type & Msg) == Msg) |
114 | return Msg; | 114 | return Msg; |
115 | if ((type & Fax) == Fax) | 115 | if ((type & Fax) == Fax) |
116 | return Fax; | 116 | return Fax; |
117 | 117 | ||
118 | if ((type & Pref) == Pref) | 118 | if ((type & Pref) == Pref) |
119 | return Pref; | 119 | return Pref; |
120 | 120 | ||
121 | return Voice; | 121 | return Voice; |
122 | 122 | ||
123 | } | 123 | } |
124 | bool PhoneNumber::simplifyNumber() | 124 | bool PhoneNumber::simplifyNumber() |
125 | { | 125 | { |
126 | QString Number; | 126 | QString Number; |
127 | int i; | 127 | int i; |
128 | Number = mNumber.stripWhiteSpace (); | 128 | Number = mNumber.stripWhiteSpace (); |
129 | mNumber = ""; | 129 | mNumber = ""; |
130 | for ( i = 0; i < Number.length(); ++i) { | 130 | for ( i = 0; i < Number.length(); ++i) { |
131 | if ( Number.at(i).isDigit() || Number.at(i) == '+'|| Number.at(i) == '*'|| Number.at(i) == '#' ) | 131 | if ( Number.at(i).isDigit() || Number.at(i) == '+'|| Number.at(i) == '*'|| Number.at(i) == '#' ) |
132 | mNumber += Number.at(i); | 132 | mNumber += Number.at(i); |
133 | } | 133 | } |
134 | return ( mNumber.length() > 0 ); | 134 | return ( mNumber.length() > 0 ); |
135 | } | 135 | } |
136 | // make cellphone compatible | 136 | // make cellphone compatible |
137 | void PhoneNumber::simplifyType() | 137 | void PhoneNumber::simplifyType() |
138 | { | 138 | { |
139 | if ( mType & Fax ) mType = Fax; | 139 | if ( mType & Fax ) mType = Fax; |
140 | else if ( mType & Cell ) mType = Cell; | 140 | else if ( mType & Cell ) mType = Cell; |
141 | else if ( mType & Work ) mType = Work ; | 141 | else if ( mType & Work ) mType = Work ; |
142 | else if ( mType & Home ) mType = Home; | 142 | else if ( mType & Home ) mType = Home; |
143 | else mType = Pref; | 143 | else mType = Pref; |
144 | } | 144 | } |
145 | bool PhoneNumber::contains( const PhoneNumber &p ) | 145 | bool PhoneNumber::contains( const PhoneNumber &p ) |
146 | { | 146 | { |
147 | PhoneNumber myself; | 147 | PhoneNumber myself; |
148 | PhoneNumber other; | 148 | PhoneNumber other; |
149 | myself = *this; | 149 | myself = *this; |
150 | other = p; | 150 | other = p; |
151 | myself.simplifyNumber(); | 151 | myself.simplifyNumber(); |
152 | other.simplifyNumber(); | 152 | other.simplifyNumber(); |
153 | if ( myself.number() != other.number ()) | 153 | if ( myself.number() != other.number ()) |
154 | return false; | 154 | return false; |
155 | myself.simplifyType(); | 155 | myself.simplifyType(); |
156 | other.simplifyType(); | 156 | other.simplifyType(); |
157 | if ( myself.type() == other.type()) | 157 | if ( myself.type() == other.type()) |
158 | return true; | 158 | return true; |
159 | return false; | 159 | return false; |
160 | } | 160 | } |
161 | 161 | ||
162 | void PhoneNumber::setId( const QString &id ) | 162 | void PhoneNumber::setId( const QString &id ) |
163 | { | 163 | { |
164 | mId = id; | 164 | mId = id; |
165 | } | 165 | } |
166 | 166 | ||
167 | QString PhoneNumber::id() const | 167 | QString PhoneNumber::id() const |
168 | { | 168 | { |
169 | return mId; | 169 | return mId; |
170 | } | 170 | } |
171 | 171 | ||
172 | void PhoneNumber::setNumber( const QString &number ) | 172 | void PhoneNumber::setNumber( const QString &number ) |
173 | { | 173 | { |
174 | mNumber = number; | 174 | mNumber = number; |
175 | } | 175 | } |
176 | 176 | ||
177 | QString PhoneNumber::number() const | 177 | QString PhoneNumber::number() const |
178 | { | 178 | { |
179 | return mNumber; | 179 | return mNumber; |
180 | } | 180 | } |
181 | 181 | ||
182 | void PhoneNumber::setType( int type ) | 182 | void PhoneNumber::setType( int type ) |
183 | { | 183 | { |
184 | mType = type; | 184 | mType = type; |
185 | } | 185 | } |
186 | 186 | ||
187 | int PhoneNumber::type() const | 187 | int PhoneNumber::type() const |
188 | { | 188 | { |
189 | return mType; | 189 | return mType; |
190 | } | 190 | } |
191 | 191 | ||
192 | QString PhoneNumber::typeLabel() const | 192 | QString PhoneNumber::typeLabel() const |
193 | { | 193 | { |
194 | QString label; | 194 | QString label; |
195 | bool first = true; | 195 | bool first = true; |
196 | 196 | ||
197 | TypeList list = typeList(); | 197 | TypeList list = typeList(); |
198 | 198 | ||
199 | TypeList::Iterator it; | 199 | TypeList::Iterator it; |
200 | for ( it = list.begin(); it != list.end(); ++it ) { | 200 | for ( it = list.begin(); it != list.end(); ++it ) { |
201 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { | 201 | if ( ( type() & (*it) ) && ( (*it) != Pref ) ) { |
202 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); | 202 | label.append( ( first ? "" : "/" ) + typeLabel( *it ) ); |
203 | if ( first ) | 203 | if ( first ) |
204 | first = false; | 204 | first = false; |
205 | } | 205 | } |
206 | } | 206 | } |
207 | 207 | ||
208 | return label; | 208 | return label; |
209 | } | 209 | } |
210 | 210 | ||
211 | QString PhoneNumber::label() const | 211 | QString PhoneNumber::label() const |
212 | { | 212 | { |
213 | return typeLabel( type() ); | 213 | return typeLabel( type() ); |
214 | } | 214 | } |
215 | 215 | ||
216 | PhoneNumber::TypeList PhoneNumber::typeList() | 216 | PhoneNumber::TypeList PhoneNumber::typeList() |
217 | { | 217 | { |
218 | TypeList list; | 218 | TypeList list; |
219 | 219 | ||
220 | list << Home << Work << Msg << Pref << Voice << Fax << Cell << Video | 220 | list << Home << Work << Msg << Pref << Voice << Fax << Cell << Video |
221 | << Bbs << Modem << Car << Isdn << Pcs << Pager; | 221 | << Bbs << Modem << Car << Isdn << Pcs << Pager; |
222 | 222 | ||
223 | return list; | 223 | return list; |
224 | } | 224 | } |
225 | PhoneNumber::TypeList PhoneNumber::supportedTypeList() | 225 | PhoneNumber::TypeList PhoneNumber::supportedTypeList() |
226 | { | 226 | { |
227 | static TypeList list; | 227 | static TypeList list; |
228 | if ( list.count() == 0 ) | 228 | if ( list.count() == 0 ) |
229 | list << (Home| Pref) << (Work| Pref) << Cell <<(Pcs|Pref)<< Pcs<< Home << Work << Car << (Work| Msg | Voice) << (Work| Msg) << (Home | Fax) << (Work| Fax) << Fax<< Pager << Isdn << Video << Msg << Pref << Voice; | 229 | list << (Home| Pref) << (Work| Pref) << Cell <<(Pcs|Pref)<< Pcs<< Home << Work << Car << (Work| Msg | Voice) << (Work| Msg) << (Home | Fax) << (Work| Fax) << Fax<< Pager << Isdn << Video << Msg << Pref << Voice; |
230 | return list; | 230 | return list; |
231 | } | 231 | } |
232 | QStringList PhoneNumber::supportedTypeListNames() | 232 | QStringList PhoneNumber::supportedTypeListNames() |
233 | { | 233 | { |
234 | static QStringList list; | 234 | static QStringList list; |
235 | if ( list.count() == 0 ) | 235 | if ( list.count() == 0 ) |
236 | list << i18n("Home") << i18n("Work") << i18n("Mobile") << i18n("SIP") << i18n("VoIP") <<i18n("Home2")<< i18n("Work2") << i18n("Mobile2 (Work)") << i18n("Assistent") << i18n("Company") << i18n("Fax (Home)") << i18n("Fax (Work)") << i18n("Fax (Other)") << i18n("Pager") << i18n("ISDN") << i18n("Video") << i18n("Callback") << i18n("Primary")<< i18n("Other"); | 236 | list << i18n("Home") << i18n("Work") << i18n("Mobile") << i18n("SIP") << i18n("VoIP") <<i18n("Home2")<< i18n("Work2") << i18n("Mobile2") << i18n("Assistent") << i18n("Company") << i18n("Fax (Home)") << i18n("Fax (Work)") << i18n("Fax (Other)") << i18n("Pager") << i18n("ISDN") << i18n("Video") << i18n("Callback") << i18n("Primary")<< i18n("Other"); |
237 | return list; | 237 | return list; |
238 | } | 238 | } |
239 | 239 | ||
240 | int PhoneNumber::typeListIndex4Type(int type ) | 240 | int PhoneNumber::typeListIndex4Type(int type ) |
241 | { | 241 | { |
242 | TypeList list = supportedTypeList(); | 242 | TypeList list = supportedTypeList(); |
243 | int i = 0; | 243 | int i = 0; |
244 | while ( i < list.count() ) { | 244 | while ( i < list.count() ) { |
245 | if ( list [i] == type ) | 245 | if ( list [i] == type ) |
246 | return i; | 246 | return i; |
247 | ++i; | 247 | ++i; |
248 | } | 248 | } |
249 | return list.count()-1; | 249 | return list.count()-1; |
250 | } | 250 | } |
251 | 251 | ||
252 | QString PhoneNumber::label( int type ) | 252 | QString PhoneNumber::label( int type ) |
253 | { | 253 | { |
254 | return typeLabel( type ); | 254 | return typeLabel( type ); |
255 | } | 255 | } |
256 | 256 | ||
257 | QString PhoneNumber::typeLabel( int type ) | 257 | QString PhoneNumber::typeLabel( int type ) |
258 | { | 258 | { |
259 | if ((type & Cell) == Cell) | 259 | if ((type & Cell) == Cell) |
260 | return i18n("Mobile"); | 260 | return i18n("Mobile"); |
261 | if ((type & Home) == Home) { | 261 | if ((type & Home) == Home) { |
262 | if ((type & Pref) == Pref) | 262 | if ((type & Pref) == Pref) |
263 | return i18n("Home"); | 263 | return i18n("Home"); |
264 | if ((type & Fax) == Fax) | 264 | if ((type & Fax) == Fax) |
265 | return i18n("Fax (Home)"); | 265 | return i18n("Fax (Home)"); |
266 | return i18n("Home2"); | 266 | return i18n("Home2"); |
267 | } | 267 | } |
268 | 268 | ||
269 | if ((type & Work) == Work) { | 269 | if ((type & Work) == Work) { |
270 | if ((type & Pref) == Pref) | 270 | if ((type & Pref) == Pref) |
271 | return i18n("Work"); | 271 | return i18n("Work"); |
272 | if ((type & Fax) == Fax) | 272 | if ((type & Fax) == Fax) |
273 | return i18n("Fax (Work)"); | 273 | return i18n("Fax (Work)"); |
274 | if ((type & Msg) == Msg) { | 274 | if ((type & Msg) == Msg) { |
275 | if ((type & Voice) == Voice) | 275 | if ((type & Voice) == Voice) |
276 | return i18n("Assistent"); | 276 | return i18n("Assistent"); |
277 | return i18n("Company"); | 277 | return i18n("Company"); |
278 | } | 278 | } |
279 | return i18n("Work2"); | 279 | return i18n("Work2"); |
280 | } | 280 | } |
281 | if ((type & Pcs) == Pcs) { | 281 | if ((type & Pcs) == Pcs) { |
282 | if ((type & Pref) == Pref) | 282 | if ((type & Pref) == Pref) |
283 | return i18n("SIP"); | 283 | return i18n("SIP"); |
284 | return i18n("VoIP"); | 284 | return i18n("VoIP"); |
285 | } | 285 | } |
286 | if ((type & Car) == Car) | 286 | if ((type & Car) == Car) |
287 | return i18n("Mobile2 (Work)"); | 287 | return i18n("Mobile2"); |
288 | if ((type & Pager) == Pager) | 288 | if ((type & Pager) == Pager) |
289 | return i18n("Pager"); | 289 | return i18n("Pager"); |
290 | if ((type & Isdn) == Isdn) | 290 | if ((type & Isdn) == Isdn) |
291 | return i18n("ISDN"); | 291 | return i18n("ISDN"); |
292 | if ((type & Video) == Video) | 292 | if ((type & Video) == Video) |
293 | return i18n("Video"); | 293 | return i18n("Video"); |
294 | 294 | ||
295 | if ((type & Msg) == Msg) | 295 | if ((type & Msg) == Msg) |
296 | return i18n("Callback"); | 296 | return i18n("Callback"); |
297 | if ((type & Fax) == Fax) | 297 | if ((type & Fax) == Fax) |
298 | return i18n("Fax (Other)"); | 298 | return i18n("Fax (Other)"); |
299 | 299 | ||
300 | if ((type & Pref) == Pref) | 300 | if ((type & Pref) == Pref) |
301 | return i18n("Primary"); | 301 | return i18n("Primary"); |
302 | 302 | ||
303 | 303 | ||
304 | return i18n("Other"); | 304 | return i18n("Other"); |
305 | 305 | ||
306 | 306 | ||
307 | #if 0 | 307 | #if 0 |
308 | 308 | ||
309 | 309 | ||
310 | 310 | ||
311 | QString typeString; | 311 | QString typeString; |
312 | 312 | ||
313 | 313 | ||
314 | if ((type & Cell) == Cell) | 314 | if ((type & Cell) == Cell) |
315 | typeString += i18n("Mobile") +" "; | 315 | typeString += i18n("Mobile") +" "; |
316 | if ((type & Home) == Home) | 316 | if ((type & Home) == Home) |
317 | typeString += i18n("Home")+" "; | 317 | typeString += i18n("Home")+" "; |
318 | else if ((type & Work) == Work) | 318 | else if ((type & Work) == Work) |
319 | typeString += i18n("Work")+" "; | 319 | typeString += i18n("Work")+" "; |
320 | 320 | ||
321 | if ((type & Sip) == Sip) | 321 | if ((type & Sip) == Sip) |
322 | typeString += i18n("SIP")+" "; | 322 | typeString += i18n("SIP")+" "; |
323 | if ((type & Car) == Car) | 323 | if ((type & Car) == Car) |
324 | typeString += i18n("Car")+" "; | 324 | typeString += i18n("Car")+" "; |
325 | 325 | ||
326 | if ((type & Fax) == Fax) | 326 | if ((type & Fax) == Fax) |
327 | typeString += i18n("Fax"); | 327 | typeString += i18n("Fax"); |
328 | else if ((type & Msg) == Msg) | 328 | else if ((type & Msg) == Msg) |
329 | typeString += i18n("Messenger"); | 329 | typeString += i18n("Messenger"); |
330 | else if ((type & Video) == Video) | 330 | else if ((type & Video) == Video) |
331 | typeString += i18n("Video"); | 331 | typeString += i18n("Video"); |
332 | else if ((type & Bbs) == Bbs) | 332 | else if ((type & Bbs) == Bbs) |
333 | typeString += i18n("Mailbox"); | 333 | typeString += i18n("Mailbox"); |
334 | else if ((type & Modem) == Modem) | 334 | else if ((type & Modem) == Modem) |
335 | typeString += i18n("Modem"); | 335 | typeString += i18n("Modem"); |
336 | else if ((type & Isdn) == Isdn) | 336 | else if ((type & Isdn) == Isdn) |
337 | typeString += i18n("ISDN"); | 337 | typeString += i18n("ISDN"); |
338 | else if ((type & Pcs) == Pcs) | 338 | else if ((type & Pcs) == Pcs) |
339 | typeString += i18n("PCS"); | 339 | typeString += i18n("PCS"); |
340 | else if ((type & Pager) == Pager) | 340 | else if ((type & Pager) == Pager) |
341 | typeString += i18n("Pager"); | 341 | typeString += i18n("Pager"); |
342 | // add the prefered flag | 342 | // add the prefered flag |
343 | /* | 343 | /* |
344 | if ((type & Pref) == Pref) | 344 | if ((type & Pref) == Pref) |
345 | typeString += i18n("(p)"); | 345 | typeString += i18n("(p)"); |
346 | */ | 346 | */ |
347 | //if we still have no match, return "other" | 347 | //if we still have no match, return "other" |
348 | if (typeString.isEmpty()) { | 348 | if (typeString.isEmpty()) { |
349 | if ((type & Voice) == Voice) | 349 | if ((type & Voice) == Voice) |
350 | return i18n("Voice"); | 350 | return i18n("Voice"); |
351 | else | 351 | else |
352 | return i18n("Other"); | 352 | return i18n("Other"); |
353 | } | 353 | } |
354 | 354 | ||
355 | return typeString.stripWhiteSpace(); | 355 | return typeString.stripWhiteSpace(); |
356 | #endif | 356 | #endif |
357 | } | 357 | } |
358 | 358 | ||
359 | QDataStream &KABC::operator<<( QDataStream &s, const PhoneNumber &phone ) | 359 | QDataStream &KABC::operator<<( QDataStream &s, const PhoneNumber &phone ) |
360 | { | 360 | { |
361 | return s << phone.mId << phone.mType << phone.mNumber; | 361 | return s << phone.mId << phone.mType << phone.mNumber; |
362 | } | 362 | } |
363 | 363 | ||
364 | QDataStream &KABC::operator>>( QDataStream &s, PhoneNumber &phone ) | 364 | QDataStream &KABC::operator>>( QDataStream &s, PhoneNumber &phone ) |
365 | { | 365 | { |
366 | s >> phone.mId >> phone.mType >> phone.mNumber; | 366 | s >> phone.mId >> phone.mType >> phone.mNumber; |
367 | 367 | ||
368 | return s; | 368 | return s; |
369 | } | 369 | } |