author | eilers <eilers> | 2002-10-13 11:20:14 (UTC) |
---|---|---|
committer | eilers <eilers> | 2002-10-13 11:20:14 (UTC) |
commit | 1cbed80910293516879d9b9308ae36072033f70e (patch) (unidiff) | |
tree | 8120412641f9937eab9f2bb2fd60fb705ef10708 /libopie | |
parent | 901531f0afcd36e5260cc4b452dde359d82bce85 (diff) | |
download | opie-1cbed80910293516879d9b9308ae36072033f70e.zip opie-1cbed80910293516879d9b9308ae36072033f70e.tar.gz opie-1cbed80910293516879d9b9308ae36072033f70e.tar.bz2 |
Now returning untranslated field names, too
-rw-r--r-- | libopie/pim/ocontact.cpp | 62 | ||||
-rw-r--r-- | libopie/pim/ocontact.h | 1 |
2 files changed, 63 insertions, 0 deletions
diff --git a/libopie/pim/ocontact.cpp b/libopie/pim/ocontact.cpp index a63753e..6f648ac 100644 --- a/libopie/pim/ocontact.cpp +++ b/libopie/pim/ocontact.cpp | |||
@@ -949,12 +949,74 @@ QStringList OContact::trfields() | |||
949 | list.append( QObject::tr( "Groups" ) ); | 949 | list.append( QObject::tr( "Groups" ) ); |
950 | 950 | ||
951 | return list; | 951 | return list; |
952 | } | 952 | } |
953 | 953 | ||
954 | /*! | 954 | /*! |
955 | \internal | ||
956 | Returns an untranslated list of field names for a contact. | ||
957 | */ | ||
958 | QStringList OContact::untrfields() | ||
959 | { | ||
960 | QStringList list; | ||
961 | |||
962 | list.append( "Name Title" ); | ||
963 | list.append( "First Name" ); | ||
964 | list.append( "Middle Name" ); | ||
965 | list.append( "Last Name" ); | ||
966 | list.append( "Suffix" ); | ||
967 | list.append( "File As" ); | ||
968 | |||
969 | list.append( "Job Title" ); | ||
970 | list.append( "Department" ); | ||
971 | list.append( "Company" ); | ||
972 | list.append( "Business Phone" ); | ||
973 | list.append( "Business Fax" ); | ||
974 | list.append( "Business Mobile" ); | ||
975 | |||
976 | list.append( "Default Email" ); | ||
977 | list.append( "Emails" ); | ||
978 | |||
979 | list.append( "Home Phone" ); | ||
980 | list.append( "Home Fax" ); | ||
981 | list.append( "Home Mobile" ); | ||
982 | |||
983 | list.append( "Business Street" ); | ||
984 | list.append( "Business City" ); | ||
985 | list.append( "Business State" ); | ||
986 | list.append( "Business Zip" ); | ||
987 | list.append( "Business Country" ); | ||
988 | list.append( "Business Pager" ); | ||
989 | list.append( "Business WebPage" ); | ||
990 | |||
991 | list.append( "Office" ); | ||
992 | list.append( "Profession" ); | ||
993 | list.append( "Assistant" ); | ||
994 | list.append( "Manager" ); | ||
995 | |||
996 | list.append( "Home Street" ); | ||
997 | list.append( "Home City" ); | ||
998 | list.append( "Home State" ); | ||
999 | list.append( "Home Zip" ); | ||
1000 | list.append( "Home Country" ); | ||
1001 | list.append( "Home Web Page" ); | ||
1002 | |||
1003 | list.append( "Spouse" ); | ||
1004 | list.append( "Gender" ); | ||
1005 | list.append( "Birthday" ); | ||
1006 | list.append( "Anniversary" ); | ||
1007 | list.append( "Nickname" ); | ||
1008 | list.append( "Children" ); | ||
1009 | |||
1010 | list.append( "Notes" ); | ||
1011 | list.append( "Groups" ); | ||
1012 | |||
1013 | return list; | ||
1014 | } | ||
1015 | |||
1016 | /*! | ||
955 | Sets the list of email address for contact to those contained in \a str. | 1017 | Sets the list of email address for contact to those contained in \a str. |
956 | Email address should be separated by ';'s. | 1018 | Email address should be separated by ';'s. |
957 | */ | 1019 | */ |
958 | void OContact::setEmails( const QString &str ) | 1020 | void OContact::setEmails( const QString &str ) |
959 | { | 1021 | { |
960 | replace( Qtopia::Emails, str ); | 1022 | replace( Qtopia::Emails, str ); |
diff --git a/libopie/pim/ocontact.h b/libopie/pim/ocontact.h index 756c87d..f916cf2 100644 --- a/libopie/pim/ocontact.h +++ b/libopie/pim/ocontact.h | |||
@@ -187,12 +187,13 @@ public: | |||
187 | // // custom | 187 | // // custom |
188 | // const QString &customField( const QString &key ) | 188 | // const QString &customField( const QString &key ) |
189 | // { return find( Custom- + key ); } | 189 | // { return find( Custom- + key ); } |
190 | 190 | ||
191 | static QStringList fields(); | 191 | static QStringList fields(); |
192 | static QStringList trfields(); | 192 | static QStringList trfields(); |
193 | static QStringList untrfields(); | ||
193 | 194 | ||
194 | QString toRichText() const; | 195 | QString toRichText() const; |
195 | QMap<int, QString> toMap() const; | 196 | QMap<int, QString> toMap() const; |
196 | QString field( int key ) const { return find( key ); } | 197 | QString field( int key ) const { return find( key ); } |
197 | 198 | ||
198 | 199 | ||