Diffstat (limited to 'kaddressbook/xxportmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kaddressbook/xxportmanager.h | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/kaddressbook/xxportmanager.h b/kaddressbook/xxportmanager.h new file mode 100644 index 0000000..f8436ed --- a/dev/null +++ b/kaddressbook/xxportmanager.h | |||
@@ -0,0 +1,79 @@ | |||
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 | /* | ||
25 | Enhanced Version of the file for platform independent KDE tools. | ||
26 | Copyright (c) 2004 Ulf Schenk | ||
27 | |||
28 | $Id$ | ||
29 | */ | ||
30 | |||
31 | |||
32 | #ifndef XXPORTMANAGER_H | ||
33 | #define XXPORTMANAGER_H | ||
34 | |||
35 | #include <qdict.h> | ||
36 | #include <qobject.h> | ||
37 | |||
38 | #include <kurl.h> | ||
39 | |||
40 | #include "xxportobject.h" | ||
41 | |||
42 | class KABCore; | ||
43 | |||
44 | class XXPortManager : public QObject | ||
45 | { | ||
46 | Q_OBJECT | ||
47 | |||
48 | public: | ||
49 | XXPortManager( KABCore *core, QObject *parent, const char *name = 0 ); | ||
50 | ~XXPortManager(); | ||
51 | |||
52 | void restoreSettings(); | ||
53 | void saveSettings(); | ||
54 | |||
55 | static KURL importURL; | ||
56 | static QString importData; | ||
57 | |||
58 | public slots: | ||
59 | void importVCard( const KURL &url ); | ||
60 | void importVCard( const KURL &url, bool showPreview ); | ||
61 | void importVCard( const QString &vCard, bool showPreview ); | ||
62 | |||
63 | signals: | ||
64 | void modified(); | ||
65 | |||
66 | protected slots: | ||
67 | void slotImport( const QString&, const QString& ); | ||
68 | void slotExport( const QString&, const QString& ); | ||
69 | |||
70 | private: | ||
71 | void loadPlugins(); | ||
72 | |||
73 | QDict<XXPortObject> mXXPortObjects; | ||
74 | |||
75 | KABCore *mCore; | ||
76 | bool mShowPreview; | ||
77 | }; | ||
78 | |||
79 | #endif | ||