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 | |
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 | ||||
-rw-r--r-- | libopie2/opiepim/ocontact.cpp | 62 | ||||
-rw-r--r-- | libopie2/opiepim/ocontact.h | 1 |
4 files changed, 126 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 | |||
@@ -907,96 +907,158 @@ QStringList OContact::trfields() | |||
907 | list.append( QObject::tr( "Job Title" ) ); | 907 | list.append( QObject::tr( "Job Title" ) ); |
908 | list.append( QObject::tr( "Department" ) ); | 908 | list.append( QObject::tr( "Department" ) ); |
909 | list.append( QObject::tr( "Company" ) ); | 909 | list.append( QObject::tr( "Company" ) ); |
910 | list.append( QObject::tr( "Business Phone" ) ); | 910 | list.append( QObject::tr( "Business Phone" ) ); |
911 | list.append( QObject::tr( "Business Fax" ) ); | 911 | list.append( QObject::tr( "Business Fax" ) ); |
912 | list.append( QObject::tr( "Business Mobile" ) ); | 912 | list.append( QObject::tr( "Business Mobile" ) ); |
913 | 913 | ||
914 | list.append( QObject::tr( "Default Email" ) ); | 914 | list.append( QObject::tr( "Default Email" ) ); |
915 | list.append( QObject::tr( "Emails" ) ); | 915 | list.append( QObject::tr( "Emails" ) ); |
916 | 916 | ||
917 | list.append( QObject::tr( "Home Phone" ) ); | 917 | list.append( QObject::tr( "Home Phone" ) ); |
918 | list.append( QObject::tr( "Home Fax" ) ); | 918 | list.append( QObject::tr( "Home Fax" ) ); |
919 | list.append( QObject::tr( "Home Mobile" ) ); | 919 | list.append( QObject::tr( "Home Mobile" ) ); |
920 | 920 | ||
921 | list.append( QObject::tr( "Business Street" ) ); | 921 | list.append( QObject::tr( "Business Street" ) ); |
922 | list.append( QObject::tr( "Business City" ) ); | 922 | list.append( QObject::tr( "Business City" ) ); |
923 | list.append( QObject::tr( "Business State" ) ); | 923 | list.append( QObject::tr( "Business State" ) ); |
924 | list.append( QObject::tr( "Business Zip" ) ); | 924 | list.append( QObject::tr( "Business Zip" ) ); |
925 | list.append( QObject::tr( "Business Country" ) ); | 925 | list.append( QObject::tr( "Business Country" ) ); |
926 | list.append( QObject::tr( "Business Pager" ) ); | 926 | list.append( QObject::tr( "Business Pager" ) ); |
927 | list.append( QObject::tr( "Business WebPage" ) ); | 927 | list.append( QObject::tr( "Business WebPage" ) ); |
928 | 928 | ||
929 | list.append( QObject::tr( "Office" ) ); | 929 | list.append( QObject::tr( "Office" ) ); |
930 | list.append( QObject::tr( "Profession" ) ); | 930 | list.append( QObject::tr( "Profession" ) ); |
931 | list.append( QObject::tr( "Assistant" ) ); | 931 | list.append( QObject::tr( "Assistant" ) ); |
932 | list.append( QObject::tr( "Manager" ) ); | 932 | list.append( QObject::tr( "Manager" ) ); |
933 | 933 | ||
934 | list.append( QObject::tr( "Home Street" ) ); | 934 | list.append( QObject::tr( "Home Street" ) ); |
935 | list.append( QObject::tr( "Home City" ) ); | 935 | list.append( QObject::tr( "Home City" ) ); |
936 | list.append( QObject::tr( "Home State" ) ); | 936 | list.append( QObject::tr( "Home State" ) ); |
937 | list.append( QObject::tr( "Home Zip" ) ); | 937 | list.append( QObject::tr( "Home Zip" ) ); |
938 | list.append( QObject::tr( "Home Country" ) ); | 938 | list.append( QObject::tr( "Home Country" ) ); |
939 | list.append( QObject::tr( "Home Web Page" ) ); | 939 | list.append( QObject::tr( "Home Web Page" ) ); |
940 | 940 | ||
941 | list.append( QObject::tr( "Spouse" ) ); | 941 | list.append( QObject::tr( "Spouse" ) ); |
942 | list.append( QObject::tr( "Gender" ) ); | 942 | list.append( QObject::tr( "Gender" ) ); |
943 | list.append( QObject::tr( "Birthday" ) ); | 943 | list.append( QObject::tr( "Birthday" ) ); |
944 | list.append( QObject::tr( "Anniversary" ) ); | 944 | list.append( QObject::tr( "Anniversary" ) ); |
945 | list.append( QObject::tr( "Nickname" ) ); | 945 | list.append( QObject::tr( "Nickname" ) ); |
946 | list.append( QObject::tr( "Children" ) ); | 946 | list.append( QObject::tr( "Children" ) ); |
947 | 947 | ||
948 | list.append( QObject::tr( "Notes" ) ); | 948 | list.append( QObject::tr( "Notes" ) ); |
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 ); |
961 | if ( str.isEmpty() ) | 1023 | if ( str.isEmpty() ) |
962 | setDefaultEmail( QString::null ); | 1024 | setDefaultEmail( QString::null ); |
963 | } | 1025 | } |
964 | 1026 | ||
965 | /*! | 1027 | /*! |
966 | Sets the list of children for the contact to those contained in \a str. | 1028 | Sets the list of children for the contact to those contained in \a str. |
967 | */ | 1029 | */ |
968 | void OContact::setChildren( const QString &str ) | 1030 | void OContact::setChildren( const QString &str ) |
969 | { | 1031 | { |
970 | replace( Qtopia::Children, str ); | 1032 | replace( Qtopia::Children, str ); |
971 | } | 1033 | } |
972 | 1034 | ||
973 | // vcard conversion code | 1035 | // vcard conversion code |
974 | /*! | 1036 | /*! |
975 | \internal | 1037 | \internal |
976 | */ | 1038 | */ |
977 | static inline VObject *safeAddPropValue( VObject *o, const char *prop, const QString &value ) | 1039 | static inline VObject *safeAddPropValue( VObject *o, const char *prop, const QString &value ) |
978 | { | 1040 | { |
979 | VObject *ret = 0; | 1041 | VObject *ret = 0; |
980 | if ( o && !value.isEmpty() ) | 1042 | if ( o && !value.isEmpty() ) |
981 | ret = addPropValue( o, prop, value.latin1() ); | 1043 | ret = addPropValue( o, prop, value.latin1() ); |
982 | return ret; | 1044 | return ret; |
983 | } | 1045 | } |
984 | 1046 | ||
985 | /*! | 1047 | /*! |
986 | \internal | 1048 | \internal |
987 | */ | 1049 | */ |
988 | static inline VObject *safeAddProp( VObject *o, const char *prop) | 1050 | static inline VObject *safeAddProp( VObject *o, const char *prop) |
989 | { | 1051 | { |
990 | VObject *ret = 0; | 1052 | VObject *ret = 0; |
991 | if ( o ) | 1053 | if ( o ) |
992 | ret = addProp( o, prop ); | 1054 | ret = addProp( o, prop ); |
993 | return ret; | 1055 | return ret; |
994 | } | 1056 | } |
995 | 1057 | ||
996 | /*! | 1058 | /*! |
997 | \internal | 1059 | \internal |
998 | */ | 1060 | */ |
999 | static VObject *createVObject( const OContact &c ) | 1061 | static VObject *createVObject( const OContact &c ) |
1000 | { | 1062 | { |
1001 | VObject *vcard = newVObject( VCCardProp ); | 1063 | VObject *vcard = newVObject( VCCardProp ); |
1002 | safeAddPropValue( vcard, VCVersionProp, "2.1" ); | 1064 | safeAddPropValue( vcard, VCVersionProp, "2.1" ); |
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 | |||
@@ -145,96 +145,97 @@ public: | |||
145 | */ | 145 | */ |
146 | QString displayHomeAddress() const; | 146 | QString displayHomeAddress() const; |
147 | 147 | ||
148 | // business | 148 | // business |
149 | QString company() const { return find( Qtopia::Company ); } | 149 | QString company() const { return find( Qtopia::Company ); } |
150 | QString businessStreet() const { return find( Qtopia::BusinessStreet ); } | 150 | QString businessStreet() const { return find( Qtopia::BusinessStreet ); } |
151 | QString businessCity() const { return find( Qtopia::BusinessCity ); } | 151 | QString businessCity() const { return find( Qtopia::BusinessCity ); } |
152 | QString businessState() const { return find( Qtopia::BusinessState ); } | 152 | QString businessState() const { return find( Qtopia::BusinessState ); } |
153 | QString businessZip() const { return find( Qtopia::BusinessZip ); } | 153 | QString businessZip() const { return find( Qtopia::BusinessZip ); } |
154 | QString businessCountry() const { return find( Qtopia::BusinessCountry ); } | 154 | QString businessCountry() const { return find( Qtopia::BusinessCountry ); } |
155 | QString businessWebpage() const { return find( Qtopia::BusinessWebPage ); } | 155 | QString businessWebpage() const { return find( Qtopia::BusinessWebPage ); } |
156 | QString jobTitle() const { return find( Qtopia::JobTitle ); } | 156 | QString jobTitle() const { return find( Qtopia::JobTitle ); } |
157 | QString department() const { return find( Qtopia::Department ); } | 157 | QString department() const { return find( Qtopia::Department ); } |
158 | QString office() const { return find( Qtopia::Office ); } | 158 | QString office() const { return find( Qtopia::Office ); } |
159 | QString businessPhone() const { return find( Qtopia::BusinessPhone ); } | 159 | QString businessPhone() const { return find( Qtopia::BusinessPhone ); } |
160 | QString businessFax() const { return find( Qtopia::BusinessFax ); } | 160 | QString businessFax() const { return find( Qtopia::BusinessFax ); } |
161 | QString businessMobile() const { return find( Qtopia::BusinessMobile ); } | 161 | QString businessMobile() const { return find( Qtopia::BusinessMobile ); } |
162 | QString businessPager() const { return find( Qtopia::BusinessPager ); } | 162 | QString businessPager() const { return find( Qtopia::BusinessPager ); } |
163 | QString profession() const { return find( Qtopia::Profession ); } | 163 | QString profession() const { return find( Qtopia::Profession ); } |
164 | QString assistant() const { return find( Qtopia::Assistant ); } | 164 | QString assistant() const { return find( Qtopia::Assistant ); } |
165 | QString manager() const { return find( Qtopia::Manager ); } | 165 | QString manager() const { return find( Qtopia::Manager ); } |
166 | /** Multi line string containing all non-empty address info in the form | 166 | /** Multi line string containing all non-empty address info in the form |
167 | * Street | 167 | * Street |
168 | * City, State Zip | 168 | * City, State Zip |
169 | * Country | 169 | * Country |
170 | */ | 170 | */ |
171 | QString displayBusinessAddress() const; | 171 | QString displayBusinessAddress() const; |
172 | 172 | ||
173 | //personal | 173 | //personal |
174 | QString spouse() const { return find( Qtopia::Spouse ); } | 174 | QString spouse() const { return find( Qtopia::Spouse ); } |
175 | QString gender() const { return find( Qtopia::Gender ); } | 175 | QString gender() const { return find( Qtopia::Gender ); } |
176 | QString birthday() const { return find( Qtopia::Birthday ); } | 176 | QString birthday() const { return find( Qtopia::Birthday ); } |
177 | QString anniversary() const { return find( Qtopia::Anniversary ); } | 177 | QString anniversary() const { return find( Qtopia::Anniversary ); } |
178 | QString nickname() const { return find( Qtopia::Nickname ); } | 178 | QString nickname() const { return find( Qtopia::Nickname ); } |
179 | QString children() const { return find( Qtopia::Children ); } | 179 | QString children() const { return find( Qtopia::Children ); } |
180 | QStringList childrenList() const; | 180 | QStringList childrenList() const; |
181 | 181 | ||
182 | // other | 182 | // other |
183 | QString notes() const { return find( Qtopia::Notes ); } | 183 | QString notes() const { return find( Qtopia::Notes ); } |
184 | QString groups() const { return find( Qtopia::Groups ); } | 184 | QString groups() const { return find( Qtopia::Groups ); } |
185 | QStringList groupList() const; | 185 | QStringList groupList() const; |
186 | 186 | ||
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 | ||
199 | // journaling... | 200 | // journaling... |
200 | void saveJournal( journal_action action, const QString &key = QString::null ); | 201 | void saveJournal( journal_action action, const QString &key = QString::null ); |
201 | void save( QString &buf ) const; | 202 | void save( QString &buf ) const; |
202 | 203 | ||
203 | void setUid( int i ) | 204 | void setUid( int i ) |
204 | { Record::setUid(i); replace( Qtopia::AddressUid , QString::number(i)); } | 205 | { Record::setUid(i); replace( Qtopia::AddressUid , QString::number(i)); } |
205 | 206 | ||
206 | QString toShortText()const; | 207 | QString toShortText()const; |
207 | QString OContact::type()const; | 208 | QString OContact::type()const; |
208 | QMap<QString,QString> OContact::toExtraMap() const; | 209 | QMap<QString,QString> OContact::toExtraMap() const; |
209 | class QString OContact::recordField(int) const; | 210 | class QString OContact::recordField(int) const; |
210 | 211 | ||
211 | // Why private ? (eilers,se) | 212 | // Why private ? (eilers,se) |
212 | QString emailSeparator() const { return " "; } | 213 | QString emailSeparator() const { return " "; } |
213 | // the emails should be seperated by a comma | 214 | // the emails should be seperated by a comma |
214 | void setEmails( const QString &v ); | 215 | void setEmails( const QString &v ); |
215 | QString emails() const { return find( Qtopia::Emails ); } | 216 | QString emails() const { return find( Qtopia::Emails ); } |
216 | 217 | ||
217 | 218 | ||
218 | private: | 219 | private: |
219 | friend class AbEditor; | 220 | friend class AbEditor; |
220 | friend class AbTable; | 221 | friend class AbTable; |
221 | friend class AddressBookAccessPrivate; | 222 | friend class AddressBookAccessPrivate; |
222 | friend class XMLIO; | 223 | friend class XMLIO; |
223 | 224 | ||
224 | 225 | ||
225 | void insert( int key, const QString &value ); | 226 | void insert( int key, const QString &value ); |
226 | void replace( int key, const QString &value ); | 227 | void replace( int key, const QString &value ); |
227 | QString find( int key ) const; | 228 | QString find( int key ) const; |
228 | 229 | ||
229 | QString displayAddress( const QString &street, | 230 | QString displayAddress( const QString &street, |
230 | const QString &city, | 231 | const QString &city, |
231 | const QString &state, | 232 | const QString &state, |
232 | const QString &zip, | 233 | const QString &zip, |
233 | const QString &country ) const; | 234 | const QString &country ) const; |
234 | 235 | ||
235 | Qtopia::UidGen &uidGen() { return sUidGen; } | 236 | Qtopia::UidGen &uidGen() { return sUidGen; } |
236 | static Qtopia::UidGen sUidGen; | 237 | static Qtopia::UidGen sUidGen; |
237 | QMap<int, QString> mMap; | 238 | QMap<int, QString> mMap; |
238 | ContactPrivate *d; | 239 | ContactPrivate *d; |
239 | }; | 240 | }; |
240 | 241 | ||
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 | |||
@@ -907,96 +907,158 @@ QStringList OContact::trfields() | |||
907 | list.append( QObject::tr( "Job Title" ) ); | 907 | list.append( QObject::tr( "Job Title" ) ); |
908 | list.append( QObject::tr( "Department" ) ); | 908 | list.append( QObject::tr( "Department" ) ); |
909 | list.append( QObject::tr( "Company" ) ); | 909 | list.append( QObject::tr( "Company" ) ); |
910 | list.append( QObject::tr( "Business Phone" ) ); | 910 | list.append( QObject::tr( "Business Phone" ) ); |
911 | list.append( QObject::tr( "Business Fax" ) ); | 911 | list.append( QObject::tr( "Business Fax" ) ); |
912 | list.append( QObject::tr( "Business Mobile" ) ); | 912 | list.append( QObject::tr( "Business Mobile" ) ); |
913 | 913 | ||
914 | list.append( QObject::tr( "Default Email" ) ); | 914 | list.append( QObject::tr( "Default Email" ) ); |
915 | list.append( QObject::tr( "Emails" ) ); | 915 | list.append( QObject::tr( "Emails" ) ); |
916 | 916 | ||
917 | list.append( QObject::tr( "Home Phone" ) ); | 917 | list.append( QObject::tr( "Home Phone" ) ); |
918 | list.append( QObject::tr( "Home Fax" ) ); | 918 | list.append( QObject::tr( "Home Fax" ) ); |
919 | list.append( QObject::tr( "Home Mobile" ) ); | 919 | list.append( QObject::tr( "Home Mobile" ) ); |
920 | 920 | ||
921 | list.append( QObject::tr( "Business Street" ) ); | 921 | list.append( QObject::tr( "Business Street" ) ); |
922 | list.append( QObject::tr( "Business City" ) ); | 922 | list.append( QObject::tr( "Business City" ) ); |
923 | list.append( QObject::tr( "Business State" ) ); | 923 | list.append( QObject::tr( "Business State" ) ); |
924 | list.append( QObject::tr( "Business Zip" ) ); | 924 | list.append( QObject::tr( "Business Zip" ) ); |
925 | list.append( QObject::tr( "Business Country" ) ); | 925 | list.append( QObject::tr( "Business Country" ) ); |
926 | list.append( QObject::tr( "Business Pager" ) ); | 926 | list.append( QObject::tr( "Business Pager" ) ); |
927 | list.append( QObject::tr( "Business WebPage" ) ); | 927 | list.append( QObject::tr( "Business WebPage" ) ); |
928 | 928 | ||
929 | list.append( QObject::tr( "Office" ) ); | 929 | list.append( QObject::tr( "Office" ) ); |
930 | list.append( QObject::tr( "Profession" ) ); | 930 | list.append( QObject::tr( "Profession" ) ); |
931 | list.append( QObject::tr( "Assistant" ) ); | 931 | list.append( QObject::tr( "Assistant" ) ); |
932 | list.append( QObject::tr( "Manager" ) ); | 932 | list.append( QObject::tr( "Manager" ) ); |
933 | 933 | ||
934 | list.append( QObject::tr( "Home Street" ) ); | 934 | list.append( QObject::tr( "Home Street" ) ); |
935 | list.append( QObject::tr( "Home City" ) ); | 935 | list.append( QObject::tr( "Home City" ) ); |
936 | list.append( QObject::tr( "Home State" ) ); | 936 | list.append( QObject::tr( "Home State" ) ); |
937 | list.append( QObject::tr( "Home Zip" ) ); | 937 | list.append( QObject::tr( "Home Zip" ) ); |
938 | list.append( QObject::tr( "Home Country" ) ); | 938 | list.append( QObject::tr( "Home Country" ) ); |
939 | list.append( QObject::tr( "Home Web Page" ) ); | 939 | list.append( QObject::tr( "Home Web Page" ) ); |
940 | 940 | ||
941 | list.append( QObject::tr( "Spouse" ) ); | 941 | list.append( QObject::tr( "Spouse" ) ); |
942 | list.append( QObject::tr( "Gender" ) ); | 942 | list.append( QObject::tr( "Gender" ) ); |
943 | list.append( QObject::tr( "Birthday" ) ); | 943 | list.append( QObject::tr( "Birthday" ) ); |
944 | list.append( QObject::tr( "Anniversary" ) ); | 944 | list.append( QObject::tr( "Anniversary" ) ); |
945 | list.append( QObject::tr( "Nickname" ) ); | 945 | list.append( QObject::tr( "Nickname" ) ); |
946 | list.append( QObject::tr( "Children" ) ); | 946 | list.append( QObject::tr( "Children" ) ); |
947 | 947 | ||
948 | list.append( QObject::tr( "Notes" ) ); | 948 | list.append( QObject::tr( "Notes" ) ); |
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 ); |
961 | if ( str.isEmpty() ) | 1023 | if ( str.isEmpty() ) |
962 | setDefaultEmail( QString::null ); | 1024 | setDefaultEmail( QString::null ); |
963 | } | 1025 | } |
964 | 1026 | ||
965 | /*! | 1027 | /*! |
966 | Sets the list of children for the contact to those contained in \a str. | 1028 | Sets the list of children for the contact to those contained in \a str. |
967 | */ | 1029 | */ |
968 | void OContact::setChildren( const QString &str ) | 1030 | void OContact::setChildren( const QString &str ) |
969 | { | 1031 | { |
970 | replace( Qtopia::Children, str ); | 1032 | replace( Qtopia::Children, str ); |
971 | } | 1033 | } |
972 | 1034 | ||
973 | // vcard conversion code | 1035 | // vcard conversion code |
974 | /*! | 1036 | /*! |
975 | \internal | 1037 | \internal |
976 | */ | 1038 | */ |
977 | static inline VObject *safeAddPropValue( VObject *o, const char *prop, const QString &value ) | 1039 | static inline VObject *safeAddPropValue( VObject *o, const char *prop, const QString &value ) |
978 | { | 1040 | { |
979 | VObject *ret = 0; | 1041 | VObject *ret = 0; |
980 | if ( o && !value.isEmpty() ) | 1042 | if ( o && !value.isEmpty() ) |
981 | ret = addPropValue( o, prop, value.latin1() ); | 1043 | ret = addPropValue( o, prop, value.latin1() ); |
982 | return ret; | 1044 | return ret; |
983 | } | 1045 | } |
984 | 1046 | ||
985 | /*! | 1047 | /*! |
986 | \internal | 1048 | \internal |
987 | */ | 1049 | */ |
988 | static inline VObject *safeAddProp( VObject *o, const char *prop) | 1050 | static inline VObject *safeAddProp( VObject *o, const char *prop) |
989 | { | 1051 | { |
990 | VObject *ret = 0; | 1052 | VObject *ret = 0; |
991 | if ( o ) | 1053 | if ( o ) |
992 | ret = addProp( o, prop ); | 1054 | ret = addProp( o, prop ); |
993 | return ret; | 1055 | return ret; |
994 | } | 1056 | } |
995 | 1057 | ||
996 | /*! | 1058 | /*! |
997 | \internal | 1059 | \internal |
998 | */ | 1060 | */ |
999 | static VObject *createVObject( const OContact &c ) | 1061 | static VObject *createVObject( const OContact &c ) |
1000 | { | 1062 | { |
1001 | VObject *vcard = newVObject( VCCardProp ); | 1063 | VObject *vcard = newVObject( VCCardProp ); |
1002 | safeAddPropValue( vcard, VCVersionProp, "2.1" ); | 1064 | safeAddPropValue( vcard, VCVersionProp, "2.1" ); |
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 | |||
@@ -145,96 +145,97 @@ public: | |||
145 | */ | 145 | */ |
146 | QString displayHomeAddress() const; | 146 | QString displayHomeAddress() const; |
147 | 147 | ||
148 | // business | 148 | // business |
149 | QString company() const { return find( Qtopia::Company ); } | 149 | QString company() const { return find( Qtopia::Company ); } |
150 | QString businessStreet() const { return find( Qtopia::BusinessStreet ); } | 150 | QString businessStreet() const { return find( Qtopia::BusinessStreet ); } |
151 | QString businessCity() const { return find( Qtopia::BusinessCity ); } | 151 | QString businessCity() const { return find( Qtopia::BusinessCity ); } |
152 | QString businessState() const { return find( Qtopia::BusinessState ); } | 152 | QString businessState() const { return find( Qtopia::BusinessState ); } |
153 | QString businessZip() const { return find( Qtopia::BusinessZip ); } | 153 | QString businessZip() const { return find( Qtopia::BusinessZip ); } |
154 | QString businessCountry() const { return find( Qtopia::BusinessCountry ); } | 154 | QString businessCountry() const { return find( Qtopia::BusinessCountry ); } |
155 | QString businessWebpage() const { return find( Qtopia::BusinessWebPage ); } | 155 | QString businessWebpage() const { return find( Qtopia::BusinessWebPage ); } |
156 | QString jobTitle() const { return find( Qtopia::JobTitle ); } | 156 | QString jobTitle() const { return find( Qtopia::JobTitle ); } |
157 | QString department() const { return find( Qtopia::Department ); } | 157 | QString department() const { return find( Qtopia::Department ); } |
158 | QString office() const { return find( Qtopia::Office ); } | 158 | QString office() const { return find( Qtopia::Office ); } |
159 | QString businessPhone() const { return find( Qtopia::BusinessPhone ); } | 159 | QString businessPhone() const { return find( Qtopia::BusinessPhone ); } |
160 | QString businessFax() const { return find( Qtopia::BusinessFax ); } | 160 | QString businessFax() const { return find( Qtopia::BusinessFax ); } |
161 | QString businessMobile() const { return find( Qtopia::BusinessMobile ); } | 161 | QString businessMobile() const { return find( Qtopia::BusinessMobile ); } |
162 | QString businessPager() const { return find( Qtopia::BusinessPager ); } | 162 | QString businessPager() const { return find( Qtopia::BusinessPager ); } |
163 | QString profession() const { return find( Qtopia::Profession ); } | 163 | QString profession() const { return find( Qtopia::Profession ); } |
164 | QString assistant() const { return find( Qtopia::Assistant ); } | 164 | QString assistant() const { return find( Qtopia::Assistant ); } |
165 | QString manager() const { return find( Qtopia::Manager ); } | 165 | QString manager() const { return find( Qtopia::Manager ); } |
166 | /** Multi line string containing all non-empty address info in the form | 166 | /** Multi line string containing all non-empty address info in the form |
167 | * Street | 167 | * Street |
168 | * City, State Zip | 168 | * City, State Zip |
169 | * Country | 169 | * Country |
170 | */ | 170 | */ |
171 | QString displayBusinessAddress() const; | 171 | QString displayBusinessAddress() const; |
172 | 172 | ||
173 | //personal | 173 | //personal |
174 | QString spouse() const { return find( Qtopia::Spouse ); } | 174 | QString spouse() const { return find( Qtopia::Spouse ); } |
175 | QString gender() const { return find( Qtopia::Gender ); } | 175 | QString gender() const { return find( Qtopia::Gender ); } |
176 | QString birthday() const { return find( Qtopia::Birthday ); } | 176 | QString birthday() const { return find( Qtopia::Birthday ); } |
177 | QString anniversary() const { return find( Qtopia::Anniversary ); } | 177 | QString anniversary() const { return find( Qtopia::Anniversary ); } |
178 | QString nickname() const { return find( Qtopia::Nickname ); } | 178 | QString nickname() const { return find( Qtopia::Nickname ); } |
179 | QString children() const { return find( Qtopia::Children ); } | 179 | QString children() const { return find( Qtopia::Children ); } |
180 | QStringList childrenList() const; | 180 | QStringList childrenList() const; |
181 | 181 | ||
182 | // other | 182 | // other |
183 | QString notes() const { return find( Qtopia::Notes ); } | 183 | QString notes() const { return find( Qtopia::Notes ); } |
184 | QString groups() const { return find( Qtopia::Groups ); } | 184 | QString groups() const { return find( Qtopia::Groups ); } |
185 | QStringList groupList() const; | 185 | QStringList groupList() const; |
186 | 186 | ||
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 | ||
199 | // journaling... | 200 | // journaling... |
200 | void saveJournal( journal_action action, const QString &key = QString::null ); | 201 | void saveJournal( journal_action action, const QString &key = QString::null ); |
201 | void save( QString &buf ) const; | 202 | void save( QString &buf ) const; |
202 | 203 | ||
203 | void setUid( int i ) | 204 | void setUid( int i ) |
204 | { Record::setUid(i); replace( Qtopia::AddressUid , QString::number(i)); } | 205 | { Record::setUid(i); replace( Qtopia::AddressUid , QString::number(i)); } |
205 | 206 | ||
206 | QString toShortText()const; | 207 | QString toShortText()const; |
207 | QString OContact::type()const; | 208 | QString OContact::type()const; |
208 | QMap<QString,QString> OContact::toExtraMap() const; | 209 | QMap<QString,QString> OContact::toExtraMap() const; |
209 | class QString OContact::recordField(int) const; | 210 | class QString OContact::recordField(int) const; |
210 | 211 | ||
211 | // Why private ? (eilers,se) | 212 | // Why private ? (eilers,se) |
212 | QString emailSeparator() const { return " "; } | 213 | QString emailSeparator() const { return " "; } |
213 | // the emails should be seperated by a comma | 214 | // the emails should be seperated by a comma |
214 | void setEmails( const QString &v ); | 215 | void setEmails( const QString &v ); |
215 | QString emails() const { return find( Qtopia::Emails ); } | 216 | QString emails() const { return find( Qtopia::Emails ); } |
216 | 217 | ||
217 | 218 | ||
218 | private: | 219 | private: |
219 | friend class AbEditor; | 220 | friend class AbEditor; |
220 | friend class AbTable; | 221 | friend class AbTable; |
221 | friend class AddressBookAccessPrivate; | 222 | friend class AddressBookAccessPrivate; |
222 | friend class XMLIO; | 223 | friend class XMLIO; |
223 | 224 | ||
224 | 225 | ||
225 | void insert( int key, const QString &value ); | 226 | void insert( int key, const QString &value ); |
226 | void replace( int key, const QString &value ); | 227 | void replace( int key, const QString &value ); |
227 | QString find( int key ) const; | 228 | QString find( int key ) const; |
228 | 229 | ||
229 | QString displayAddress( const QString &street, | 230 | QString displayAddress( const QString &street, |
230 | const QString &city, | 231 | const QString &city, |
231 | const QString &state, | 232 | const QString &state, |
232 | const QString &zip, | 233 | const QString &zip, |
233 | const QString &country ) const; | 234 | const QString &country ) const; |
234 | 235 | ||
235 | Qtopia::UidGen &uidGen() { return sUidGen; } | 236 | Qtopia::UidGen &uidGen() { return sUidGen; } |
236 | static Qtopia::UidGen sUidGen; | 237 | static Qtopia::UidGen sUidGen; |
237 | QMap<int, QString> mMap; | 238 | QMap<int, QString> mMap; |
238 | ContactPrivate *d; | 239 | ContactPrivate *d; |
239 | }; | 240 | }; |
240 | 241 | ||