addresseeconfig.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef ADDRESSEECONFIG_H
00025 #define ADDRESSEECONFIG_H
00026
00027 #include <kabc/addressee.h>
00028 #include <kconfig.h>
00029
00030 using namespace KABC;
00031
00032 class AddresseeConfig
00033 {
00034 public:
00035 AddresseeConfig();
00036 AddresseeConfig( const Addressee &addr );
00037
00038 void setAddressee( const Addressee &addr );
00039 Addressee addressee();
00040
00041 void setAutomaticNameParsing( bool value );
00042 bool automaticNameParsing();
00043
00044 void setNoDefaultAddrTypes( const QValueList<int> &types );
00045 QValueList<int> noDefaultAddrTypes() const;
00046
00047 void remove();
00048
00049 private:
00050 Addressee mAddressee;
00051 };
00052
00053 #endif
This file is part of the documentation for kaddressbook Library Version 3.2.2.