author | eilers <eilers> | 2002-10-13 11:20:14 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-10-13 11:20:14 (UTC) |
commit | 1cbed80910293516879d9b9308ae36072033f70e (patch) (side-by-side diff) | |
tree | 8120412641f9937eab9f2bb2fd60fb705ef10708 /libopie2/opiepim | |
parent | 901531f0afcd36e5260cc4b452dde359d82bce85 (diff) | |
download | opie-1cbed80910293516879d9b9308ae36072033f70e.zip opie-1cbed80910293516879d9b9308ae36072033f70e.tar.gz opie-1cbed80910293516879d9b9308ae36072033f70e.tar.bz2 |
Now returning untranslated field names, too
-rw-r--r-- | libopie2/opiepim/ocontact.cpp | 62 | ||||
-rw-r--r-- | libopie2/opiepim/ocontact.h | 1 |
2 files changed, 63 insertions, 0 deletions
diff --git a/libopie2/opiepim/ocontact.cpp b/libopie2/opiepim/ocontact.cpp index a63753e..6f648ac 100644 --- a/libopie2/opiepim/ocontact.cpp +++ b/libopie2/opiepim/ocontact.cpp @@ -953,4 +953,66 @@ QStringList OContact::trfields() /*! + \internal + Returns an untranslated list of field names for a contact. +*/ +QStringList OContact::untrfields() +{ + QStringList list; + + list.append( "Name Title" ); + list.append( "First Name" ); + list.append( "Middle Name" ); + list.append( "Last Name" ); + list.append( "Suffix" ); + list.append( "File As" ); + + list.append( "Job Title" ); + list.append( "Department" ); + list.append( "Company" ); + list.append( "Business Phone" ); + list.append( "Business Fax" ); + list.append( "Business Mobile" ); + + list.append( "Default Email" ); + list.append( "Emails" ); + + list.append( "Home Phone" ); + list.append( "Home Fax" ); + list.append( "Home Mobile" ); + + list.append( "Business Street" ); + list.append( "Business City" ); + list.append( "Business State" ); + list.append( "Business Zip" ); + list.append( "Business Country" ); + list.append( "Business Pager" ); + list.append( "Business WebPage" ); + + list.append( "Office" ); + list.append( "Profession" ); + list.append( "Assistant" ); + list.append( "Manager" ); + + list.append( "Home Street" ); + list.append( "Home City" ); + list.append( "Home State" ); + list.append( "Home Zip" ); + list.append( "Home Country" ); + list.append( "Home Web Page" ); + + list.append( "Spouse" ); + list.append( "Gender" ); + list.append( "Birthday" ); + list.append( "Anniversary" ); + list.append( "Nickname" ); + list.append( "Children" ); + + list.append( "Notes" ); + list.append( "Groups" ); + + return list; +} + +/*! Sets the list of email address for contact to those contained in \a str. Email address should be separated by ';'s. diff --git a/libopie2/opiepim/ocontact.h b/libopie2/opiepim/ocontact.h index 756c87d..f916cf2 100644 --- a/libopie2/opiepim/ocontact.h +++ b/libopie2/opiepim/ocontact.h @@ -191,4 +191,5 @@ public: static QStringList fields(); static QStringList trfields(); + static QStringList untrfields(); QString toRichText() const; |