break;
}
-
+
+ // Process SOURCE.
+
+ SaveSource(&SourceList, &SourceListAltID,
+ &SourceListPID, &SourceListType,
+ &SourceListMediatype, &SourceListPref,
+ &SourceListTokens, SaveData);
+
// Process FN.
for (std::map<int, wxString>::iterator FNIter = FullNamesList.begin();
}
+}
+
+void ContactDataObject::SaveSource(map<int, wxString> *SourceList, map<int, wxString> *SourceListAltID,
+ map<int, wxString> *SourceListPID, map<int, wxString> *SourceListType,
+ map<int, wxString> *SourceListMediatype, map<int, int> *SourceListPref,
+ map<int, wxString> *SourceListTokens, wxString *SaveData){
+
+ wxString ProcessData = "";
+
+ for (std::map<int, wxString>::iterator SourceIter = SourceList->begin();
+ SourceIter != SourceList->end(); SourceIter++){
+
+ ProcessData.Append("SOURCE");
+
+ // Check if there is a value for TYPE.
+
+ if ((*SourceListType)[SourceIter->first].size() > 0){
+
+ ProcessData.Append(";TYPE=");
+ ProcessData.Append((*SourceListType)[SourceIter->first]);
+
+ }
+
+ // Check if there is a value for ALTID.
+
+ if ((*SourceListAltID)[SourceIter->first].size() > 0){
+
+ ProcessData.Append(";ALTID=");
+ ProcessData.Append((*SourceListAltID)[SourceIter->first]);
+
+ }
+
+ // Check if there is a value for LANGUAGE.
+
+ if ((*SourceListMediatype)[SourceIter->first].size() > 0){
+
+ ProcessData.Append(";MEDIATYPE=");
+ ProcessData.Append((*SourceListMediatype)[SourceIter->first]);
+
+ }
+
+ // Check if there is a value for PID.
+
+ if ((*SourceListPID)[SourceIter->first].size() > 0){
+
+ ProcessData.Append(";PID=");
+ ProcessData.Append((*SourceListPID)[SourceIter->first]);
+
+ }
+
+ // Check if there is a value for PREF.
+
+ if ((*SourceListPref)[SourceIter->first] > 0){
+
+ ProcessData.Append(";PREF=");
+ ProcessData.Append(wxString::Format("%i", (*SourceListPref)[SourceIter->first]));
+
+ }
+
+ // Check if there is a value for tokens.
+
+ if ((*SourceListTokens)[SourceIter->first].size() > 0){
+
+ ProcessData.Append(";");
+ ProcessData.Append((*SourceListTokens)[SourceIter->first]);
+
+ }
+
+ ProcessData.Append(":");
+ ProcessData.Append(SourceIter->second);
+ ProcessData.Append("\n");
+
+ ProcessData = OutputText(&ProcessData);
+
+ SaveData->Append(ProcessData);
+ ProcessData.clear();
+
+ }
+
}
\ No newline at end of file
map<int, wxString> *TitleListAltID, map<int, wxString> *TitleListPID,
map<int, wxString> *TitleListType, map<int, int> *TitleListPref,
map<int, wxString> *TitleListTokens, wxString *SaveData, wxString DataType);
+ void SaveSource(map<int, wxString> *SourceList, map<int, wxString> *SourceListAltID,
+ map<int, wxString> *SourceListPID, map<int, wxString> *SourceListType,
+ map<int, wxString> *SourceListMediatype, map<int, int> *SourceListPref,
+ map<int, wxString> *SourceListTokens, wxString *SaveData);
public:
"PRODID:-//Xestia//Address Book Unit Testing//KW\n"
"UID:903588-9082374-989120310-AAFECDBCDF\n"
"KIND:individual\n"
+ "SOURCE;ALTID=74;MEDIATYPE=text/plain;PID=71;PREF=72;STATUS=FEED:http://exampl\n"
+ " e.com/source/sourcea.vcf\n"
+ "SOURCE;TYPE=home;ALTID=84;MEDIATYPE=text/plainpaper;PID=81;PREF=82;STATUS=ONL\n"
+ " INE:http://example.com/source/sourceb.vcf\n"
+ "SOURCE;TYPE=work;ALTID=94;MEDIATYPE=text/sandpaper;PID=91;PREF=92;STATUS=OFFL\n"
+ " INE:http://example.com/source/sourcec.vcf\n"
"FN;TYPE=work;LANGUAGE=kw;ALTID=500;PID=40;PREF=45;EXAMPLE=Baaa:Test Contact\n"
"TITLE;ALTID=20;LANGUAGE=text/plain;PID=21;PREF=22;EEP=LIGHT:Lord of Light\n"
"TITLE;TYPE=home;ALTID=30;LANGUAGE=grass/dry;PID=31;PREF=32;EEP=DARK:Lord of D\n"