• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeabc
 

tdeabc

  • tdeabc
vcardconverter.h
1/*
2 This file is part of libtdeabc.
3 Copyright (c) 2002 Tobias Koenig <tokoe@kde.org>
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
14
15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
19*/
20
21#ifndef KABC_VCARDCONVERTER_H
22#define KABC_VCARDCONVERTER_H
23
24#include <tqstring.h>
25
26#include "addressee.h"
27
28namespace TDEABC {
29
53class KABC_EXPORT VCardConverter
54{
55 public:
56
61 enum Version
62 {
63 v2_1,
64 v3_0
65 };
66
70 VCardConverter();
71
75 ~VCardConverter();
76
84 TQString createVCard( const Addressee &addr, Version version = v3_0 );
85
93 // FIXME: Add error handling
94 TQString createVCards( Addressee::List list, Version version = v3_0 );
95
96 // FIXME: Add "createVCards( AddressBook * )"
97
101 Addressee parseVCard( const TQString& vcard );
102
106 // FIXME: Add error handling
107 Addressee::List parseVCards( const TQString& vcard );
108
109 // FIXME: Add "bool parseVCards( AddressBook *, const TQString &vcard )"
110
114 bool vCardToAddressee( const TQString&, Addressee &, Version version = v3_0 ) TDE_DEPRECATED;
115
119 bool addresseeToVCard( const Addressee&, TQString&, Version version = v3_0 ) TDE_DEPRECATED;
120
121 private:
126 TQStringList splitString( const TQChar &sep, const TQString &value );
127
128 struct VCardConverterData;
129 VCardConverterData *d;
130};
131
132
143KABC_EXPORT TQString dateToVCardString( const TQDateTime &dateTime );
144
151KABC_EXPORT TQString dateToVCardString( const TQDate &date );
152
160KABC_EXPORT TQDateTime VCardStringToDate( const TQString &dateString );
161
162}
163#endif
TDEABC::Addressee
address book entry
Definition: addressee.src.h:75
TDEABC::VCardConverter
Class to converting contact objects into vCard format and vice versa.
Definition: vcardconverter.h:54
TDEABC::VCardConverter::Version
Version
Definition: vcardconverter.h:62
TDEABC
static data, shared by ALL addressee objects
Definition: address.h:48
TDEABC::dateToVCardString
KABC_EXPORT TQString dateToVCardString(const TQDateTime &dateTime)
Helper functions.
Definition: vcardconverter.cpp:104
TDEABC::VCardStringToDate
KABC_EXPORT TQDateTime VCardStringToDate(const TQString &dateString)
Converts a date string as it is used in VCard and LDIF files to a TQDateTime value.
Definition: vcardconverter.cpp:114

tdeabc

Skip menu "tdeabc"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members
  • Related Pages

tdeabc

Skip menu "tdeabc"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeabc by doxygen 1.9.4
This website is maintained by Timothy Pearson.