-rw-r--r-- | kabc/addressee.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kabc/addressee.cpp b/kabc/addressee.cpp index 3ce733d..568dfc4 100644 --- a/kabc/addressee.cpp +++ b/kabc/addressee.cpp | |||
@@ -1494,447 +1494,449 @@ void Addressee::removeEmail( const QString &email ) | |||
1494 | 1494 | ||
1495 | QStringList::Iterator it = mData->emails.find( email ); | 1495 | QStringList::Iterator it = mData->emails.find( email ); |
1496 | if ( it == mData->emails.end() ) return; | 1496 | if ( it == mData->emails.end() ) return; |
1497 | 1497 | ||
1498 | mData->emails.remove( it ); | 1498 | mData->emails.remove( it ); |
1499 | } | 1499 | } |
1500 | 1500 | ||
1501 | QString Addressee::preferredEmail() const | 1501 | QString Addressee::preferredEmail() const |
1502 | { | 1502 | { |
1503 | if ( mData->emails.count() == 0 ) return QString::null; | 1503 | if ( mData->emails.count() == 0 ) return QString::null; |
1504 | else return mData->emails.first(); | 1504 | else return mData->emails.first(); |
1505 | } | 1505 | } |
1506 | 1506 | ||
1507 | QStringList Addressee::emails() const | 1507 | QStringList Addressee::emails() const |
1508 | { | 1508 | { |
1509 | return mData->emails; | 1509 | return mData->emails; |
1510 | } | 1510 | } |
1511 | void Addressee::setEmails( const QStringList& emails ) { | 1511 | void Addressee::setEmails( const QStringList& emails ) { |
1512 | detach(); | 1512 | detach(); |
1513 | mData->emails = emails; | 1513 | mData->emails = emails; |
1514 | } | 1514 | } |
1515 | void Addressee::insertPhoneNumber( const PhoneNumber &phoneNumber ) | 1515 | void Addressee::insertPhoneNumber( const PhoneNumber &phoneNumber ) |
1516 | { | 1516 | { |
1517 | detach(); | 1517 | detach(); |
1518 | mData->empty = false; | 1518 | mData->empty = false; |
1519 | 1519 | ||
1520 | PhoneNumber::List::Iterator it; | 1520 | PhoneNumber::List::Iterator it; |
1521 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | 1521 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { |
1522 | if ( (*it).id() == phoneNumber.id() ) { | 1522 | if ( (*it).id() == phoneNumber.id() ) { |
1523 | *it = phoneNumber; | 1523 | *it = phoneNumber; |
1524 | return; | 1524 | return; |
1525 | } | 1525 | } |
1526 | } | 1526 | } |
1527 | mData->phoneNumbers.append( phoneNumber ); | 1527 | mData->phoneNumbers.append( phoneNumber ); |
1528 | } | 1528 | } |
1529 | 1529 | ||
1530 | void Addressee::removePhoneNumber( const PhoneNumber &phoneNumber ) | 1530 | void Addressee::removePhoneNumber( const PhoneNumber &phoneNumber ) |
1531 | { | 1531 | { |
1532 | detach(); | 1532 | detach(); |
1533 | 1533 | ||
1534 | PhoneNumber::List::Iterator it; | 1534 | PhoneNumber::List::Iterator it; |
1535 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | 1535 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { |
1536 | if ( (*it).id() == phoneNumber.id() ) { | 1536 | if ( (*it).id() == phoneNumber.id() ) { |
1537 | mData->phoneNumbers.remove( it ); | 1537 | mData->phoneNumbers.remove( it ); |
1538 | return; | 1538 | return; |
1539 | } | 1539 | } |
1540 | } | 1540 | } |
1541 | } | 1541 | } |
1542 | 1542 | ||
1543 | PhoneNumber Addressee::phoneNumber( int type ) const | 1543 | PhoneNumber Addressee::phoneNumber( int type ) const |
1544 | { | 1544 | { |
1545 | PhoneNumber phoneNumber( "", type ); | 1545 | PhoneNumber phoneNumber( "", type ); |
1546 | PhoneNumber::List::ConstIterator it; | 1546 | PhoneNumber::List::ConstIterator it; |
1547 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | 1547 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { |
1548 | if ( matchBinaryPatternP( (*it).type(), type ) ) { | 1548 | if ( matchBinaryPatternP( (*it).type(), type ) ) { |
1549 | if ( (*it).type() & PhoneNumber::Pref ) | 1549 | if ( (*it).type() & PhoneNumber::Pref ) |
1550 | return (*it); | 1550 | return (*it); |
1551 | else if ( phoneNumber.number().isEmpty() ) | 1551 | else if ( phoneNumber.number().isEmpty() ) |
1552 | phoneNumber = (*it); | 1552 | phoneNumber = (*it); |
1553 | } | 1553 | } |
1554 | } | 1554 | } |
1555 | 1555 | ||
1556 | return phoneNumber; | 1556 | return phoneNumber; |
1557 | } | 1557 | } |
1558 | 1558 | ||
1559 | PhoneNumber::List Addressee::phoneNumbers() const | 1559 | PhoneNumber::List Addressee::phoneNumbers() const |
1560 | { | 1560 | { |
1561 | return mData->phoneNumbers; | 1561 | return mData->phoneNumbers; |
1562 | } | 1562 | } |
1563 | 1563 | ||
1564 | PhoneNumber::List Addressee::phoneNumbers( int type ) const | 1564 | PhoneNumber::List Addressee::phoneNumbers( int type ) const |
1565 | { | 1565 | { |
1566 | PhoneNumber::List list; | 1566 | PhoneNumber::List list; |
1567 | 1567 | ||
1568 | PhoneNumber::List::ConstIterator it; | 1568 | PhoneNumber::List::ConstIterator it; |
1569 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | 1569 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { |
1570 | if ( matchBinaryPattern( (*it).type(), type ) ) { | 1570 | if ( matchBinaryPattern( (*it).type(), type ) ) { |
1571 | list.append( *it ); | 1571 | list.append( *it ); |
1572 | } | 1572 | } |
1573 | } | 1573 | } |
1574 | return list; | 1574 | return list; |
1575 | } | 1575 | } |
1576 | 1576 | ||
1577 | PhoneNumber Addressee::findPhoneNumber( const QString &id ) const | 1577 | PhoneNumber Addressee::findPhoneNumber( const QString &id ) const |
1578 | { | 1578 | { |
1579 | PhoneNumber::List::ConstIterator it; | 1579 | PhoneNumber::List::ConstIterator it; |
1580 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { | 1580 | for( it = mData->phoneNumbers.begin(); it != mData->phoneNumbers.end(); ++it ) { |
1581 | if ( (*it).id() == id ) { | 1581 | if ( (*it).id() == id ) { |
1582 | return *it; | 1582 | return *it; |
1583 | } | 1583 | } |
1584 | } | 1584 | } |
1585 | return PhoneNumber(); | 1585 | return PhoneNumber(); |
1586 | } | 1586 | } |
1587 | 1587 | ||
1588 | void Addressee::insertKey( const Key &key ) | 1588 | void Addressee::insertKey( const Key &key ) |
1589 | { | 1589 | { |
1590 | detach(); | 1590 | detach(); |
1591 | mData->empty = false; | 1591 | mData->empty = false; |
1592 | 1592 | ||
1593 | Key::List::Iterator it; | 1593 | Key::List::Iterator it; |
1594 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { | 1594 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { |
1595 | if ( (*it).id() == key.id() ) { | 1595 | if ( (*it).id() == key.id() ) { |
1596 | *it = key; | 1596 | *it = key; |
1597 | return; | 1597 | return; |
1598 | } | 1598 | } |
1599 | } | 1599 | } |
1600 | mData->keys.append( key ); | 1600 | mData->keys.append( key ); |
1601 | } | 1601 | } |
1602 | 1602 | ||
1603 | void Addressee::removeKey( const Key &key ) | 1603 | void Addressee::removeKey( const Key &key ) |
1604 | { | 1604 | { |
1605 | detach(); | 1605 | detach(); |
1606 | 1606 | ||
1607 | Key::List::Iterator it; | 1607 | Key::List::Iterator it; |
1608 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { | 1608 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { |
1609 | if ( (*it).id() == key.id() ) { | 1609 | if ( (*it).id() == key.id() ) { |
1610 | mData->keys.remove( key ); | 1610 | mData->keys.remove( key ); |
1611 | return; | 1611 | return; |
1612 | } | 1612 | } |
1613 | } | 1613 | } |
1614 | } | 1614 | } |
1615 | 1615 | ||
1616 | Key Addressee::key( int type, QString customTypeString ) const | 1616 | Key Addressee::key( int type, QString customTypeString ) const |
1617 | { | 1617 | { |
1618 | Key::List::ConstIterator it; | 1618 | Key::List::ConstIterator it; |
1619 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { | 1619 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { |
1620 | if ( (*it).type() == type ) { | 1620 | if ( (*it).type() == type ) { |
1621 | if ( type == Key::Custom ) { | 1621 | if ( type == Key::Custom ) { |
1622 | if ( customTypeString.isEmpty() ) { | 1622 | if ( customTypeString.isEmpty() ) { |
1623 | return *it; | 1623 | return *it; |
1624 | } else { | 1624 | } else { |
1625 | if ( (*it).customTypeString() == customTypeString ) | 1625 | if ( (*it).customTypeString() == customTypeString ) |
1626 | return (*it); | 1626 | return (*it); |
1627 | } | 1627 | } |
1628 | } else { | 1628 | } else { |
1629 | return *it; | 1629 | return *it; |
1630 | } | 1630 | } |
1631 | } | 1631 | } |
1632 | } | 1632 | } |
1633 | return Key( QString(), type ); | 1633 | return Key( QString(), type ); |
1634 | } | 1634 | } |
1635 | void Addressee::setKeys( const Key::List& list ) { | 1635 | void Addressee::setKeys( const Key::List& list ) { |
1636 | detach(); | 1636 | detach(); |
1637 | mData->keys = list; | 1637 | mData->keys = list; |
1638 | } | 1638 | } |
1639 | 1639 | ||
1640 | Key::List Addressee::keys() const | 1640 | Key::List Addressee::keys() const |
1641 | { | 1641 | { |
1642 | return mData->keys; | 1642 | return mData->keys; |
1643 | } | 1643 | } |
1644 | 1644 | ||
1645 | Key::List Addressee::keys( int type, QString customTypeString ) const | 1645 | Key::List Addressee::keys( int type, QString customTypeString ) const |
1646 | { | 1646 | { |
1647 | Key::List list; | 1647 | Key::List list; |
1648 | 1648 | ||
1649 | Key::List::ConstIterator it; | 1649 | Key::List::ConstIterator it; |
1650 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { | 1650 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { |
1651 | if ( (*it).type() == type ) { | 1651 | if ( (*it).type() == type ) { |
1652 | if ( type == Key::Custom ) { | 1652 | if ( type == Key::Custom ) { |
1653 | if ( customTypeString.isEmpty() ) { | 1653 | if ( customTypeString.isEmpty() ) { |
1654 | list.append(*it); | 1654 | list.append(*it); |
1655 | } else { | 1655 | } else { |
1656 | if ( (*it).customTypeString() == customTypeString ) | 1656 | if ( (*it).customTypeString() == customTypeString ) |
1657 | list.append(*it); | 1657 | list.append(*it); |
1658 | } | 1658 | } |
1659 | } else { | 1659 | } else { |
1660 | list.append(*it); | 1660 | list.append(*it); |
1661 | } | 1661 | } |
1662 | } | 1662 | } |
1663 | } | 1663 | } |
1664 | return list; | 1664 | return list; |
1665 | } | 1665 | } |
1666 | 1666 | ||
1667 | Key Addressee::findKey( const QString &id ) const | 1667 | Key Addressee::findKey( const QString &id ) const |
1668 | { | 1668 | { |
1669 | Key::List::ConstIterator it; | 1669 | Key::List::ConstIterator it; |
1670 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { | 1670 | for( it = mData->keys.begin(); it != mData->keys.end(); ++it ) { |
1671 | if ( (*it).id() == id ) { | 1671 | if ( (*it).id() == id ) { |
1672 | return *it; | 1672 | return *it; |
1673 | } | 1673 | } |
1674 | } | 1674 | } |
1675 | return Key(); | 1675 | return Key(); |
1676 | } | 1676 | } |
1677 | 1677 | ||
1678 | QString Addressee::asString() const | 1678 | QString Addressee::asString() const |
1679 | { | 1679 | { |
1680 | return "Smith, agent Smith..."; | 1680 | return "Smith, agent Smith..."; |
1681 | } | 1681 | } |
1682 | 1682 | ||
1683 | void Addressee::dump() const | 1683 | void Addressee::dump() const |
1684 | { | 1684 | { |
1685 | return; | 1685 | return; |
1686 | #if 0 | ||
1686 | kdDebug(5700) << "Addressee {" << endl; | 1687 | kdDebug(5700) << "Addressee {" << endl; |
1687 | 1688 | ||
1688 | kdDebug(5700) << " Uid: '" << uid() << "'" << endl; | 1689 | kdDebug(5700) << " Uid: '" << uid() << "'" << endl; |
1689 | 1690 | ||
1690 | kdDebug(5700) << " Name: '" << name() << "'" << endl; | 1691 | kdDebug(5700) << " Name: '" << name() << "'" << endl; |
1691 | kdDebug(5700) << " FormattedName: '" << formattedName() << "'" << endl; | 1692 | kdDebug(5700) << " FormattedName: '" << formattedName() << "'" << endl; |
1692 | kdDebug(5700) << " FamilyName: '" << familyName() << "'" << endl; | 1693 | kdDebug(5700) << " FamilyName: '" << familyName() << "'" << endl; |
1693 | kdDebug(5700) << " GivenName: '" << givenName() << "'" << endl; | 1694 | kdDebug(5700) << " GivenName: '" << givenName() << "'" << endl; |
1694 | kdDebug(5700) << " AdditionalName: '" << additionalName() << "'" << endl; | 1695 | kdDebug(5700) << " AdditionalName: '" << additionalName() << "'" << endl; |
1695 | kdDebug(5700) << " Prefix: '" << prefix() << "'" << endl; | 1696 | kdDebug(5700) << " Prefix: '" << prefix() << "'" << endl; |
1696 | kdDebug(5700) << " Suffix: '" << suffix() << "'" << endl; | 1697 | kdDebug(5700) << " Suffix: '" << suffix() << "'" << endl; |
1697 | kdDebug(5700) << " NickName: '" << nickName() << "'" << endl; | 1698 | kdDebug(5700) << " NickName: '" << nickName() << "'" << endl; |
1698 | kdDebug(5700) << " Birthday: '" << birthday().toString() << "'" << endl; | 1699 | kdDebug(5700) << " Birthday: '" << birthday().toString() << "'" << endl; |
1699 | kdDebug(5700) << " Mailer: '" << mailer() << "'" << endl; | 1700 | kdDebug(5700) << " Mailer: '" << mailer() << "'" << endl; |
1700 | kdDebug(5700) << " TimeZone: '" << timeZone().asString() << "'" << endl; | 1701 | kdDebug(5700) << " TimeZone: '" << timeZone().asString() << "'" << endl; |
1701 | kdDebug(5700) << " Geo: '" << geo().asString() << "'" << endl; | 1702 | kdDebug(5700) << " Geo: '" << geo().asString() << "'" << endl; |
1702 | kdDebug(5700) << " Title: '" << title() << "'" << endl; | 1703 | kdDebug(5700) << " Title: '" << title() << "'" << endl; |
1703 | kdDebug(5700) << " Role: '" << role() << "'" << endl; | 1704 | kdDebug(5700) << " Role: '" << role() << "'" << endl; |
1704 | kdDebug(5700) << " Organization: '" << organization() << "'" << endl; | 1705 | kdDebug(5700) << " Organization: '" << organization() << "'" << endl; |
1705 | kdDebug(5700) << " Note: '" << note() << "'" << endl; | 1706 | kdDebug(5700) << " Note: '" << note() << "'" << endl; |
1706 | kdDebug(5700) << " ProductId: '" << productId() << "'" << endl; | 1707 | kdDebug(5700) << " ProductId: '" << productId() << "'" << endl; |
1707 | kdDebug(5700) << " Revision: '" << revision().toString() << "'" << endl; | 1708 | kdDebug(5700) << " Revision: '" << revision().toString() << "'" << endl; |
1708 | kdDebug(5700) << " SortString: '" << sortString() << "'" << endl; | 1709 | kdDebug(5700) << " SortString: '" << sortString() << "'" << endl; |
1709 | kdDebug(5700) << " Url: '" << url().url() << "'" << endl; | 1710 | kdDebug(5700) << " Url: '" << url().url() << "'" << endl; |
1710 | kdDebug(5700) << " Secrecy: '" << secrecy().asString() << "'" << endl; | 1711 | kdDebug(5700) << " Secrecy: '" << secrecy().asString() << "'" << endl; |
1711 | kdDebug(5700) << " Logo: '" << logo().asString() << "'" << endl; | 1712 | kdDebug(5700) << " Logo: '" << logo().asString() << "'" << endl; |
1712 | kdDebug(5700) << " Photo: '" << photo().asString() << "'" << endl; | 1713 | kdDebug(5700) << " Photo: '" << photo().asString() << "'" << endl; |
1713 | kdDebug(5700) << " Sound: '" << sound().asString() << "'" << endl; | 1714 | kdDebug(5700) << " Sound: '" << sound().asString() << "'" << endl; |
1714 | kdDebug(5700) << " Agent: '" << agent().asString() << "'" << endl; | 1715 | kdDebug(5700) << " Agent: '" << agent().asString() << "'" << endl; |
1715 | 1716 | ||
1716 | kdDebug(5700) << " Emails {" << endl; | 1717 | kdDebug(5700) << " Emails {" << endl; |
1717 | QStringList e = emails(); | 1718 | QStringList e = emails(); |
1718 | QStringList::ConstIterator it; | 1719 | QStringList::ConstIterator it; |
1719 | for( it = e.begin(); it != e.end(); ++it ) { | 1720 | for( it = e.begin(); it != e.end(); ++it ) { |
1720 | kdDebug(5700) << " " << (*it) << endl; | 1721 | kdDebug(5700) << " " << (*it) << endl; |
1721 | } | 1722 | } |
1722 | kdDebug(5700) << " }" << endl; | 1723 | kdDebug(5700) << " }" << endl; |
1723 | 1724 | ||
1724 | kdDebug(5700) << " PhoneNumbers {" << endl; | 1725 | kdDebug(5700) << " PhoneNumbers {" << endl; |
1725 | PhoneNumber::List p = phoneNumbers(); | 1726 | PhoneNumber::List p = phoneNumbers(); |
1726 | PhoneNumber::List::ConstIterator it2; | 1727 | PhoneNumber::List::ConstIterator it2; |
1727 | for( it2 = p.begin(); it2 != p.end(); ++it2 ) { | 1728 | for( it2 = p.begin(); it2 != p.end(); ++it2 ) { |
1728 | kdDebug(5700) << " Type: " << int((*it2).type()) << " Number: " << (*it2).number() << endl; | 1729 | kdDebug(5700) << " Type: " << int((*it2).type()) << " Number: " << (*it2).number() << endl; |
1729 | } | 1730 | } |
1730 | kdDebug(5700) << " }" << endl; | 1731 | kdDebug(5700) << " }" << endl; |
1731 | 1732 | ||
1732 | Address::List a = addresses(); | 1733 | Address::List a = addresses(); |
1733 | Address::List::ConstIterator it3; | 1734 | Address::List::ConstIterator it3; |
1734 | for( it3 = a.begin(); it3 != a.end(); ++it3 ) { | 1735 | for( it3 = a.begin(); it3 != a.end(); ++it3 ) { |
1735 | (*it3).dump(); | 1736 | (*it3).dump(); |
1736 | } | 1737 | } |
1737 | 1738 | ||
1738 | kdDebug(5700) << " Keys {" << endl; | 1739 | kdDebug(5700) << " Keys {" << endl; |
1739 | Key::List k = keys(); | 1740 | Key::List k = keys(); |
1740 | Key::List::ConstIterator it4; | 1741 | Key::List::ConstIterator it4; |
1741 | for( it4 = k.begin(); it4 != k.end(); ++it4 ) { | 1742 | for( it4 = k.begin(); it4 != k.end(); ++it4 ) { |
1742 | kdDebug(5700) << " Type: " << int((*it4).type()) << | 1743 | kdDebug(5700) << " Type: " << int((*it4).type()) << |
1743 | " Key: " << (*it4).textData() << | 1744 | " Key: " << (*it4).textData() << |
1744 | " CustomString: " << (*it4).customTypeString() << endl; | 1745 | " CustomString: " << (*it4).customTypeString() << endl; |
1745 | } | 1746 | } |
1746 | kdDebug(5700) << " }" << endl; | 1747 | kdDebug(5700) << " }" << endl; |
1747 | 1748 | ||
1748 | kdDebug(5700) << "}" << endl; | 1749 | kdDebug(5700) << "}" << endl; |
1750 | #endif | ||
1749 | } | 1751 | } |
1750 | 1752 | ||
1751 | 1753 | ||
1752 | void Addressee::insertAddress( const Address &address ) | 1754 | void Addressee::insertAddress( const Address &address ) |
1753 | { | 1755 | { |
1754 | detach(); | 1756 | detach(); |
1755 | mData->empty = false; | 1757 | mData->empty = false; |
1756 | 1758 | ||
1757 | Address::List::Iterator it; | 1759 | Address::List::Iterator it; |
1758 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 1760 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
1759 | if ( (*it).id() == address.id() ) { | 1761 | if ( (*it).id() == address.id() ) { |
1760 | *it = address; | 1762 | *it = address; |
1761 | return; | 1763 | return; |
1762 | } | 1764 | } |
1763 | } | 1765 | } |
1764 | mData->addresses.append( address ); | 1766 | mData->addresses.append( address ); |
1765 | } | 1767 | } |
1766 | 1768 | ||
1767 | void Addressee::removeAddress( const Address &address ) | 1769 | void Addressee::removeAddress( const Address &address ) |
1768 | { | 1770 | { |
1769 | detach(); | 1771 | detach(); |
1770 | 1772 | ||
1771 | Address::List::Iterator it; | 1773 | Address::List::Iterator it; |
1772 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 1774 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
1773 | if ( (*it).id() == address.id() ) { | 1775 | if ( (*it).id() == address.id() ) { |
1774 | mData->addresses.remove( it ); | 1776 | mData->addresses.remove( it ); |
1775 | return; | 1777 | return; |
1776 | } | 1778 | } |
1777 | } | 1779 | } |
1778 | } | 1780 | } |
1779 | 1781 | ||
1780 | Address Addressee::address( int type ) const | 1782 | Address Addressee::address( int type ) const |
1781 | { | 1783 | { |
1782 | Address address( type ); | 1784 | Address address( type ); |
1783 | Address::List::ConstIterator it; | 1785 | Address::List::ConstIterator it; |
1784 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 1786 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
1785 | if ( matchBinaryPatternA( (*it).type(), type ) ) { | 1787 | if ( matchBinaryPatternA( (*it).type(), type ) ) { |
1786 | if ( (*it).type() & Address::Pref ) | 1788 | if ( (*it).type() & Address::Pref ) |
1787 | return (*it); | 1789 | return (*it); |
1788 | else if ( address.isEmpty() ) | 1790 | else if ( address.isEmpty() ) |
1789 | address = (*it); | 1791 | address = (*it); |
1790 | } | 1792 | } |
1791 | } | 1793 | } |
1792 | 1794 | ||
1793 | return address; | 1795 | return address; |
1794 | } | 1796 | } |
1795 | 1797 | ||
1796 | Address::List Addressee::addresses() const | 1798 | Address::List Addressee::addresses() const |
1797 | { | 1799 | { |
1798 | return mData->addresses; | 1800 | return mData->addresses; |
1799 | } | 1801 | } |
1800 | 1802 | ||
1801 | Address::List Addressee::addresses( int type ) const | 1803 | Address::List Addressee::addresses( int type ) const |
1802 | { | 1804 | { |
1803 | Address::List list; | 1805 | Address::List list; |
1804 | 1806 | ||
1805 | Address::List::ConstIterator it; | 1807 | Address::List::ConstIterator it; |
1806 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 1808 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
1807 | if ( matchBinaryPattern( (*it).type(), type ) ) { | 1809 | if ( matchBinaryPattern( (*it).type(), type ) ) { |
1808 | list.append( *it ); | 1810 | list.append( *it ); |
1809 | } | 1811 | } |
1810 | } | 1812 | } |
1811 | 1813 | ||
1812 | return list; | 1814 | return list; |
1813 | } | 1815 | } |
1814 | 1816 | ||
1815 | Address Addressee::findAddress( const QString &id ) const | 1817 | Address Addressee::findAddress( const QString &id ) const |
1816 | { | 1818 | { |
1817 | Address::List::ConstIterator it; | 1819 | Address::List::ConstIterator it; |
1818 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { | 1820 | for( it = mData->addresses.begin(); it != mData->addresses.end(); ++it ) { |
1819 | if ( (*it).id() == id ) { | 1821 | if ( (*it).id() == id ) { |
1820 | return *it; | 1822 | return *it; |
1821 | } | 1823 | } |
1822 | } | 1824 | } |
1823 | return Address(); | 1825 | return Address(); |
1824 | } | 1826 | } |
1825 | 1827 | ||
1826 | void Addressee::insertCategory( const QString &c ) | 1828 | void Addressee::insertCategory( const QString &c ) |
1827 | { | 1829 | { |
1828 | detach(); | 1830 | detach(); |
1829 | mData->empty = false; | 1831 | mData->empty = false; |
1830 | 1832 | ||
1831 | if ( mData->categories.contains( c ) ) return; | 1833 | if ( mData->categories.contains( c ) ) return; |
1832 | 1834 | ||
1833 | mData->categories.append( c ); | 1835 | mData->categories.append( c ); |
1834 | } | 1836 | } |
1835 | 1837 | ||
1836 | void Addressee::removeCategory( const QString &c ) | 1838 | void Addressee::removeCategory( const QString &c ) |
1837 | { | 1839 | { |
1838 | detach(); | 1840 | detach(); |
1839 | 1841 | ||
1840 | QStringList::Iterator it = mData->categories.find( c ); | 1842 | QStringList::Iterator it = mData->categories.find( c ); |
1841 | if ( it == mData->categories.end() ) return; | 1843 | if ( it == mData->categories.end() ) return; |
1842 | 1844 | ||
1843 | mData->categories.remove( it ); | 1845 | mData->categories.remove( it ); |
1844 | } | 1846 | } |
1845 | 1847 | ||
1846 | bool Addressee::hasCategory( const QString &c ) const | 1848 | bool Addressee::hasCategory( const QString &c ) const |
1847 | { | 1849 | { |
1848 | return ( mData->categories.contains( c ) ); | 1850 | return ( mData->categories.contains( c ) ); |
1849 | } | 1851 | } |
1850 | 1852 | ||
1851 | void Addressee::setCategories( const QStringList &c ) | 1853 | void Addressee::setCategories( const QStringList &c ) |
1852 | { | 1854 | { |
1853 | detach(); | 1855 | detach(); |
1854 | mData->empty = false; | 1856 | mData->empty = false; |
1855 | 1857 | ||
1856 | mData->categories = c; | 1858 | mData->categories = c; |
1857 | } | 1859 | } |
1858 | 1860 | ||
1859 | QStringList Addressee::categories() const | 1861 | QStringList Addressee::categories() const |
1860 | { | 1862 | { |
1861 | return mData->categories; | 1863 | return mData->categories; |
1862 | } | 1864 | } |
1863 | 1865 | ||
1864 | void Addressee::insertCustom( const QString &app, const QString &name, | 1866 | void Addressee::insertCustom( const QString &app, const QString &name, |
1865 | const QString &value ) | 1867 | const QString &value ) |
1866 | { | 1868 | { |
1867 | if ( value.isNull() || name.isEmpty() || app.isEmpty() ) return; | 1869 | if ( value.isNull() || name.isEmpty() || app.isEmpty() ) return; |
1868 | 1870 | ||
1869 | detach(); | 1871 | detach(); |
1870 | mData->empty = false; | 1872 | mData->empty = false; |
1871 | 1873 | ||
1872 | QString qualifiedName = app + "-" + name + ":"; | 1874 | QString qualifiedName = app + "-" + name + ":"; |
1873 | 1875 | ||
1874 | QStringList::Iterator it; | 1876 | QStringList::Iterator it; |
1875 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { | 1877 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { |
1876 | if ( (*it).startsWith( qualifiedName ) ) { | 1878 | if ( (*it).startsWith( qualifiedName ) ) { |
1877 | (*it) = qualifiedName + value; | 1879 | (*it) = qualifiedName + value; |
1878 | return; | 1880 | return; |
1879 | } | 1881 | } |
1880 | } | 1882 | } |
1881 | mData->custom.append( qualifiedName + value ); | 1883 | mData->custom.append( qualifiedName + value ); |
1882 | } | 1884 | } |
1883 | 1885 | ||
1884 | void Addressee::removeCustom( const QString &app, const QString &name) | 1886 | void Addressee::removeCustom( const QString &app, const QString &name) |
1885 | { | 1887 | { |
1886 | detach(); | 1888 | detach(); |
1887 | 1889 | ||
1888 | QString qualifiedName = app + "-" + name + ":"; | 1890 | QString qualifiedName = app + "-" + name + ":"; |
1889 | 1891 | ||
1890 | QStringList::Iterator it; | 1892 | QStringList::Iterator it; |
1891 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { | 1893 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { |
1892 | if ( (*it).startsWith( qualifiedName ) ) { | 1894 | if ( (*it).startsWith( qualifiedName ) ) { |
1893 | mData->custom.remove( it ); | 1895 | mData->custom.remove( it ); |
1894 | return; | 1896 | return; |
1895 | } | 1897 | } |
1896 | } | 1898 | } |
1897 | } | 1899 | } |
1898 | 1900 | ||
1899 | QString Addressee::custom( const QString &app, const QString &name ) const | 1901 | QString Addressee::custom( const QString &app, const QString &name ) const |
1900 | { | 1902 | { |
1901 | QString qualifiedName = app + "-" + name + ":"; | 1903 | QString qualifiedName = app + "-" + name + ":"; |
1902 | QString value; | 1904 | QString value; |
1903 | 1905 | ||
1904 | QStringList::ConstIterator it; | 1906 | QStringList::ConstIterator it; |
1905 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { | 1907 | for( it = mData->custom.begin(); it != mData->custom.end(); ++it ) { |
1906 | if ( (*it).startsWith( qualifiedName ) ) { | 1908 | if ( (*it).startsWith( qualifiedName ) ) { |
1907 | value = (*it).mid( (*it).find( ":" ) + 1 ); | 1909 | value = (*it).mid( (*it).find( ":" ) + 1 ); |
1908 | break; | 1910 | break; |
1909 | } | 1911 | } |
1910 | } | 1912 | } |
1911 | 1913 | ||
1912 | return value; | 1914 | return value; |
1913 | } | 1915 | } |
1914 | 1916 | ||
1915 | void Addressee::setCustoms( const QStringList &l ) | 1917 | void Addressee::setCustoms( const QStringList &l ) |
1916 | { | 1918 | { |
1917 | detach(); | 1919 | detach(); |
1918 | mData->empty = false; | 1920 | mData->empty = false; |
1919 | 1921 | ||
1920 | mData->custom = l; | 1922 | mData->custom = l; |
1921 | } | 1923 | } |
1922 | 1924 | ||
1923 | QStringList Addressee::customs() const | 1925 | QStringList Addressee::customs() const |
1924 | { | 1926 | { |
1925 | return mData->custom; | 1927 | return mData->custom; |
1926 | } | 1928 | } |
1927 | 1929 | ||
1928 | void Addressee::parseEmailAddress( const QString &rawEmail, QString &fullName, | 1930 | void Addressee::parseEmailAddress( const QString &rawEmail, QString &fullName, |
1929 | QString &email) | 1931 | QString &email) |
1930 | { | 1932 | { |
1931 | int startPos, endPos, len; | 1933 | int startPos, endPos, len; |
1932 | QString partA, partB, result; | 1934 | QString partA, partB, result; |
1933 | char endCh = '>'; | 1935 | char endCh = '>'; |
1934 | 1936 | ||
1935 | startPos = rawEmail.find('<'); | 1937 | startPos = rawEmail.find('<'); |
1936 | if (startPos < 0) | 1938 | if (startPos < 0) |
1937 | { | 1939 | { |
1938 | startPos = rawEmail.find('('); | 1940 | startPos = rawEmail.find('('); |
1939 | endCh = ')'; | 1941 | endCh = ')'; |
1940 | } | 1942 | } |