summaryrefslogtreecommitdiffabout
path: root/kaddressbook/xxport/csv_xxport.h
Unidiff
Diffstat (limited to 'kaddressbook/xxport/csv_xxport.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/xxport/csv_xxport.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/kaddressbook/xxport/csv_xxport.h b/kaddressbook/xxport/csv_xxport.h
new file mode 100644
index 0000000..fe6b3c6
--- a/dev/null
+++ b/kaddressbook/xxport/csv_xxport.h
@@ -0,0 +1,68 @@
1/*
2 This file is part of KAddressbook.
3 Copyright (c) 2003 Tobias Koenig <tokoe@kde.org>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program 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
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
22*/
23
24/*
25Enhanced Version of the file for platform independent KDE tools.
26Copyright (c) 2004 Ulf Schenk
27
28$Id$
29*/
30
31#ifndef CSV_XXPORT_H
32#define CSV_XXPORT_H
33
34#include <xxportobject.h>
35
36class QFile;
37
38
39class CSVXXPort : public XXPortObject
40{
41 Q_OBJECT
42
43 public:
44 CSVXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name = 0 );
45
46 QString identifier() const { return "csv"; }
47
48 public slots:
49 bool exportContacts( const KABC::AddresseeList &list, const QString &data );
50 KABC::AddresseeList importContacts( const QString &data ) const;
51
52 private:
53 void doExport( QFile *fp, const KABC::AddresseeList &list );
54};
55
56#ifdef KAB_EMBEDDED
57class CSVXXPortFactory : public XXPortFactory
58{
59 public:
60 XXPortObject *xxportObject( KABC::AddressBook *ab, QWidget *parent, const char *name )
61 {
62 return new CSVXXPort( ab, parent, name );
63 }
64};
65#endif //KAB_EMBEDDED
66
67
68#endif