You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
2.5 KiB
100 lines
2.5 KiB
#include <vcardparser.h>
|
|
#include <tdeabc/addressee.h>
|
|
#include <tqfile.h>
|
|
|
|
using namespace TDEABC;
|
|
|
|
Addressee
|
|
vcard1()
|
|
{
|
|
Addressee addr;
|
|
|
|
addr.setName( "Frank Dawson" );
|
|
addr.setOrganization( "Lotus Development Corporation" );
|
|
addr.setUrl( KURL( "http://home.earthlink.net/~fdawson") );
|
|
addr.insertEmail( "fdawson@earthlink.net" );
|
|
addr.insertEmail( "Frank_Dawson@Lotus.com", true );
|
|
addr.insertPhoneNumber( PhoneNumber("+1-919-676-9515",PhoneNumber::Voice|PhoneNumber::Msg
|
|
|PhoneNumber::Work ) );
|
|
addr.insertPhoneNumber( PhoneNumber("+1-919-676-9564",PhoneNumber::Fax |PhoneNumber::Work ));
|
|
Address a( Address::Work | Address::Postal | Address::Parcel );
|
|
a.setStreet( "6544 Battleford Drive" );
|
|
a.setLocality( "Raleigh" );
|
|
a.setRegion( "NC" );
|
|
a.setPostalCode( "27613-3502" );
|
|
a.setCountry( "U.S.A." );
|
|
addr.insertAddress( a );
|
|
return addr;
|
|
}
|
|
|
|
Addressee
|
|
vcard2()
|
|
{
|
|
Addressee addr;
|
|
|
|
addr.setName( "Tim Howes" );
|
|
addr.setOrganization( "Netscape Communications Corp." );
|
|
addr.insertEmail( "howes@netscape.com" );
|
|
addr.insertPhoneNumber( PhoneNumber("+1-415-937-3419",PhoneNumber::Voice|PhoneNumber::Msg
|
|
|PhoneNumber::Work) );
|
|
addr.insertPhoneNumber( PhoneNumber("+1-415-528-4164",PhoneNumber::Fax |PhoneNumber::Work) );
|
|
Address a( Address::Work );
|
|
a.setStreet( "501 E. Middlefield Rd." );
|
|
a.setLocality( "Mountain View" );
|
|
a.setRegion( "CA" );
|
|
a.setPostalCode( "94043" );
|
|
a.setCountry( "U.S.A." );
|
|
addr.insertAddress( a );
|
|
return addr;
|
|
}
|
|
|
|
Addressee
|
|
vcard3()
|
|
{
|
|
Addressee addr;
|
|
|
|
addr.setName( "ian geiser" );
|
|
addr.setOrganization( "Source eXtreme" );
|
|
addr.insertEmail( "geiseri@yahoo.com" );
|
|
addr.setTitle( "VP of Engineering" );
|
|
return addr;
|
|
}
|
|
|
|
|
|
QString
|
|
vcardAsText( const TQString& location )
|
|
{
|
|
TQString line;
|
|
TQFile file( location );
|
|
if ( file.open( IO_ReadOnly ) ) {
|
|
TQTextStream stream( &file );
|
|
if ( !stream.eof() ) {
|
|
line = stream.read();
|
|
}
|
|
file.close();
|
|
}
|
|
return line;
|
|
}
|
|
|
|
Addressee::List
|
|
vCardsAsAddresseeList()
|
|
{
|
|
Addressee::List l;
|
|
|
|
l.append( vcard1() );
|
|
l.append( vcard2() );
|
|
l.append( vcard3() );
|
|
|
|
return l;
|
|
}
|
|
|
|
QString
|
|
vCardsAsText()
|
|
{
|
|
TQString vcards = vcardAsText( "tests/vcard1.vcf" );
|
|
vcards += vcardAsText( "tests/vcard2.vcf" );
|
|
vcards += vcardAsText( "tests/vcard3.vcf" );
|
|
|
|
return vcards;
|
|
}
|