blob: 2cc7effb44b3c5ac5ca16e43ffc299d5db119ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include <tdeaboutdata.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <tdelocale.h>
#include <tdecmdlineargs.h>
#include <kstandarddirs.h>
#include <tqfile.h>
#include <tqimage.h>
#include "geo.h"
#include "secrecy.h"
#include "stdaddressbook.h"
#include "timezone.h"
#include "key.h"
#include "agent.h"
#include "vcardconverter.h"
using namespace TDEABC;
int main(int argc,char **argv)
{
TDEAboutData aboutData("testkabc",I18N_NOOP("TestKabc"),"0.1");
TDECmdLineArgs::init(argc, argv, &aboutData);
TDEApplication app( false, false );
AddressBook *ab = StdAddressBook::self();
#define READ
#ifdef READ
AddressBook::Iterator it;
for ( it = ab->begin(); it != ab->end(); ++it ) {
TQString vcard;
VCardConverter converter;
converter.addresseeToVCard( *it, vcard );
kdDebug() << "card=" << vcard << endl;
}
#else
Addressee addr;
addr.setGivenName("Tobias");
addr.setFamilyName("Koenig");
Picture pic;
TQImage img;
img.load("/home/tobias/test.png");
/*
pic.setData(img);
pic.setType(TQImage::imageFormat("/home/tobias/test.png"));
*/
pic.setUrl("http://www.mypict.de");
addr.setLogo( pic );
ab->insertAddressee( addr );
StdAddressBook::save();
#endif
return 0;
}
|