summaryrefslogtreecommitdiffstats
path: root/kabc/vcardparser/testwrite.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-15 21:57:54 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-15 21:57:54 -0600
commited99a30644c19b0a3cf0d2147243532df4daa16b (patch)
tree7f3f2850e59824fdf100a642367a82b1e7f0204f /kabc/vcardparser/testwrite.cpp
parente5f2d46e9caf6942f365f1b454087dda71a340f7 (diff)
downloadtdelibs-ed99a30644c19b0a3cf0d2147243532df4daa16b.tar.gz
tdelibs-ed99a30644c19b0a3cf0d2147243532df4daa16b.zip
Rename additional header files to avoid conflicts with KDE4
Diffstat (limited to 'kabc/vcardparser/testwrite.cpp')
-rw-r--r--kabc/vcardparser/testwrite.cpp134
1 files changed, 0 insertions, 134 deletions
diff --git a/kabc/vcardparser/testwrite.cpp b/kabc/vcardparser/testwrite.cpp
deleted file mode 100644
index 5a58bd8a8..000000000
--- a/kabc/vcardparser/testwrite.cpp
+++ /dev/null
@@ -1,134 +0,0 @@
-/*
- This file is part of libkabc.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include <kabc/addressee.h>
-#include <kabc/phonenumber.h>
-#include <kabc/address.h>
-#include <kabc/key.h>
-#include <kabc/picture.h>
-#include <kabc/sound.h>
-#include <kabc/secrecy.h>
-#include <tdeaboutdata.h>
-#include <tdeapplication.h>
-#include <tdecmdlineargs.h>
-
-#include <tqfile.h>
-#include <tqtextstream.h>
-
-#include "vcardconverter.h"
-
-int main( int argc, char **argv )
-{
- TDEAboutData aboutData( "testwrite", "vCard test writer", "0.1" );
-
- TDECmdLineArgs::init( argc, argv, &aboutData );
-
- TDEApplication app( false, false );
-
-
- KABC::Addressee addressee;
-
- addressee.setNameFromString( "Mr. Tobias Koenig Jr." );
- addressee.setNickName( "tokoe" );
- addressee.setBirthday( TQDate( 1982, 7, 19 ) );
- addressee.setMailer( "mutt1.2" );
- addressee.setTimeZone( KABC::TimeZone( +2 ) );
-
- KABC::Geo geo;
- geo.setLatitude( 30 );
- geo.setLongitude( 51 );
- addressee.setGeo( geo );
-
- addressee.setTitle( "nerd" );
- addressee.setRole( "Maintainer" );
- addressee.setOrganization( "KDE" );
- addressee.setNote( "nerver\ntouch a running system" );
- addressee.setProductId( "testId" );
- addressee.setRevision( TQDateTime::currentDateTime() );
- addressee.setSortString( "koenig" );
- addressee.setUrl( KURL( "http://wgess16.dyndns.org") );
- addressee.setSecrecy( KABC::Secrecy( KABC::Secrecy::Confidential ) );
-/*
- TQImage img;
- img.load( "testimg.png", "PNG" );
- KABC::Picture photo;
- photo.setData( img );
- addressee.setPhoto( photo );
-
- TQImage img2;
- img2.load( "testimg.png", "PNG" );
- KABC::Picture logo;
- logo.setData( img2 );
- addressee.setLogo( logo );
-
- TQFile soundFile( "testsound.wav" );
- soundFile.open( IO_ReadOnly );
- TQByteArray data = soundFile.readAll();
- soundFile.close();
- KABC::Sound sound;
- sound.setData( data );
- addressee.setSound( sound );
-*/
- addressee.insertEmail( "tokoe@kde.org", true );
- addressee.insertEmail( "tokoe82@yahoo.de", true );
-
- KABC::PhoneNumber phone1( "3541523475", KABC::PhoneNumber::Pref | KABC::PhoneNumber::Home );
- KABC::PhoneNumber phone2( "+46745673475", KABC::PhoneNumber::Work );
- addressee.insertPhoneNumber( phone1 );
- addressee.insertPhoneNumber( phone2 );
-
- KABC::Key key( "secret key", KABC::Key::X509 );
- addressee.insertKey( key );
-
- TQStringList categories;
- categories << "Friends" << "School" << "KDE";
- addressee.setCategories( categories );
-
- KABC::Address a( KABC::Address::Work | KABC::Address::Postal | KABC::Address::Parcel );
- a.setStreet( "6544 Battleford Drive" );
- a.setLocality( "Raleigh" );
- a.setRegion( "NC" );
- a.setPostalCode( "27613-3502" );
- a.setCountry( "U.S.A." );
- addressee.insertAddress( a );
-
- addressee.insertCustom( "1hsdf", "ertuer", "iurt" );
- addressee.insertCustom( "2hsdf", "ertuer", "iurt" );
- addressee.insertCustom( "3hsdf", "ertuer", "iurt" );
-
- KABC::Addressee::List list;
- for ( int i = 0; i < 1000; ++i ) {
- KABC::Addressee addr = addressee;
- addr.setUid( TQString::number( i ) );
- list.append( addr );
- }
-
- KABC::VCardConverter converter;
- TQString txt = converter.createVCards( list );
-
- TQFile file( "out.vcf" );
- file.open( IO_WriteOnly );
-
- TQTextStream s( &file );
- s.setEncoding( TQTextStream::UnicodeUTF8 );
- s << txt;
- file.close();
-
- return 0;
-}