Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added N to the SaveString function of ContactDataObject
[xestiaab/.git] / source / contacteditor / cdo / ContactDataObject-Save.cpp
index 3b12441..8747ae3 100644 (file)
 #include "ContactDataObject.h"
 #include "../../version.h"
 
+ContactSaveStatus ContactDataObject::SaveFile(wxString SaveFilename){
+       
+       // Get the data using SaveString.
+       
+       wxString SaveData = "";
+       SaveString(&SaveData);
+       
+       // Open a file and try to write into it.
+       
+       wxFile ContactFile;
+       
+       if (!ContactFile.Open(SaveFilename, wxFile::write, wxS_DEFAULT)){
+       
+               return CONTACTSAVE_FILEERROR;
+       
+       }
+       
+       if (ContactFile.Write(SaveData, wxConvUTF8) == false){
+               
+               return CONTACTSAVE_WRITEERROR;
+               
+       }
+       
+       ContactFile.Close();
+       
+       return CONTACTSAVE_OK;
+       
+}
+
 ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
        
        ContactSaveStatus SaveDataStatus = CONTACTSAVE_UNITTESTFAIL;
@@ -79,6 +108,80 @@ ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
                
        }
        
+       // Process REV.
+       
+       wxDateTime DateTimeSave;
+       DateTimeSave = DateTimeSave.SetToCurrent();
+       wxString DateTimeSaveValue;
+       
+#ifdef XAB_UNITTEST
+       
+       DateTimeSaveValue += "20160703T091000Z";
+       
+#else
+    
+       DateTimeSaveValue += wxString::Format("%04i", DateTimeSave.GetYear());
+       DateTimeSaveValue += wxString::Format("%02i", (DateTimeSave.GetMonth() + 1));
+       DateTimeSaveValue += wxString::Format("%02i", DateTimeSave.GetDay());
+       DateTimeSaveValue += "T";
+       DateTimeSaveValue += wxString::Format("%02i", DateTimeSave.GetHour());
+       DateTimeSaveValue += wxString::Format("%02i", DateTimeSave.GetMinute());
+       DateTimeSaveValue += wxString::Format("%02i", DateTimeSave.GetSecond());
+       DateTimeSaveValue += "Z";
+    
+#endif
+       
+       if (!RevisionTokens.IsEmpty()){
+               
+               ProcessData.Append("REV;");
+               ProcessData.Append(RevisionTokens);
+               ProcessData.Append(":");
+               ProcessData.Append(DateTimeSaveValue);
+               ProcessData.Append("\n");
+               
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();            
+               
+       } else {
+       
+               ProcessData.Append("REV:");
+               ProcessData.Append(DateTimeSaveValue);
+               ProcessData.Append("\n");
+               
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+               
+       }
+       
+       // Process XML.
+
+       for (std::map<int, wxString>::iterator XMLIter = XMLList.begin();
+               XMLIter != XMLList.end(); XMLIter++){
+       
+               ProcessData.Append("XML");
+                       
+               if (XMLListAltID[XMLIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append(XMLListAltID[XMLIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(XMLIter->second);
+               ProcessData.Append("\n");
+               
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+       
        // Process SOURCE.
        
        SaveSource(&SourceList, &SourceListAltID, 
@@ -86,6 +189,17 @@ ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
                &SourceListMediatype, &SourceListPref, 
                &SourceListTokens, SaveData);
        
+       // Process MEMBER (if contact kind is CONTACTKIND_GROUP).
+       
+       if (ContactKind == CONTACTKIND_GROUP){
+               
+               SaveMember(&GroupsList, &GroupsListAltID, 
+                       &GroupsListPID, &GroupsListType,
+                       &GroupsListMediaType, &GroupsListPref, 
+                       &GroupsListTokens, SaveData);
+               
+       }
+       
        // Process CLIENTPIDMAP.
        
        for (std::map<int, wxString>::iterator CPIDIter = ClientPIDList.begin();
@@ -183,6 +297,91 @@ ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
                        
        }
        
+       // Process N.
+       
+       if (!NameTitle.IsEmpty() || !NameForename.IsEmpty() || !NameSurname.IsEmpty() ||
+               !NameOtherNames.IsEmpty() || !NameSuffix.IsEmpty()){
+               
+               ProcessData.Append("N");
+               
+               // Check if there is a value for ALTID.
+               
+               if (NameAltID.size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append(NameAltID);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if (NameLanguage.size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append(NameLanguage);
+                       
+               }
+               
+               // Check if there is a value for SORT-AS.
+               
+               if (NameDisplayAs.size() > 0){
+               
+                       ProcessData.Append(";SORT-AS=\"");
+                       ProcessData.Append(NameDisplayAs);
+                       ProcessData.Append("\"");
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if (NameTokens.size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append(NameTokens);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(NameSurname);
+               ProcessData.Append(";");
+               ProcessData.Append(NameForename);
+               ProcessData.Append(";");
+               ProcessData.Append(NameOtherNames);
+               ProcessData.Append(";");
+               ProcessData.Append(NameTitle);
+               ProcessData.Append(";");
+               ProcessData.Append(NameSuffix);
+               
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+       
+       // Process NICKNAME.
+       
+       SaveNickname(&GeneralNicknamesList, &GeneralNicknamesListAltID, 
+               &GeneralNicknamesListPID, &GeneralNicknamesListType,
+               &GeneralNicknamesListLanguage, &GeneralNicknamesListPref, 
+               &GeneralNicknamesListTokens, SaveData, "");
+       SaveNickname(&HomeNicknamesList, &HomeNicknamesListAltID, 
+               &HomeNicknamesListPID, &HomeNicknamesListType,
+               &HomeNicknamesListLanguage, &HomeNicknamesListPref, 
+               &HomeNicknamesListTokens, SaveData, "home");
+       SaveNickname(&BusinessNicknamesList, &BusinessNicknamesListAltID, 
+               &BusinessNicknamesListPID, &BusinessNicknamesListType,
+               &BusinessNicknamesListLanguage, &BusinessNicknamesListPref, 
+               &BusinessNicknamesListTokens, SaveData, "work");
+       
+       // TODO: Process GENDER.
+       
+       // TODO: Process BDAY.
+       
+       // TODO: Process ANNIVERSARY.
+       
        // Process TITLE.
 
        SaveTitle(&GeneralTitleList, &GeneralTitleListLanguage,
@@ -198,6 +397,429 @@ ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
                &BusinessTitleListType, &BusinessTitleListPref,
                &BusinessTitleListTokens, SaveData, "work");
        
+       // Process TZ.
+       
+       SaveTimezone(&GeneralTZList, &GeneralTZListAltID, 
+               &GeneralTZListPID, &GeneralTZListType,
+               &GeneralTZListMediatype, &GeneralTZListPref, 
+               &GeneralTZListTokens, SaveData, "");
+       SaveTimezone(&HomeTZList, &HomeTZListAltID, 
+               &HomeTZListPID, &HomeTZListType,
+               &HomeTZListMediatype, &HomeTZListPref, 
+               &HomeTZListTokens, SaveData, "home");
+       SaveTimezone(&BusinessTZList, &BusinessTZListAltID, 
+               &BusinessTZListPID, &BusinessTZListType,
+               &BusinessTZListMediatype, &BusinessTZListPref, 
+               &BusinessTZListTokens, SaveData, "work");
+
+       // Process ADR.
+       
+       SaveAddress(&GeneralAddressList, &GeneralAddressListTown,
+               &GeneralAddressListCounty, &GeneralAddressListPostCode,
+               &GeneralAddressListCountry, &GeneralAddressListLabel,
+               &GeneralAddressListLang, &GeneralAddressListAltID,
+               &GeneralAddressListPID, &GeneralAddressListGeo, 
+               &GeneralAddressListTimezone, &GeneralAddressListType, 
+               &GeneralAddressListMediatype, &GeneralAddressListPref,
+               &GeneralAddressListTokens, SaveData, "");
+       SaveAddress(&HomeAddressList, &HomeAddressListTown,
+               &HomeAddressListCounty, &HomeAddressListPostCode,
+               &HomeAddressListCountry, &HomeAddressListLabel,
+               &HomeAddressListLang, &HomeAddressListAltID,
+               &HomeAddressListPID, &HomeAddressListGeo, 
+               &HomeAddressListTimezone, &HomeAddressListType, 
+               &HomeAddressListMediatype, &HomeAddressListPref,
+               &HomeAddressListTokens, SaveData, "home");
+       SaveAddress(&BusinessAddressList, &BusinessAddressListTown,
+               &BusinessAddressListCounty, &BusinessAddressListPostCode,
+               &BusinessAddressListCountry, &BusinessAddressListLabel,
+               &BusinessAddressListLang, &BusinessAddressListAltID,
+               &BusinessAddressListPID, &BusinessAddressListGeo, 
+               &BusinessAddressListTimezone, &BusinessAddressListType, 
+               &BusinessAddressListMediatype, &BusinessAddressListPref,
+               &BusinessAddressListTokens, SaveData, "work");
+
+       // Process EMAIL.
+       
+       SaveEmail(&GeneralEmailList, &GeneralEmailListAltID, 
+               &GeneralEmailListPID, &GeneralEmailListType,
+               &GeneralEmailListPref, &GeneralEmailListTokens, 
+               SaveData, "");
+       SaveEmail(&HomeEmailList, &HomeEmailListAltID, 
+               &HomeEmailListPID, &HomeEmailListType,
+               &HomeEmailListPref, &HomeEmailListTokens, 
+               SaveData, "home");
+       SaveEmail(&BusinessEmailList, &BusinessEmailListAltID, 
+               &BusinessEmailListPID, &BusinessEmailListType,
+               &BusinessEmailListPref, &BusinessEmailListTokens, 
+               SaveData, "work");
+
+       // Process IMPP.
+       
+       SaveIMPP(&GeneralIMList, &GeneralIMListAltID, 
+               &GeneralIMListPID, &GeneralIMListType,
+               &GeneralIMListTypeInfo, &GeneralIMListMediatype, 
+               &GeneralIMListPref, &GeneralIMListTokens,
+               SaveData, "");
+       SaveIMPP(&HomeIMList, &HomeIMListAltID, 
+               &HomeIMListPID, &HomeIMListType,
+               &HomeIMListTypeInfo, &HomeIMListMediatype, 
+               &HomeIMListPref, &HomeIMListTokens,
+               SaveData, "home");
+       SaveIMPP(&BusinessIMList, &BusinessIMListAltID, 
+               &BusinessIMListPID, &BusinessIMListType,
+               &BusinessIMListTypeInfo, &BusinessIMListMediatype, 
+               &BusinessIMListPref, &BusinessIMListTokens,
+               SaveData, "work");
+
+       // Process TEL.
+       
+       SaveTelephone(&GeneralTelephoneList, &GeneralTelephoneListAltID, 
+               &GeneralTelephoneListPID, &GeneralTelephoneListType,
+               &GeneralTelephoneListTypeInfo, &GeneralTelephoneListDataType, 
+               &GeneralTelephoneListPref, &GeneralTelephoneListTokens, 
+               SaveData, "");
+       SaveTelephone(&HomeTelephoneList, &HomeTelephoneListAltID, 
+               &HomeTelephoneListPID, &HomeTelephoneListType,
+               &HomeTelephoneListTypeInfo, &HomeTelephoneListDataType, 
+               &HomeTelephoneListPref, &HomeTelephoneListTokens, 
+               SaveData, "home");
+       SaveTelephone(&BusinessTelephoneList, &BusinessTelephoneListAltID, 
+               &BusinessTelephoneListPID, &BusinessTelephoneListType,
+               &BusinessTelephoneListTypeInfo, &BusinessTelephoneListDataType, 
+               &BusinessTelephoneListPref, &BusinessTelephoneListTokens, 
+               SaveData, "work");
+
+       // Process LANG.
+       
+       SaveLanguage(&GeneralLanguageList, &GeneralLanguageListAltID, 
+               &GeneralLanguageListPID, &GeneralLanguageListType,
+               &GeneralLanguageListPref, &GeneralLanguageListTokens, 
+               SaveData, "");
+       SaveLanguage(&HomeLanguageList, &HomeLanguageListAltID, 
+               &HomeLanguageListPID, &HomeLanguageListType,
+               &HomeLanguageListPref, &HomeLanguageListTokens, 
+               SaveData, "home");
+       SaveLanguage(&BusinessLanguageList, &BusinessLanguageListAltID, 
+               &BusinessLanguageListPID, &BusinessLanguageListType,
+               &BusinessLanguageListPref, &BusinessLanguageListTokens, 
+               SaveData, "work");
+
+       // Process GEO.
+       
+       SaveGeoposition(&GeneralGeographyList, &GeneralGeographyListAltID, 
+               &GeneralGeographyListPID, &GeneralGeographyListType,
+               &GeneralGeographyListMediatype, &GeneralGeographyListDataType,
+               &GeneralGeographyListPref, &GeneralGeographyListTokens, 
+               SaveData, "");
+       SaveGeoposition(&HomeGeographyList, &HomeGeographyListAltID, 
+               &HomeGeographyListPID, &HomeGeographyListType,
+               &HomeGeographyListMediatype, &HomeGeographyListDataType,
+               &HomeGeographyListPref, &HomeGeographyListTokens, 
+               SaveData, "home");
+       SaveGeoposition(&BusinessGeographyList, &BusinessGeographyListAltID, 
+               &BusinessGeographyListPID, &BusinessGeographyListType,
+               &BusinessGeographyListMediatype, &BusinessGeographyListDataType,
+               &BusinessGeographyListPref, &BusinessGeographyListTokens, 
+               SaveData, "work");
+
+       // Process RELATED.
+       
+       int Moo = 0;
+
+       for (std::map<int, wxString>::iterator RelatedIter = GeneralRelatedList.begin();
+               RelatedIter != GeneralRelatedList.end(); RelatedIter++){
+               
+               ProcessData.Append("RELATED");
+
+               // Check if there is a value for TYPE.
+               
+               if (GeneralRelatedListRelType[RelatedIter->first].size() > 0){
+               
+                       wxString RelatedType = "";
+                       
+                       ProcessData.Append(";TYPE=");
+                       
+                       if (GeneralRelatedListRelType[RelatedIter->first] == _("Contact")){
+
+                               RelatedType = wxT("contact");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Acquaintance")){
+
+                               RelatedType = wxT("acquaintance");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Friend")){
+
+                               RelatedType = wxT("friend");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Met")){
+
+                               RelatedType = wxT("met");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Co-worker")){
+
+                               RelatedType = wxT("co-worker");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Colleague")){
+
+                               RelatedType = wxT("colleague");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Co-resident")){
+
+                               RelatedType = wxT("co-resident");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Neighbour")){
+
+                               RelatedType = wxT("neighbor");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Child")){
+
+                               RelatedType = wxT("child");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Parent")){
+
+                               RelatedType = wxT("parent");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Sibling")){
+
+                               RelatedType = wxT("sibling");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Spouse")){
+
+                               RelatedType = wxT("spouse");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Kin")){
+
+                               RelatedType = wxT("kin");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Muse")){
+
+                               RelatedType = wxT("muse");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Crush")){
+
+                               RelatedType = wxT("crush");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Date")){
+
+                               RelatedType = wxT("date");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first]== _("Sweetheart")){
+
+                               RelatedType = wxT("sweetheart");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Me")){
+
+                               RelatedType = wxT("me");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Agent")){
+
+                               RelatedType = wxT("agent");
+
+                       } else if (GeneralRelatedListRelType[RelatedIter->first] == _("Emergency")){
+
+                               RelatedType = wxT("emergency");
+
+                       } else {
+
+                               RelatedType = GeneralRelatedListRelType[RelatedIter->first];
+
+                       }
+                       
+                       ProcessData.Append(RelatedType);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if (GeneralRelatedListLanguage[RelatedIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append(GeneralRelatedListLanguage[RelatedIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if (GeneralRelatedListAltID[RelatedIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append(GeneralRelatedListAltID[RelatedIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if (GeneralRelatedListPID[RelatedIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append(GeneralRelatedListPID[RelatedIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if (GeneralRelatedListPref[RelatedIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", GeneralRelatedListPref[RelatedIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if (GeneralRelatedListTokens[RelatedIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append(GeneralRelatedListTokens[RelatedIter->first]);
+                       
+               }
+               
+               ProcessData.Append(":");
+               ProcessData.Append(RelatedIter->second);
+               ProcessData.Append("\n");
+               
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+       
+       // Process URL.
+       
+       SaveURL(&GeneralWebsiteList, &GeneralWebsiteListAltID, 
+               &GeneralWebsiteListPID, &GeneralWebsiteListType,
+               &GeneralWebsiteListMediatype, &GeneralWebsiteListPref, 
+               &GeneralWebsiteListTokens, SaveData, "");
+       SaveURL(&HomeWebsiteList, &HomeWebsiteListAltID, 
+               &HomeWebsiteListPID, &HomeWebsiteListType,
+               &HomeWebsiteListMediatype, &HomeWebsiteListPref, 
+               &HomeWebsiteListTokens, SaveData, "home");
+       SaveURL(&BusinessWebsiteList, &BusinessWebsiteListAltID, 
+               &BusinessWebsiteListPID, &BusinessWebsiteListType,
+               &BusinessWebsiteListMediatype, &BusinessWebsiteListPref, 
+               &BusinessWebsiteListTokens, SaveData, "work");
+
+       // Process ROLE.
+       
+       SaveRole(&GeneralRoleList, &GeneralRoleListLanguage,
+               &GeneralRoleListAltID, &GeneralRoleListPID,
+               &GeneralRoleListType, &GeneralRoleListPref,
+               &GeneralRoleListTokens, SaveData, "");
+       SaveRole(&HomeRoleList, &HomeRoleListLanguage,
+               &HomeRoleListAltID, &HomeRoleListPID,
+               &HomeRoleListType, &HomeRoleListPref,
+               &HomeRoleListTokens, SaveData, "home");
+       SaveRole(&BusinessRoleList, &BusinessRoleListLanguage,
+               &BusinessRoleListAltID, &BusinessRoleListPID,
+               &BusinessRoleListType, &BusinessRoleListPref,
+               &BusinessRoleListTokens, SaveData, "work");
+
+       // Process ORG.
+       
+       SaveOrganisation(&GeneralOrganisationsList, &GeneralOrganisationsListAltID,
+               &GeneralOrganisationsListPID, &GeneralOrganisationsListLanguage, 
+               &GeneralOrganisationsListSortAs, &GeneralOrganisationsListType, 
+               &GeneralOrganisationsListPref, &GeneralOrganisationsListTokens, 
+               SaveData, "");
+       SaveOrganisation(&HomeOrganisationsList, &HomeOrganisationsListAltID,
+               &HomeOrganisationsListPID, &HomeOrganisationsListLanguage, 
+               &HomeOrganisationsListSortAs, &HomeOrganisationsListType, 
+               &HomeOrganisationsListPref, &HomeOrganisationsListTokens, 
+               SaveData, "home");
+       SaveOrganisation(&BusinessOrganisationsList, &BusinessOrganisationsListAltID,
+               &BusinessOrganisationsListPID, &BusinessOrganisationsListLanguage, 
+               &BusinessOrganisationsListSortAs, &BusinessOrganisationsListType, 
+               &BusinessOrganisationsListPref, &BusinessOrganisationsListTokens, 
+               SaveData, "work");
+
+       // Process NOTE.
+       
+       SaveNote(&GeneralNoteList, &GeneralNoteListLanguage,
+               &GeneralNoteListAltID, &GeneralNoteListPID,
+               &GeneralNoteListType, &GeneralNoteListPref,
+               &GeneralNoteListTokens, SaveData, "");
+       SaveNote(&HomeNoteList, &HomeNoteListLanguage,
+               &HomeNoteListAltID, &HomeNoteListPID,
+               &HomeNoteListType, &HomeNoteListPref,
+               &HomeNoteListTokens, SaveData, "home");
+       SaveNote(&BusinessNoteList, &BusinessNoteListLanguage,
+               &BusinessNoteListAltID, &BusinessNoteListPID,
+               &BusinessNoteListType, &BusinessNoteListPref,
+               &BusinessNoteListTokens, SaveData, "work");
+
+       // Process CATEGORIES.
+       
+       SaveCategory(&CategoriesList, &CategoriesListLanguage,
+               &CategoriesListAltID, &CategoriesListPID,
+               &CategoriesListType, &CategoriesListPref,
+               &CategoriesListTokens, SaveData);
+
+       // Process PHOTO.
+       
+       SavePhoto(&PicturesList, &PicturesListAltID, 
+               &PicturesListPID, &PicturesListType,
+               &PicturesListPicEncType, &PicturesListPictureType,
+               &PicturesListMediatype, &PicturesListPref,
+               &PicturesListTokens, SaveData);
+       
+       // Process LOGO.
+       
+       SaveLogo(&LogosList, &LogosListAltID, 
+               &LogosListPID, &LogosListType,
+               &LogosListPicEncType, &LogosListPictureType,
+               &LogosListMediatype, &LogosListPref,
+               &LogosListTokens, SaveData);
+       
+       // Process SOUND.
+
+       SaveSound(&SoundsList, &SoundsListAltID, 
+               &SoundsListPID, &SoundsListType,
+               &SoundsListAudioEncType, &SoundsListAudioType,
+               &SoundsListMediatype, &SoundsListLanguage, 
+               &SoundsListPref, &SoundsListTokens, 
+               SaveData);
+
+       // Process CALURI.
+       
+       SaveCalendarURI(&CalendarList, &CalendarListMediatype,
+               &CalendarListAltID, &CalendarListPID,
+               &CalendarListType, &CalendarListPref,
+               &CalendarListTokens, SaveData);
+       
+       // Process CALADRURI.
+       
+       SaveCalendarRequestURI(&CalendarRequestList, &CalendarRequestListMediatype,
+               &CalendarRequestListAltID, &CalendarRequestListPID,
+               &CalendarRequestListType, &CalendarRequestListPref,
+               &CalendarRequestListTokens, SaveData);
+
+       // Process FBURL.
+       
+       SaveFreeBusyURI(&FreeBusyList, &FreeBusyListAltID, 
+               &FreeBusyListPID, &FreeBusyListType,
+               &FreeBusyListMediatype, &FreeBusyListPref, 
+               &FreeBusyListTokens, SaveData);
+
+       // Process KEY.
+       
+       SaveKey(&KeyList, &KeyListAltID, 
+               &KeyListPID, &KeyListType,
+               &KeyListKeyType, &KeyListDataEncType, 
+               &KeyListDataType, &KeyListPref, 
+               &KeyListTokens, SaveData);
+
+       // Process VND-*
+       
+       SaveVendor(&VendorList, &VendorListPEN, 
+               &VendorListElement, SaveData);
+
+       // Process X-Tokens.
+       
+       SaveXToken(&XTokenList, &XTokenListTokens, 
+               SaveData);
+
        // Write the end part of the vCard data file.
        
        SaveData->Append("END:VCARD");
@@ -317,7 +939,7 @@ void ContactDataObject::SaveSource(map<int, wxString> *SourceList, map<int, wxSt
                        
                }
 
-               // Check if there is a value for LANGUAGE.
+               // Check if there is a value for MEDIATYPE.
                
                if ((*SourceListMediatype)[SourceIter->first].size() > 0){
                
@@ -364,4 +986,1801 @@ void ContactDataObject::SaveSource(map<int, wxString> *SourceList, map<int, wxSt
                        
        }
                
+}
+
+void ContactDataObject::SaveMember(std::map<int, wxString> *GroupsList, std::map<int, wxString> *GroupsListAltID, 
+       std::map<int, wxString> *GroupsListPID, std::map<int, wxString> *GroupsListType,
+       std::map<int, wxString> *GroupsListMediaType, std::map<int, int> *GroupsListPref, 
+       std::map<int, wxString> *GroupsListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator GroupsIter = GroupsList->begin();
+               GroupsIter != GroupsList->end(); GroupsIter++){
+
+               ProcessData.Append("MEMBER");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*GroupsListType)[GroupsIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*GroupsListType)[GroupsIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*GroupsListAltID)[GroupsIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*GroupsListAltID)[GroupsIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*GroupsListMediaType)[GroupsIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*GroupsListMediaType)[GroupsIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*GroupsListPID)[GroupsIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*GroupsListPID)[GroupsIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*GroupsListPref)[GroupsIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*GroupsListPref)[GroupsIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*GroupsListTokens)[GroupsIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*GroupsListTokens)[GroupsIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(GroupsIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveNickname(map<int, wxString> *NicknameList, map<int, wxString> *NicknameListAltID, 
+       map<int, wxString> *NicknameListPID, map<int, wxString> *NicknameListType,
+       map<int, wxString> *NicknameListLanguage, map<int, int> *NicknameListPref, 
+       map<int, wxString> *NicknameListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator NicknameIter = NicknameList->begin();
+               NicknameIter != NicknameList->end(); NicknameIter++){
+
+               ProcessData.Append("NICKNAME");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*NicknameListAltID)[NicknameIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*NicknameListAltID)[NicknameIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*NicknameListLanguage)[NicknameIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*NicknameListLanguage)[NicknameIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*NicknameListPID)[NicknameIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*NicknameListPID)[NicknameIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*NicknameListPref)[NicknameIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*NicknameListPref)[NicknameIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*NicknameListTokens)[NicknameIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*NicknameListTokens)[NicknameIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(NicknameIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveTimezone(map<int, wxString> *TZList, map<int, wxString> *TZListAltID, 
+       map<int, wxString> *TZListPID, map<int, wxString> *TZListType,
+       map<int, wxString> *TZListMediatype, map<int, int> *TZListPref, 
+       map<int, wxString> *TZListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator TZIter = TZList->begin();
+               TZIter != TZList->end(); TZIter++){
+
+               ProcessData.Append("TZ");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*TZListAltID)[TZIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*TZListAltID)[TZIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*TZListMediatype)[TZIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*TZListMediatype)[TZIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*TZListPID)[TZIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*TZListPID)[TZIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*TZListPref)[TZIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*TZListPref)[TZIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*TZListTokens)[TZIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*TZListTokens)[TZIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(TZIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveAddress(map<int, wxString> *AddressList, map<int, wxString> *AddressListTown,
+               map<int, wxString> *AddressListCounty, map<int, wxString> *AddressListPostCode,
+               map<int, wxString> *AddressListCountry, map<int, wxString> *AddressListLabel,
+               map<int, wxString> *AddressListLang, map<int, wxString> *AddressListAltID,
+               map<int, wxString> *AddressListPID, map<int, wxString> *AddressListGeo, 
+               map<int, wxString> *AddressListTimezone, map<int, wxString> *AddressListType, 
+               map<int, wxString> *AddressListMediatype, map<int, int> *AddressListPref, 
+               map<int, wxString> *AddressListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+                       
+       for (std::map<int, wxString>::iterator AddressIter = AddressList->begin();
+               AddressIter != AddressList->end(); AddressIter++){
+                       
+               ProcessData.Append("ADR");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*AddressListAltID)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*AddressListAltID)[AddressIter->first]);
+                       
+               }
+
+               // Check if there is a value for GEO.
+               
+               if ((*AddressListGeo)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";GEO=\"");
+                       ProcessData.Append((*AddressListGeo)[AddressIter->first]);
+                       ProcessData.Append("\"");
+                       
+               }
+
+               // Check if there is a value for LABEL.
+
+               if ((*AddressListLabel)[AddressIter->first].size() > 0){
+               
+                       wxString AddressProcessed = "";
+                       AddressProcessed = (*AddressListLabel)[AddressIter->first];
+                       
+                       AddressProcessed.Replace("\n", "\\n", true);
+                       
+                       ProcessData.Append(";LABEL=");
+                       ProcessData.Append(AddressProcessed);
+                       
+               }
+               
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*AddressListLang)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*AddressListLang)[AddressIter->first]);
+                       
+               }
+               
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*AddressListMediatype)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*AddressListMediatype)[AddressIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*AddressListPID)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*AddressListPID)[AddressIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*AddressListPref)[AddressIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*AddressListPref)[AddressIter->first]));
+                       
+               }
+
+               // Check if there is a value for TZ.
+
+               if ((*AddressListTimezone)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";TZ=");
+                       ProcessData.Append((*AddressListTimezone)[AddressIter->first]);
+                       
+               }
+               
+               // Check if there is a value for tokens.
+
+               if ((*AddressListTokens)[AddressIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*AddressListTokens)[AddressIter->first]);
+                       
+               }
+               
+               // Build the address.
+               
+               ProcessData.Append(":;;");
+               ProcessData.Append((*AddressList)[AddressIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*AddressListTown)[AddressIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*AddressListCounty)[AddressIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*AddressListPostCode)[AddressIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*AddressListCountry)[AddressIter->first]);
+               ProcessData.Append("\n");
+               
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+                       
+}
+
+void ContactDataObject::SaveEmail(map<int, wxString> *EmailList, map<int, wxString> *EmailListAltID, 
+       map<int, wxString> *EmailListPID, map<int, wxString> *EmailListType,
+       map<int, int> *EmailListPref, map<int, wxString> *EmailListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator EmailIter = EmailList->begin();
+               EmailIter != EmailList->end(); EmailIter++){
+
+               ProcessData.Append("EMAIL");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*EmailListAltID)[EmailIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*EmailListAltID)[EmailIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*EmailListPID)[EmailIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*EmailListPID)[EmailIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*EmailListPref)[EmailIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*EmailListPref)[EmailIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*EmailListTokens)[EmailIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*EmailListTokens)[EmailIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(EmailIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveIMPP(map<int, wxString> *IMList, map<int, wxString> *IMListAltID, 
+       map<int, wxString> *IMListPID, map<int, wxString> *IMListType,
+       map<int, wxString> *IMListTypeInfo, map<int, wxString> *IMListMediatype, 
+       map<int, int> *IMListPref, map<int, wxString> *IMListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator IMIter = IMList->begin();
+               IMIter != IMList->end(); IMIter++){
+
+               ProcessData.Append("IMPP");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*IMListAltID)[IMIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*IMListAltID)[IMIter->first]);
+                       
+               }
+               
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*IMListMediatype)[IMIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*IMListMediatype)[IMIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*IMListPID)[IMIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*IMListPID)[IMIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*IMListPref)[IMIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*IMListPref)[IMIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*IMListTokens)[IMIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*IMListTokens)[IMIter->first]);
+                       
+               }
+
+               ProcessData.Append(":");
+               ProcessData.Append((*IMListTypeInfo)[IMIter->first]);
+               ProcessData.Append(":");
+               ProcessData.Append(IMIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveTelephone(map<int, wxString> *TelephoneList, map<int, wxString> *TelephoneListAltID, 
+       map<int, wxString> *TelephoneListPID, map<int, wxString> *TelephoneListType,
+       map<int, wxString> *TelephoneListTypeInfo, map<int, wxString> *TelephoneListDataType, 
+       map<int, int> *TelephoneListPref, map<int, wxString> *TelephoneListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator TelephoneIter = TelephoneList->begin();
+               TelephoneIter != TelephoneList->end(); TelephoneIter++){
+
+               ProcessData.Append("TEL");
+                       
+               // Check if there is a value for TYPE.
+
+               if (DataType.size() > 0 || (*TelephoneListAltID)[TelephoneIter->first].size() > 0){
+
+                       ProcessData.Append(";TYPE=\"");
+                       
+                       bool ProcessedType = false;
+                       
+                       if (DataType.size() > 0){
+               
+                               ProcessData.Append(DataType);
+                               ProcessedType = true;
+                       
+                       }
+                       
+                       if ((*TelephoneListAltID)[TelephoneIter->first].size() > 0){
+                               
+                               if (ProcessedType == true){
+                                       ProcessData.Append(",");
+                               }
+                               ProcessData.Append((*TelephoneListTypeInfo)[TelephoneIter->first]);
+                               
+                       }
+                       
+                       ProcessData.Append("\"");
+               
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*TelephoneListAltID)[TelephoneIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*TelephoneListAltID)[TelephoneIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*TelephoneListPID)[TelephoneIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*TelephoneListPID)[TelephoneIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*TelephoneListPref)[TelephoneIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*TelephoneListPref)[TelephoneIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*TelephoneListTokens)[TelephoneIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*TelephoneListTokens)[TelephoneIter->first]);
+                       
+               }
+
+               ProcessData.Append(":");
+               ProcessData.Append((*TelephoneListDataType)[TelephoneIter->first]);
+               ProcessData.Append(":");
+               ProcessData.Append(TelephoneIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveLanguage(map<int, wxString> *LanguageList, map<int, wxString> *LanguageListAltID, 
+       map<int, wxString> *LanguageListPID, map<int, wxString> *LanguageListType,
+       map<int, int> *LangaugeListPref, map<int, wxString> *LanguageListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator LanguageIter = LanguageList->begin();
+               LanguageIter != LanguageList->end(); LanguageIter++){
+
+               ProcessData.Append("LANG");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*LanguageListAltID)[LanguageIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*LanguageListAltID)[LanguageIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*LanguageListPID)[LanguageIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*LanguageListPID)[LanguageIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*LangaugeListPref)[LanguageIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*LangaugeListPref)[LanguageIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*LanguageListTokens)[LanguageIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*LanguageListTokens)[LanguageIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(LanguageIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveGeoposition(map<int, wxString> *GeographyList, map<int, wxString> *GeographyListAltID, 
+       map<int, wxString> *GeographyListPID, map<int, wxString> *GeographyListType,
+       map<int, wxString> *GeographyListMediatype, map<int, wxString> *GeographyListDataType,
+       map<int, int> *GeographyListPref, map<int, wxString> *GeographyListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator GeographyIter = GeographyList->begin();
+               GeographyIter != GeographyList->end(); GeographyIter++){
+
+               ProcessData.Append("GEO");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*GeographyListAltID)[GeographyIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*GeographyListAltID)[GeographyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*GeographyListMediatype)[GeographyIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*GeographyListMediatype)[GeographyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*GeographyListPID)[GeographyIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*GeographyListPID)[GeographyIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*GeographyListPref)[GeographyIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*GeographyListPref)[GeographyIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*GeographyListTokens)[GeographyIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*GeographyListTokens)[GeographyIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append((*GeographyListDataType)[GeographyIter->first]);
+               ProcessData.Append(":");
+               ProcessData.Append(GeographyIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveURL(map<int, wxString> *WebsiteList, map<int, wxString> *WebsiteListAltID, 
+               map<int, wxString> *WebsiteListPID, map<int, wxString> *WebsiteListType,
+               map<int, wxString> *WebsiteListMediatype, map<int, int> *WebsiteListPref, 
+               map<int, wxString> *WebsiteListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+       
+       for (std::map<int, wxString>::iterator WebsiteIter = WebsiteList->begin();
+               WebsiteIter != WebsiteList->end(); WebsiteIter++){
+
+               ProcessData.Append("URL");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*WebsiteListAltID)[WebsiteIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*WebsiteListAltID)[WebsiteIter->first]);
+                       
+               }
+               
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*WebsiteListMediatype)[WebsiteIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*WebsiteListMediatype)[WebsiteIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*WebsiteListPID)[WebsiteIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*WebsiteListPID)[WebsiteIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*WebsiteListPref)[WebsiteIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*WebsiteListPref)[WebsiteIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*WebsiteListTokens)[WebsiteIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*WebsiteListTokens)[WebsiteIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(WebsiteIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+                       
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+                       
+}
+
+void ContactDataObject::SaveRole(map<int, wxString> *RoleList, map<int, wxString> *RoleListLanguage,
+       map<int, wxString> *RoleListAltID, map<int, wxString> *RoleListPID,
+       map<int, wxString> *RoleListType, map<int, int> *RoleListPref,
+       map<int, wxString> *RoleListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator RoleIter = RoleList->begin();
+               RoleIter != RoleList->end(); RoleIter++){
+
+               ProcessData.Append("ROLE");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*RoleListAltID)[RoleIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*RoleListAltID)[RoleIter->first]);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*RoleListLanguage)[RoleIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*RoleListLanguage)[RoleIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*RoleListPID)[RoleIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*RoleListPID)[RoleIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*RoleListPref)[RoleIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*RoleListPref)[RoleIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*RoleListTokens)[RoleIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*RoleListTokens)[RoleIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(RoleIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveOrganisation(map<int, wxString> *OrganisationList, map<int, wxString> *OrganisationListAltID,
+       map<int, wxString> *OrganisationListPID, map<int, wxString> *OrganisationListLanguage, 
+       map<int, wxString> *OrganisationListSortAs, map<int, wxString> *OrganisationListType, 
+       map<int, int> *OrganisationListPref, map<int, wxString> *OrganisationListTokens, 
+       wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator OrganisationIter = OrganisationList->begin();
+               OrganisationIter != OrganisationList->end(); OrganisationIter++){
+
+               ProcessData.Append("ORG");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*OrganisationListAltID)[OrganisationIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*OrganisationListAltID)[OrganisationIter->first]);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*OrganisationListLanguage)[OrganisationIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*OrganisationListLanguage)[OrganisationIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*OrganisationListPID)[OrganisationIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*OrganisationListPID)[OrganisationIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*OrganisationListPref)[OrganisationIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*OrganisationListPref)[OrganisationIter->first]));
+                       
+               }
+               
+               // Check if there is a value for SORT-AS.
+               
+               if ((*OrganisationListSortAs)[OrganisationIter->first].size() > 0){
+               
+                       ProcessData.Append(";SORT-AS=\"");
+                       ProcessData.Append((*OrganisationListSortAs)[OrganisationIter->first]);
+                       ProcessData.Append("\"");
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*OrganisationListTokens)[OrganisationIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*OrganisationListTokens)[OrganisationIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(OrganisationIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveNote(map<int, wxString> *NoteList, map<int, wxString> *NoteListLanguage,
+       map<int, wxString> *NoteListAltID, map<int, wxString> *NoteListPID,
+       map<int, wxString> *NoteListType, map<int, int> *NoteListPref,
+       map<int, wxString> *NoteListTokens, wxString *SaveData, wxString DataType){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator NoteIter = NoteList->begin();
+               NoteIter != NoteList->end(); NoteIter++){
+
+               ProcessData.Append("NOTE");
+                       
+               // Check if there is a value for TYPE.
+               
+               if (DataType.size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append(DataType);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*NoteListAltID)[NoteIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*NoteListAltID)[NoteIter->first]);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*NoteListLanguage)[NoteIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*NoteListLanguage)[NoteIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*NoteListPID)[NoteIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*NoteListPID)[NoteIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*NoteListPref)[NoteIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*NoteListPref)[NoteIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*NoteListTokens)[NoteIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*NoteListTokens)[NoteIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(NoteIter->second);
+               ProcessData.Replace("\n", "\\n", true);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveCategory(map<int, wxString> *CategoryList, map<int, wxString> *CategoryListLanguage,
+       map<int, wxString> *CategoryListAltID, map<int, wxString> *CategoryListPID,
+       map<int, wxString> *CategoryListType, map<int, int> *CategoryListPref,
+       map<int, wxString> *CategoryListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator CategoryIter = CategoryList->begin();
+               CategoryIter != CategoryList->end(); CategoryIter++){
+
+               ProcessData.Append("CATEGORIES");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*CategoryListType)[CategoryIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*CategoryListType)[CategoryIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*CategoryListAltID)[CategoryIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*CategoryListAltID)[CategoryIter->first]);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*CategoryListLanguage)[CategoryIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*CategoryListLanguage)[CategoryIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*CategoryListPID)[CategoryIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*CategoryListPID)[CategoryIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*CategoryListPref)[CategoryIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*CategoryListPref)[CategoryIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*CategoryListTokens)[CategoryIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*CategoryListTokens)[CategoryIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(CategoryIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SavePhoto(map<int, string> *PicturesList, map<int, wxString> *PicturesListAltID, 
+               map<int, wxString> *PicturesListPID, map<int, wxString> *PicturesListType,
+               map<int, wxString> *PicturesListPicEncType, map<int, wxString> *PicturesListPictureType,
+               map<int, wxString> *PicturesListMediatype, map<int, int> *PicturesListPref,
+               map<int, wxString> *PicturesListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, string>::iterator PicturesIter = PicturesList->begin();
+               PicturesIter != PicturesList->end(); PicturesIter++){
+
+               ProcessData.Append("PHOTO");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*PicturesListType)[PicturesIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*PicturesListType)[PicturesIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*PicturesListAltID)[PicturesIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*PicturesListAltID)[PicturesIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE..
+               
+               if ((*PicturesListMediatype)[PicturesIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*PicturesListMediatype)[PicturesIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*PicturesListPID)[PicturesIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*PicturesListPID)[PicturesIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*PicturesListPref)[PicturesIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*PicturesListPref)[PicturesIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*PicturesListTokens)[PicturesIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*PicturesListTokens)[PicturesIter->first]);
+                       
+               }
+               
+               ProcessData.Append(":data:");
+               ProcessData.Append((*PicturesListPictureType)[PicturesIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*PicturesListPicEncType)[PicturesIter->first]);
+               ProcessData.Append(",");
+               ProcessData.Append(PicturesIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+                       
+}
+
+void ContactDataObject::SaveLogo(map<int, string> *LogosList, map<int, wxString> *LogosListAltID, 
+       map<int, wxString> *LogosListPID, map<int, wxString> *LogosListType,
+       map<int, wxString> *LogosListPicEncType, map<int, wxString> *LogosListPictureType,
+       map<int, wxString> *LogosListMediatype, map<int, int> *LogosListPref,
+       map<int, wxString> *LogosListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, string>::iterator LogosIter = LogosList->begin();
+               LogosIter != LogosList->end(); LogosIter++){
+
+               ProcessData.Append("LOGO");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*LogosListType)[LogosIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*LogosListType)[LogosIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*LogosListAltID)[LogosIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*LogosListAltID)[LogosIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE..
+               
+               if ((*LogosListMediatype)[LogosIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*LogosListMediatype)[LogosIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*LogosListPID)[LogosIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*LogosListPID)[LogosIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*LogosListPref)[LogosIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*LogosListPref)[LogosIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*LogosListTokens)[LogosIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*LogosListTokens)[LogosIter->first]);
+                       
+               }
+               
+               ProcessData.Append(":data:");
+               ProcessData.Append((*LogosListPictureType)[LogosIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*LogosListPicEncType)[LogosIter->first]);
+               ProcessData.Append(",");
+               ProcessData.Append(LogosIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveSound(map<int, string> *SoundsList, map<int, wxString> *SoundsListAltID, 
+       map<int, wxString> *SoundsListPID, map<int, wxString> *SoundsListType,
+       map<int, wxString> *SoundsListAudioEncType, map<int, wxString> *SoundsListAudioType,
+       map<int, wxString> *SoundsListMediatype, map<int, wxString> *SoundsListLanguage, 
+       map<int, int> *SoundsListPref, map<int, wxString> *SoundsListTokens, 
+       wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, string>::iterator SoundsIter = SoundsList->begin();
+               SoundsIter != SoundsList->end(); SoundsIter++){
+
+               ProcessData.Append("SOUND");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*SoundsListType)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*SoundsListType)[SoundsIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*SoundsListAltID)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*SoundsListAltID)[SoundsIter->first]);
+                       
+               }
+
+               // Check if there is a value for LANGUAGE.
+               
+               if ((*SoundsListLanguage)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";LANGUAGE=");
+                       ProcessData.Append((*SoundsListLanguage)[SoundsIter->first]);
+                       
+               }
+               
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*SoundsListMediatype)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*SoundsListMediatype)[SoundsIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*SoundsListPID)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*SoundsListPID)[SoundsIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*SoundsListPref)[SoundsIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*SoundsListPref)[SoundsIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*SoundsListTokens)[SoundsIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*SoundsListTokens)[SoundsIter->first]);
+                       
+               }
+               
+               ProcessData.Append(":data:");
+               ProcessData.Append((*SoundsListAudioType)[SoundsIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*SoundsListAudioEncType)[SoundsIter->first]);
+               ProcessData.Append(",");
+               ProcessData.Append(SoundsIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveCalendarURI(map<int, wxString> *CalendarList, map<int, wxString> *CalendarListMediatype,
+       map<int, wxString> *CalendarListAltID, map<int, wxString> *CalendarListPID,
+       map<int, wxString> *CalendarListType, map<int, int> *CalendarListPref,
+       map<int, wxString> *CalendarListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator CalendarIter = CalendarList->begin();
+               CalendarIter != CalendarList->end(); CalendarIter++){
+
+               ProcessData.Append("CALURI");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*CalendarListType)[CalendarIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*CalendarListType)[CalendarIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*CalendarListAltID)[CalendarIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*CalendarListAltID)[CalendarIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*CalendarListMediatype)[CalendarIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*CalendarListMediatype)[CalendarIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*CalendarListPID)[CalendarIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*CalendarListPID)[CalendarIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*CalendarListPref)[CalendarIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*CalendarListPref)[CalendarIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*CalendarListTokens)[CalendarIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*CalendarListTokens)[CalendarIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(CalendarIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveCalendarRequestURI(map<int, wxString> *CalendarRequestList, map<int, wxString> *CalendarRequestListMediatype,
+       map<int, wxString> *CalendarRequestListAltID, map<int, wxString> *CalendarRequestListPID,
+       map<int, wxString> *CalendarRequestListType, map<int, int> *CalendarRequestListPref,
+       map<int, wxString> *CalendarRequestListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator CalendarRequestIter = CalendarRequestList->begin();
+               CalendarRequestIter != CalendarRequestList->end(); CalendarRequestIter++){
+
+               ProcessData.Append("CALADRURI");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*CalendarRequestListType)[CalendarRequestIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*CalendarRequestListType)[CalendarRequestIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*CalendarRequestListAltID)[CalendarRequestIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*CalendarRequestListAltID)[CalendarRequestIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*CalendarRequestListMediatype)[CalendarRequestIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*CalendarRequestListMediatype)[CalendarRequestIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*CalendarRequestListPID)[CalendarRequestIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*CalendarRequestListPID)[CalendarRequestIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*CalendarRequestListPref)[CalendarRequestIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*CalendarRequestListPref)[CalendarRequestIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*CalendarRequestListTokens)[CalendarRequestIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*CalendarRequestListTokens)[CalendarRequestIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(CalendarRequestIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveFreeBusyURI(std::map<int, wxString> *FreeBusyList, std::map<int, wxString> *FreeBusyListAltID, 
+       std::map<int, wxString> *FreeBusyListPID, std::map<int, wxString> *FreeBusyListType,
+       std::map<int, wxString> *FreeBusyListMediatype, std::map<int, int> *FreeBusyListPref, 
+       std::map<int, wxString> *FreeBusyListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator FreeBusyIter = FreeBusyList->begin();
+               FreeBusyIter != FreeBusyList->end(); FreeBusyIter++){
+
+               ProcessData.Append("FBURL");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*FreeBusyListType)[FreeBusyIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*FreeBusyListType)[FreeBusyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*FreeBusyListAltID)[FreeBusyIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*FreeBusyListAltID)[FreeBusyIter->first]);
+                       
+               }
+
+               // Check if there is a value for MEDIATYPE.
+               
+               if ((*FreeBusyListMediatype)[FreeBusyIter->first].size() > 0){
+               
+                       ProcessData.Append(";MEDIATYPE=");
+                       ProcessData.Append((*FreeBusyListMediatype)[FreeBusyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*FreeBusyListPID)[FreeBusyIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*FreeBusyListPID)[FreeBusyIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*FreeBusyListPref)[FreeBusyIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*FreeBusyListPref)[FreeBusyIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*FreeBusyListTokens)[FreeBusyIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*FreeBusyListTokens)[FreeBusyIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":");
+               ProcessData.Append(FreeBusyIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveKey(map<int, wxString> *KeyList, map<int, wxString> *KeyListAltID, 
+       map<int, wxString> *KeyListPID, map<int, wxString> *KeyListType,
+       map<int, bool> *KeyListKeyType, map<int, wxString> *KeyListDataEncType, 
+       map<int, wxString> *KeyListDataType, map<int, int> *KeyListPref, 
+       map<int, wxString> *KeyListTokens, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator KeyIter = KeyList->begin();
+               KeyIter != KeyList->end(); KeyIter++){
+
+               ProcessData.Append("KEY");
+                       
+               // Check if there is a value for TYPE.
+               
+               if ((*KeyListType)[KeyIter->first].size() > 0){
+               
+                       ProcessData.Append(";TYPE=");
+                       ProcessData.Append((*KeyListType)[KeyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for ALTID.
+               
+               if ((*KeyListAltID)[KeyIter->first].size() > 0){
+               
+                       ProcessData.Append(";ALTID=");
+                       ProcessData.Append((*KeyListAltID)[KeyIter->first]);
+                       
+               }
+               
+               // Check if there is a value for PID.
+
+               if ((*KeyListPID)[KeyIter->first].size() > 0){
+               
+                       ProcessData.Append(";PID=");
+                       ProcessData.Append((*KeyListPID)[KeyIter->first]);
+                       
+               }
+
+               // Check if there is a value for PREF.
+
+               if ((*KeyListPref)[KeyIter->first] > 0){
+               
+                       ProcessData.Append(";PREF=");
+                       ProcessData.Append(wxString::Format("%i", (*KeyListPref)[KeyIter->first]));
+                       
+               }
+
+               // Check if there is a value for tokens.
+
+               if ((*KeyListTokens)[KeyIter->first].size() > 0){
+               
+                       ProcessData.Append(";");
+                       ProcessData.Append((*KeyListTokens)[KeyIter->first]);
+                       
+               }
+                       
+               ProcessData.Append(":data:");
+               ProcessData.Append((*KeyListDataType)[KeyIter->first]);
+               ProcessData.Append(";");
+               ProcessData.Append((*KeyListDataEncType)[KeyIter->first]);
+               ProcessData.Append(",");
+               ProcessData.Append(KeyIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveVendor(map<int, wxString> *VendorList, map<int, wxString> *VendorListPEN, 
+       map<int, wxString> *VendorListElement, wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator VendorIter = VendorList->begin();
+               VendorIter != VendorList->end(); VendorIter++){
+
+               ProcessData.Append("VND-");
+               ProcessData.Append((*VendorListPEN)[VendorIter->first]);
+               ProcessData.Append("-");
+               ProcessData.Append((*VendorListElement)[VendorIter->first]);
+               ProcessData.Append(":");
+               ProcessData.Append(VendorIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }
+               
+}
+
+void ContactDataObject::SaveXToken(map<int, wxString> *XTokenList, map<int, wxString> *XTokenListTokens, 
+       wxString *SaveData){
+
+       wxString ProcessData = "";
+               
+       for (std::map<int, wxString>::iterator XTokenIter = XTokenList->begin();
+               XTokenIter != XTokenList->end(); XTokenIter++){
+
+               ProcessData.Append("X-");
+               ProcessData.Append((*XTokenListTokens)[XTokenIter->first]);
+               ProcessData.Append(":");
+               ProcessData.Append(XTokenIter->second);
+               ProcessData.Append("\n");
+
+               ProcessData = OutputText(&ProcessData);
+               
+               SaveData->Append(ProcessData);
+               ProcessData.clear();
+                       
+       }       
+               
 }
\ No newline at end of file
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy