blob: dfa65823fbffedacc4ee406ce7934de6c7dee55c (
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
|
/* Simple Addressbook for KMail
* Author: Stefan Taferner <taferner@kde.org>
* This code is under GPL
*/
#ifndef KAddrBook_h
#define KAddrBook_h
#include <tqstringlist.h>
#include <kdeversion.h>
#include <kabc/addressee.h>
#include <kdepimmacros.h>
class TQWidget;
class KDE_EXPORT KAddrBookExternal {
public:
static void addEmail( const TQString &addr, TQWidget *parent );
static void addNewAddressee( TQWidget* );
static void openEmail( const TQString &addr, TQWidget *parent );
static void openAddressBook( TQWidget *parent );
static bool addVCard( const KABC::Addressee& addressee, TQWidget *parent );
static TQString expandDistributionList( const TQString& listName );
private:
static bool addAddressee( const KABC::Addressee& addressee );
};
#endif /*KAddrBook_h*/
|