2 This file is part of KAddressBook.
4 Copyright (c) 2009 Tobias Koenig <tokoe@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef CONTACTFIELDS_H
22 #define CONTACTFIELDS_H
24 #include <KContacts/Addressee>
31 * Describes the standard fields that are available for every contact
48 HomeAddressPostOfficeBox
,
51 HomeAddressPostalCode
,
55 BusinessAddressStreet
,
56 BusinessAddressPostOfficeBox
,
57 BusinessAddressLocality
,
58 BusinessAddressRegion
,
59 BusinessAddressPostalCode
,
60 BusinessAddressCountry
,
93 * Defines a list of Field enums.
95 typedef QVector
<Field
> Fields
;
98 * Returns the i18n label for the @p field.
100 static QString
label(Field field
);
103 * Returns a list of all available fields.
105 static Fields
allFields();
108 * Sets the @p value of the @p field for the @p contact.
110 static void setValue(Field field
, const QString
&value
, KContacts::Addressee
&contact
);
113 * Returns the value for the @p field of the @p contact.
115 static QString
value(Field field
, const KContacts::Addressee
&contact
);