You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
580 B
28 lines
580 B
/* Simple Addressbook for KMail |
|
* Author: Stefan Taferner <taferner@kde.org> |
|
* This code is under GPL |
|
*/ |
|
#ifndef KMAddrBook_h |
|
#define KMAddrBook_h |
|
|
|
#include <qstringlist.h> |
|
|
|
#include <kdeversion.h> |
|
#include <kabc/addressee.h> |
|
|
|
class QWidget; |
|
|
|
class KabcBridge { |
|
public: |
|
static QStringList addresses(); |
|
static void addresses(QStringList& result); |
|
static QString expandNickName( const QString& nickName ); |
|
/** |
|
Returns all categories found in the addressbook. |
|
@return A list of the categories |
|
*/ |
|
static QStringList categories(); |
|
}; |
|
|
|
|
|
#endif /*KMAddrBook_h*/
|
|
|