blob: b48352346c6517671d961bb7172a25e24a9983ae (
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
|
/* 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>
namespace KABC {
class AddressBook;
}
class TQWidget;
class KDE_EXPORT KAddrBookExternal {
public:
static void addEmail( const TQString &addr, TQWidget *tqparent );
static void addNewAddressee( TQWidget* );
static void openEmail( const TQString &addr, TQWidget *tqparent );
static void openAddressBook( TQWidget *tqparent );
static bool addVCard( const KABC::Addressee& addressee, TQWidget *tqparent );
static TQString expandDistributionList( const TQString& listName );
/**
* Pops up a dialog to ask the user to select a resource for saving something, and
* returns the selected resource or 0 on failure or if the user cancelled.
*
* The addressbook used to get the resource list from. If the addressbook was loaded
* async and loading is not yet finished, this method will run an eventloop until the
* addressbook is loaded.
*/
static KABC::Resource* selectResourceForSaving( KABC::AddressBook *addressBook );
private:
static bool addAddressee( const KABC::Addressee& addressee );
};
#endif /*KAddrBook_h*/
|