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.
63 lines
1.3 KiB
63 lines
1.3 KiB
12 years ago
|
#include <tdeaboutdata.h>
|
||
|
#include <tdeapplication.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
12 years ago
|
#include <tdelocale.h>
|
||
12 years ago
|
#include <tdecmdlineargs.h>
|
||
15 years ago
|
#include <kstandarddirs.h>
|
||
|
|
||
14 years ago
|
#include <tqfile.h>
|
||
|
#include <tqimage.h>
|
||
15 years ago
|
|
||
|
#include "geo.h"
|
||
|
#include "secrecy.h"
|
||
|
#include "stdaddressbook.h"
|
||
|
#include "timezone.h"
|
||
|
#include "key.h"
|
||
|
#include "agent.h"
|
||
|
#include "vcardconverter.h"
|
||
|
|
||
|
using namespace KABC;
|
||
|
|
||
|
int main(int argc,char **argv)
|
||
|
{
|
||
12 years ago
|
TDEAboutData aboutData("testkabc",I18N_NOOP("TestKabc"),"0.1");
|
||
12 years ago
|
TDECmdLineArgs::init(argc, argv, &aboutData);
|
||
15 years ago
|
|
||
12 years ago
|
TDEApplication app( false, false );
|
||
15 years ago
|
AddressBook *ab = StdAddressBook::self();
|
||
|
|
||
|
#define READ
|
||
|
|
||
|
#ifdef READ
|
||
|
AddressBook::Iterator it;
|
||
|
for ( it = ab->begin(); it != ab->end(); ++it ) {
|
||
14 years ago
|
TQString vcard;
|
||
15 years ago
|
VCardConverter converter;
|
||
|
converter.addresseeToVCard( *it, vcard );
|
||
|
kdDebug() << "card=" << vcard << endl;
|
||
|
}
|
||
|
#else
|
||
|
Addressee addr;
|
||
|
|
||
|
addr.setGivenName("Tobias");
|
||
|
addr.setFamilyName("Koenig");
|
||
|
|
||
|
|
||
|
Picture pic;
|
||
14 years ago
|
TQImage img;
|
||
15 years ago
|
img.load("/home/tobias/test.png");
|
||
|
/*
|
||
|
pic.setData(img);
|
||
14 years ago
|
pic.setType(TQImage::imageFormat("/home/tobias/test.png"));
|
||
15 years ago
|
*/
|
||
|
pic.setUrl("http://www.mypict.de");
|
||
|
addr.setLogo( pic );
|
||
|
|
||
|
ab->insertAddressee( addr );
|
||
|
|
||
|
StdAddressBook::save();
|
||
|
#endif
|
||
|
|
||
|
return 0;
|
||
|
}
|