Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added source, headers and unit testing for the NOTE vCard property for ContactDataObject.
[xestiaab/.git] / source / contacteditor / ContactDataObject.cpp
index 2a7f6a4..0770747 100644 (file)
@@ -84,6 +84,18 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
        int FNCount = 0;
        int NicknameCount = 0;
        int TimeZoneCount = 0;
+       int AddressCount = 0;
+       int EmailCount = 0;
+       int IMCount = 0;
+       int TelephoneCount = 0;
+       int LanguageCount = 0;
+       int GeographicCount = 0;
+       int RelatedCount = 0;
+       int URLCount = 0;
+       int TitleCount = 0;
+       int RoleCount = 0;
+       int OrganisationCount = 0;
+       int NoteCount = 0;
        wxString ContactLine;
        wxString PropertyLine;
        wxString PropertySeg1;
@@ -226,6 +238,82 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
                        ProcessTimeZone(PropertySeg1, PropertySeg2, &TimeZoneCount);
                        TimeZoneCount++;
                
+               } else if (Property == wxT("ADR")){
+               
+                       ProcessAddress(PropertySeg1, PropertySeg2, &AddressCount);
+                       AddressCount++;
+               
+               } else if (Property == wxT("EMAIL")){
+                                       
+                       ProcessEmail(PropertySeg1, PropertySeg2, &EmailCount);  
+                       EmailCount++;
+               
+               } else if (Property == wxT("IMPP")){
+               
+                       ProcessIM(PropertySeg1, PropertySeg2, &IMCount);
+                       IMCount++;
+                       
+               } else if (Property == wxT("TEL")){
+                               
+                       ProcessTelephone(PropertySeg1, PropertySeg2, &TelephoneCount);
+                       TelephoneCount++;
+               
+               } else if (Property == wxT("LANG")){
+               
+                       // See frmContactEditor-LoadLanguage.cpp
+                       
+                       ProcessLanguage(PropertySeg1, PropertySeg2, &LanguageCount);
+                       LanguageCount++;
+               
+               } else if (Property == wxT("GEO")){
+               
+                       // See frmContactEditor-LoadGeo.cpp
+                       
+                       ProcessGeographic(PropertySeg1, PropertySeg2, &GeographicCount);        
+                       GeographicCount++;
+               
+               } else if (Property == wxT("RELATED")){
+                       
+                       // See fromContactEditor-LoadRelated.cpp
+                       
+                       ProcessRelated(PropertySeg1, PropertySeg2, &RelatedCount);              
+                       RelatedCount++;
+                       
+               } else if (Property == wxT("URL")){
+
+                       // See frmContactEditor-LoadURL.cpp
+               
+                       ProcessURL(PropertySeg1, PropertySeg2, &URLCount);
+                       URLCount++;
+               
+               } else if (Property == wxT("TITLE")) {
+               
+                       // See frmContactEditor-LoadTitle.cpp
+                       
+                       ProcessTitle(PropertySeg1, PropertySeg2, &TitleCount);
+                       TitleCount++;
+                       
+               } else if (Property == wxT("ROLE")) {
+               
+                       // See frmContactEditor-LoadTitle.cpp
+                       
+                       ProcessRole(PropertySeg1, PropertySeg2, &RoleCount);
+                       RoleCount++;
+                       
+               } else if (Property == wxT("ORG")) {
+               
+                       // See frmContactEditor-LoadOrg.cpp
+                       
+                       ProcessOrganisation(PropertySeg1, PropertySeg2, &OrganisationCount);
+                       OrganisationCount++;
+                       
+               } else if (Property == wxT("NOTE")) {
+
+                       // See frmContactEditor-LoadNote.cpp
+
+                       ProcessNote(PropertySeg1, PropertySeg2, &NoteCount);
+                       NoteCount++;    
+                       
                }
                
        }
@@ -631,7 +719,7 @@ void ContactDataObject::ProcessNickname(wxString PropertySeg1, wxString Property
        
        intPrevValue = 9;
        
-       PropertyType PropType;
+       PropertyType PropType = PROPERTY_NONE;
        
        // Look for type before continuing.
        
@@ -1122,7 +1210,7 @@ void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString Property
        
        intPrevValue = 3;
        
-       PropertyType PropType;
+       PropertyType PropType = PROPERTY_NONE;
        
        // Look for type before continuing.
        
@@ -1262,6 +1350,2390 @@ void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString Property
 
 }
 
+void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertySeg2, int *AddressCount){
+
+       size_t intPropertyLen = PropertySeg1.Len();
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       wxString AddressLabel;
+       wxString AddressLang;
+       wxString AddressAltID;
+       wxString AddressPID;
+       wxString AddressTokens;
+       wxString AddressGeo;
+       wxString AddressTimezone;
+       wxString AddressType;
+       wxString AddressMediatype;
+       wxString AddressPOBox;
+       wxString AddressExtended;
+       wxString AddressStreet;
+       wxString AddressLocality;
+       wxString AddressCity;
+       wxString AddressRegion;
+       wxString AddressPostalCode;
+       wxString AddressCountry;
+       bool FirstToken = TRUE;                 
+       int intSplitsFound = 0;
+       int intSplitSize = 0;
+       int intPrevValue = 5;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       intPrevValue = 4;
+       
+       std::map<int, wxString> *AddressList = NULL;
+       std::map<int, wxString> *AddressListTown = NULL;
+       std::map<int, wxString> *AddressListCounty = NULL;
+       std::map<int, wxString> *AddressListPostCode = NULL;
+       std::map<int, wxString> *AddressListCountry = NULL;
+       std::map<int, wxString> *AddressListLabel = NULL;
+       std::map<int, wxString> *AddressListLang = NULL;                
+       std::map<int, wxString> *AddressListAltID = NULL;
+       std::map<int, wxString> *AddressListPID = NULL;
+       std::map<int, wxString> *AddressListTokens = NULL;
+       std::map<int, wxString> *AddressListGeo = NULL;
+       std::map<int, wxString> *AddressListTimezone = NULL;            
+       std::map<int, wxString> *AddressListType = NULL;
+       std::map<int, wxString> *AddressListMediatype = NULL;
+       std::map<int, int> *AddressListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       AddressList = &GeneralAddressList;
+                       AddressListTown = &GeneralAddressListTown;
+                       AddressListCounty = &GeneralAddressListCounty;
+                       AddressListPostCode = &GeneralAddressListPostCode;
+                       AddressListCountry = &GeneralAddressListCountry;
+                       AddressListLabel = &GeneralAddressListLabel;
+                       AddressListLang = &GeneralAddressListLang;              
+                       AddressListAltID = &GeneralAddressListAltID;
+                       AddressListPID = &GeneralAddressListPID;
+                       AddressListTokens = &GeneralAddressListTokens;
+                       AddressListGeo = &GeneralAddressListGeo;
+                       AddressListTimezone = &GeneralAddressListTimezone;
+                       AddressListType = &GeneralAddressListType;
+                       AddressListMediatype = &GeneralAddressListMediatype;
+                       AddressListPref = &GeneralAddressListPref;              
+                       break;
+               case PROPERTY_HOME:
+                       AddressList = &HomeAddressList;
+                       AddressListTown = &HomeAddressListTown;
+                       AddressListCounty = &HomeAddressListCounty;
+                       AddressListPostCode = &HomeAddressListPostCode;
+                       AddressListCountry = &HomeAddressListCountry;
+                       AddressListLabel = &HomeAddressListLabel;
+                       AddressListLang = &HomeAddressListLang;         
+                       AddressListAltID = &HomeAddressListAltID;
+                       AddressListPID = &HomeAddressListPID;
+                       AddressListTokens = &HomeAddressListTokens;
+                       AddressListGeo = &HomeAddressListGeo;
+                       AddressListTimezone = &HomeAddressListTimezone;
+                       AddressListType = &HomeAddressListType;
+                       AddressListMediatype = &HomeAddressListMediatype;
+                       AddressListPref = &HomeAddressListPref;
+                       break;
+               case PROPERTY_WORK:
+                       AddressList = &BusinessAddressList;
+                       AddressListTown = &BusinessAddressListTown;
+                       AddressListCounty = &BusinessAddressListCounty;
+                       AddressListPostCode = &BusinessAddressListPostCode;
+                       AddressListCountry = &BusinessAddressListCountry;
+                       AddressListLabel = &BusinessAddressListLabel;
+                       AddressListLang = &BusinessAddressListLang;             
+                       AddressListAltID = &BusinessAddressListAltID;
+                       AddressListPID = &BusinessAddressListPID;
+                       AddressListTokens = &BusinessAddressListTokens;
+                       AddressListGeo = &BusinessAddressListGeo;
+                       AddressListTimezone = &BusinessAddressListTimezone;
+                       AddressListType = &BusinessAddressListType;
+                       AddressListMediatype = &BusinessAddressListMediatype;
+                       AddressListPref = &BusinessAddressListPref;
+                       break;
+       }
+       
+       intPrevValue = 4;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("LABEL")){
+               
+                       AddressListLabel->erase(*AddressCount);
+                       AddressListLabel->insert(std::make_pair(*AddressCount, PropertyValue));
+                               
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       AddressListLang->erase(*AddressCount);
+                       AddressListLang->insert(std::make_pair(*AddressCount, PropertyValue));                  
+               
+               } else if (PropertyName == wxT("ALTID")){
+
+                       AddressListAltID->erase(*AddressCount);
+                       AddressListAltID->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       AddressListPID->erase(*AddressCount);
+                       AddressListPID->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("GEO")){
+               
+                       AddressListGeo->erase(*AddressCount);
+                       AddressListGeo->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("TZ")){
+
+                       AddressListTimezone->erase(*AddressCount);
+                       AddressListTimezone->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("MEDIATYPE")){
+
+                       AddressListMediatype->erase(*AddressCount);
+                       AddressListMediatype->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               AddressListPref->erase(*AddressCount);
+                               AddressListPref->insert(std::make_pair(*AddressCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }                       
+       
+       // Split the address. 
+
+       //std::map<int, int>::iterator SLiter;
+       intPropertyLen = PropertySeg2.Len();
+       SplitPoints.clear();
+       SplitLength.clear();
+       intSplitsFound = 0;
+       intSplitSize = 0;
+       intPrevValue = 0;
+       
+       for (int i = 0; i <= intPropertyLen; i++){
+
+               intSplitSize++;
+       
+               if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
+       
+                       intSplitsFound++;
+                       SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
+                       
+                       if (intSplitsFound == 6){ 
+                       
+                               SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+                               break; 
+                               
+                       } else {
+                       
+                               SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+                       
+                       }
+                       
+                       intSplitSize = 0;                                       
+       
+               }
+
+       }
+       
+       // Split the data into several parts.                   
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+                       
+               if (intiter->first == 1){
+               
+                       // Deal with PO Box.
+                       
+                       SLiter = SplitLength.find(1);
+                                                               
+                       //txtSurname->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(0, SLiter->second), TRUE));
+                       AddressPOBox = PropertySeg2.Mid(0, SLiter->second);
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 2){
+               
+                       // Deal with extended address.
+                       
+                       SLiter = SplitLength.find(2);
+                       
+                       AddressExtended = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtForename->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 3){
+               
+                       // Deal with street address.
+                       
+                       SLiter = SplitLength.find(3);
+                                                               
+                       AddressStreet = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtOtherNames->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 4){
+               
+                       // Deal with locality
+
+                       SLiter = SplitLength.find(4);
+                       
+                       AddressLocality = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+               
+               } else if (intiter->first == 5){
+               
+                       // Deal with region.
+
+                       SLiter = SplitLength.find(5);
+                       
+                       AddressRegion = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+               
+               } else if (intiter->first == 6){
+               
+                       // Deal with post code.
+
+                       SLiter = SplitLength.find(6);
+                       
+                       AddressPostalCode = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       // Deal with country.
+                                               
+                       AddressCountry = PropertySeg2.Mid(intPrevValue, wxString::npos);
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+                       
+                       break;
+               
+               }
+       
+       }       
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&AddressStreet, FALSE); 
+       CaptureString(&AddressLocality, FALSE);
+       CaptureString(&AddressRegion, FALSE);
+       CaptureString(&AddressPostalCode, FALSE);
+       CaptureString(&AddressCountry, FALSE);
+               
+       if (!PropertyTokens.IsEmpty()){
+       
+               AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
+       
+       }
+
+       AddressListCountry->insert(std::make_pair(*AddressCount, AddressCountry));      
+       AddressList->insert(std::make_pair(*AddressCount, AddressStreet));
+       AddressListTown->insert(std::make_pair(*AddressCount, AddressLocality));
+       AddressListCounty->insert(std::make_pair(*AddressCount, AddressRegion));
+       AddressListPostCode->insert(std::make_pair(*AddressCount, AddressPostalCode));
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("")));
+                       break;
+               case PROPERTY_HOME:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("home")));
+                       break;
+               case PROPERTY_WORK:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("work")));    
+                       break;
+       }
+       
+       AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
+
+}
+
+void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg2, int *EmailCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+
+       int intPrevValue = 7;
+       int intPref = 0;                        
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 6;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       std::map<int, wxString> *EmailList = NULL;
+       std::map<int, wxString> *EmailListType = NULL;
+       std::map<int, wxString> *EmailListAltID = NULL;
+       std::map<int, wxString> *EmailListPID = NULL;
+       std::map<int, wxString> *EmailListTokens = NULL;                
+       std::map<int, int> *EmailListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       EmailList = &GeneralEmailList;
+                       EmailListType = &GeneralEmailListType;
+                       EmailListAltID = &GeneralEmailListAltID;
+                       EmailListPID = &GeneralEmailListPID;
+                       EmailListTokens = &GeneralEmailListTokens;              
+                       EmailListPref = &GeneralEmailListPref;  
+                       break;
+               case PROPERTY_HOME:
+                       EmailList = &HomeEmailList;
+                       EmailListType = &HomeEmailListType;
+                       EmailListAltID = &HomeEmailListAltID;
+                       EmailListPID = &HomeEmailListPID;
+                       EmailListTokens = &HomeEmailListTokens;         
+                       EmailListPref = &HomeEmailListPref;     
+                       break;
+               case PROPERTY_WORK:
+                       EmailList = &BusinessEmailList;
+                       EmailListType = &BusinessEmailListType;
+                       EmailListAltID = &BusinessEmailListAltID;
+                       EmailListPID = &BusinessEmailListPID;
+                       EmailListTokens = &BusinessEmailListTokens;             
+                       EmailListPref = &BusinessEmailListPref; 
+                       break;
+       }
+       
+       intPrevValue = 6;
+       
+       std::map<int,int>::iterator SLiter;
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       EmailListAltID->erase(*EmailCount);
+                       EmailListAltID->insert(std::make_pair(*EmailCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       EmailListPID->erase(*EmailCount);
+                       EmailListPID->insert(std::make_pair(*EmailCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               EmailListPref->erase(*EmailCount);
+                               EmailListPref->insert(std::make_pair(*EmailCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }
+       
+       EmailList->insert(std::make_pair(*EmailCount, PropertySeg2));
+       
+       // Add the name token data.
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               EmailListTokens->insert(std::make_pair(*EmailCount, PropertyTokens));
+       
+       }       
+
+
+}
+
+void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, int *IMCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+
+       int intPrevValue = 6;
+       int intPref = 0;                        
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 5;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       std::map<int, wxString> *IMList = NULL;
+       std::map<int, wxString> *IMListType = NULL;
+       std::map<int, wxString> *IMListAltID = NULL;
+       std::map<int, wxString> *IMListPID = NULL;
+       std::map<int, wxString> *IMListTokens = NULL;
+       std::map<int, wxString> *IMListMediatype = NULL;        
+       std::map<int, int> *IMListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       IMList = &GeneralIMList;
+                       IMListType = &GeneralIMListType;
+                       IMListAltID = &GeneralIMListAltID;
+                       IMListPID = &GeneralIMListPID;
+                       IMListTokens = &GeneralIMListTokens;
+                       IMListMediatype = &GeneralIMListMediatype;
+                       IMListPref = &GeneralIMListPref;        
+                       break;
+               case PROPERTY_HOME:
+                       IMList = &HomeIMList;
+                       IMListType = &HomeIMListType;
+                       IMListAltID = &HomeIMListAltID;
+                       IMListPID = &HomeIMListPID;
+                       IMListTokens = &HomeIMListTokens;
+                       IMListMediatype = &HomeIMListMediatype;         
+                       IMListPref = &HomeIMListPref;   
+                       break;
+               case PROPERTY_WORK:
+                       IMList = &BusinessIMList;
+                       IMListType = &BusinessIMListType;
+                       IMListAltID = &BusinessIMListAltID;
+                       IMListPID = &BusinessIMListPID;
+                       IMListTokens = &BusinessIMListTokens;   
+                       IMListMediatype = &BusinessIMListMediatype;     
+                       IMListPref = &BusinessIMListPref;       
+                       break;
+       }
+       
+       intPrevValue = 5;
+       
+       std::map<int,int>::iterator SLiter;
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       IMListAltID->erase(*IMCount);
+                       IMListAltID->insert(std::make_pair(*IMCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       IMListPID->erase(*IMCount);
+                       IMListPID->insert(std::make_pair(*IMCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("MEDIATYPE")){
+
+                       IMListMediatype->erase(*IMCount);
+                       IMListMediatype->insert(std::make_pair(*IMCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               IMListPref->erase(*IMCount);
+                               IMListPref->insert(std::make_pair(*IMCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }
+               
+       IMList->insert(std::make_pair(*IMCount, PropertySeg2));
+       
+       // Add the name token data.
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               IMListTokens->insert(std::make_pair(*IMCount, PropertyTokens));
+       
+       }
+
+}
+
+void ContactDataObject::ProcessTelephone(wxString PropertySeg1, wxString PropertySeg2, int *TelephoneCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;
+       
+       int intPref = 0;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       wxString TelTypeUI;
+       wxString TelTypeDetail;
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       
+       std::map<int,int> TypeSplitPoints;
+       std::map<int,int> TypeSplitLength;
+       std::map<int,int>::iterator TSLiter;
+       
+       int intSplitSize = 0;
+       int intSplitsFound = 0;
+       int intSplitPoint = 0;
+       int intType = 0;
+       int intPrevValue = 5;
+               
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       // Look for type before continuing.
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+
+               if (PropertyName == wxT("TYPE")){
+               
+                       // Process each value in type and translate each
+                       // part.
+               
+                       // Strip out the quotes if they are there.
+               
+                       size_t intPropertyValueLen = PropertyValue.Len();
+               
+                       if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                               PropertyValue.Trim();
+                               PropertyValue.RemoveLast();
+                       
+                       }                               
+               
+                       if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                               PropertyValue.Remove(0, 1);
+                       
+                       }
+                       
+                       TelTypeDetail = PropertyValue;
+                       
+                       intSplitSize = 0;
+                       intSplitsFound = 0;
+                       intSplitPoint = 0;
+                       
+                       for (int i = 0; i <= intPropertyValueLen; i++){
+       
+                               intSplitSize++;
+       
+                               if (PropertyValue.Mid(i, 1) == wxT(",") && PropertyValue.Mid((i - 1), 1) != wxT("\\")){
+       
+                                       if (intSplitsFound == 0){
+
+                                               TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
+                                               TypeSplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+                       
+                                       } else {
+                       
+                                               TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
+                                               TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
+                       
+                                       }                       
+
+                                       intSplitsFound++;
+                                       i++;
+                                       intSplitPoint = i;
+                                       intSplitSize = 0;
+       
+                               }
+       
+                       }
+                       
+                       TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
+                       TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));                                                           
+               
+                       int intTypeSeek = 0;
+               
+                       for (std::map<int, int>::iterator typeiter = TypeSplitPoints.begin(); 
+                       typeiter != TypeSplitPoints.end(); ++typeiter){
+                       
+                               wxString TypePropertyName;
+                               
+                               TSLiter = TypeSplitLength.find(typeiter->first);
+                               
+                               TypePropertyName = PropertyValue.Mid(typeiter->second, TSLiter->second);
+                               
+                               if (intTypeSeek == 0){
+                               
+                               
+                               } else {
+                                                                               
+                                       TelTypeUI.Append(wxT(","));                                                     
+                               
+                               }
+                       
+                               if (TypePropertyName == wxT("home")){
+                               
+                                       PropType = PROPERTY_HOME;
+                               
+                               } else if (TypePropertyName == wxT("work")){
+                               
+                                       PropType = PROPERTY_WORK;
+                                                                       
+                               }
+                               
+                               
+                               if (TypePropertyName == wxT("text")){
+                               
+                                       TelTypeUI.Append(_("text"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("voice")){
+                               
+                                       TelTypeUI.Append(_("voice"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("fax")){
+                               
+                                       TelTypeUI.Append(_("fax"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("cell")){
+                               
+                                       TelTypeUI.Append(_("mobile"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("video")){
+                               
+                                       TelTypeUI.Append(_("video"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("pager")){
+                               
+                                       TelTypeUI.Append(_("pager"));
+                                       intTypeSeek++;
+                               
+                               } else if (TypePropertyName == wxT("textphone")){
+                               
+                                       TelTypeUI.Append(_("textphone"));
+                                       intTypeSeek++;
+                               
+                               }
+                       
+                       }
+               
+               }
+               
+       }
+       
+       std::map<int, wxString> *TelephoneList = NULL;
+       std::map<int, wxString> *TelephoneListType = NULL;
+       std::map<int, wxString> *TelephoneListAltID = NULL;
+       std::map<int, wxString> *TelephoneListPID = NULL;
+       std::map<int, wxString> *TelephoneListTokens = NULL;
+       std::map<int, wxString> *TelephoneListTypeInfo = NULL;  
+       std::map<int, int> *TelephoneListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       TelephoneList = &GeneralTelephoneList;
+                       TelephoneListType = &GeneralTelephoneListType;
+                       TelephoneListAltID = &GeneralTelephoneListAltID;
+                       TelephoneListPID = &GeneralTelephoneListPID;
+                       TelephoneListTokens = &GeneralTelephoneListTokens;
+                       TelephoneListTypeInfo = &GeneralTelephoneListTypeInfo;
+                       TelephoneListPref = &GeneralTelephoneListPref;  
+                       break;
+               case PROPERTY_HOME:
+                       TelephoneList = &HomeTelephoneList;
+                       TelephoneListType = &HomeTelephoneListType;
+                       TelephoneListAltID = &HomeTelephoneListAltID;
+                       TelephoneListPID = &HomeTelephoneListPID;
+                       TelephoneListTokens = &HomeTelephoneListTokens;
+                       TelephoneListTypeInfo = &HomeTelephoneListTypeInfo;     
+                       TelephoneListPref = &HomeTelephoneListPref;     
+                       break;
+               case PROPERTY_WORK:
+                       TelephoneList = &BusinessTelephoneList;
+                       TelephoneListType = &BusinessTelephoneListType;
+                       TelephoneListAltID = &BusinessTelephoneListAltID;
+                       TelephoneListPID = &BusinessTelephoneListPID;
+                       TelephoneListTokens = &BusinessTelephoneListTokens;     
+                       TelephoneListTypeInfo = &BusinessTelephoneListTypeInfo; 
+                       TelephoneListPref = &BusinessTelephoneListPref; 
+                       break;
+       }
+               
+       // Process the properties.
+       
+       bool FirstToken = TRUE;
+       
+       intPrevValue = 5;
+       SplitPoints.clear();
+       SplitLength.clear();
+
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+
+       intPrevValue = 4;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       TelephoneListAltID->erase(*TelephoneCount);
+                       TelephoneListAltID->insert(std::make_pair(*TelephoneCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       TelephoneListPID->erase(*TelephoneCount);
+                       TelephoneListPID->insert(std::make_pair(*TelephoneCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               TelephoneListPref->erase(*TelephoneCount);
+                               TelephoneListPref->insert(std::make_pair(*TelephoneCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }
+               
+       TelephoneList->insert(std::make_pair(*TelephoneCount, PropertySeg2));
+       TelephoneListTypeInfo->insert(std::make_pair(*TelephoneCount, TelTypeUI));
+       
+       // Add the name token data.
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               TelephoneListTokens->insert(std::make_pair(*TelephoneCount, PropertyTokens));
+       
+       }
+
+}
+
+void ContactDataObject::ProcessLanguage(wxString PropertySeg1, wxString PropertySeg2, int *LanguageCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+
+       int intPrevValue = 6;
+       int intPref = 0;                        
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 5;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       std::map<int, wxString> *LanguageList = NULL;
+       std::map<int, wxString> *LanguageListType = NULL;
+       std::map<int, wxString> *LanguageListAltID = NULL;
+       std::map<int, wxString> *LanguageListPID = NULL;
+       std::map<int, wxString> *LanguageListTokens = NULL;
+       std::map<int, int> *LanguageListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       LanguageList = &GeneralLanguageList;
+                       LanguageListType = &GeneralLanguageListType;
+                       LanguageListAltID = &GeneralLanguageListAltID;
+                       LanguageListPID = &GeneralLanguageListPID;
+                       LanguageListTokens = &GeneralLanguageListTokens;
+                       LanguageListPref = &GeneralLanguageListPref;    
+                       break;
+               case PROPERTY_HOME:
+                       LanguageList = &HomeLanguageList;
+                       LanguageListType = &HomeLanguageListType;
+                       LanguageListAltID = &HomeLanguageListAltID;
+                       LanguageListPID = &HomeLanguageListPID;
+                       LanguageListTokens = &HomeLanguageListTokens;   
+                       LanguageListPref = &HomeLanguageListPref;       
+                       break;
+               case PROPERTY_WORK:
+                       LanguageList = &BusinessLanguageList;
+                       LanguageListType = &BusinessLanguageListType;
+                       LanguageListAltID = &BusinessLanguageListAltID;
+                       LanguageListPID = &BusinessLanguageListPID;
+                       LanguageListTokens = &BusinessLanguageListTokens;       
+                       LanguageListPref = &BusinessLanguageListPref;
+                       break;
+       }
+       
+       intPrevValue = 5;
+       
+       std::map<int,int>::iterator SLiter;
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       LanguageListAltID->erase(*LanguageCount);
+                       LanguageListAltID->insert(std::make_pair(*LanguageCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       LanguageListPID->erase(*LanguageCount);
+                       LanguageListPID->insert(std::make_pair(*LanguageCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               LanguageListPref->erase(*LanguageCount);
+                               LanguageListPref->insert(std::make_pair(*LanguageCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }
+               
+       LanguageList->insert(std::make_pair(*LanguageCount, PropertySeg2));
+       
+       // Add the name token data.
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               LanguageListTokens->insert(std::make_pair(*LanguageCount, PropertyTokens));
+       
+       }
+
+}
+
+void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString PropertySeg2, int *GeographicCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+
+       int intPrevValue = 5;
+       int intPref = 0;                        
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       std::map<int, wxString> *GeopositionList = NULL;
+       std::map<int, wxString> *GeopositionListType = NULL;
+       std::map<int, wxString> *GeopositionListAltID = NULL;
+       std::map<int, wxString> *GeopositionListPID = NULL;
+       std::map<int, wxString> *GeopositionListTokens = NULL;
+       std::map<int, wxString> *GeopositionListMediatype = NULL;
+       std::map<int, int> *GeopositionListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       GeopositionList = &GeneralGeographyList;
+                       GeopositionListType = &GeneralGeographyListType;
+                       GeopositionListAltID = &GeneralGeographyListAltID;
+                       GeopositionListPID = &GeneralGeographyListPID;
+                       GeopositionListTokens = &GeneralGeographyListTokens;
+                       GeopositionListMediatype = &GeneralGeographyListMediatype;
+                       GeopositionListPref = &GeneralGeographyListPref;        
+                       break;
+               case PROPERTY_HOME:
+                       GeopositionList = &HomeGeographyList;
+                       GeopositionListType = &HomeGeographyListType;
+                       GeopositionListAltID = &HomeGeographyListAltID;
+                       GeopositionListPID = &HomeGeographyListPID;
+                       GeopositionListTokens = &HomeGeographyListTokens;
+                       GeopositionListMediatype = &HomeGeographyListMediatype;
+                       GeopositionListPref = &HomeGeographyListPref;   
+                       break;
+               case PROPERTY_WORK:
+                       GeopositionList = &BusinessGeographyList;
+                       GeopositionListType = &BusinessGeographyListType;
+                       GeopositionListAltID = &BusinessGeographyListAltID;
+                       GeopositionListPID = &BusinessGeographyListPID;
+                       GeopositionListTokens = &BusinessGeographyListTokens;
+                       GeopositionListMediatype = &BusinessGeographyListMediatype;     
+                       GeopositionListPref = &BusinessGeographyListPref;
+                       break;
+       }
+       
+       intPrevValue = 4;
+       
+       std::map<int,int>::iterator SLiter;
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       GeopositionListAltID->erase(*GeographicCount);
+                       GeopositionListAltID->insert(std::make_pair(*GeographicCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       GeopositionListPID->erase(*GeographicCount);
+                       GeopositionListPID->insert(std::make_pair(*GeographicCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("MEDIATYPE")){
+
+                       GeopositionListMediatype->erase(*GeographicCount);
+                       GeopositionListMediatype->insert(std::make_pair(*GeographicCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               GeopositionListPref->erase(*GeographicCount);
+                               GeopositionListPref->insert(std::make_pair(*GeographicCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }
+               
+       GeopositionList->insert(std::make_pair(*GeographicCount, PropertySeg2));
+       
+       // Add the name token data.
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               GeopositionListTokens->insert(std::make_pair(*GeographicCount, PropertyTokens));
+       
+       }
+
+}
+
+void ContactDataObject::ProcessRelated(wxString PropertySeg1, wxString PropertySeg2, int *RelatedCount){
+
+       size_t intPropertyLen = PropertySeg1.Len();
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       wxString RelatedType;
+       wxString RelatedTypeOriginal;                   
+       wxString RelatedName;
+       bool FirstToken = TRUE;                 
+       int intSplitsFound = 0;
+       int intSplitSize = 0;
+       int intPrevValue = 9;
+       int intPref = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 8;
+       
+       // Look for type before continuing.
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process these.
+               
+               RelatedTypeOriginal = PropertyValue;
+               
+               if (PropertyName == wxT("TYPE")){
+               
+                       if (PropertyValue == wxT("contact")){
+
+                               RelatedType = _("Contact");
+
+                       } else if (PropertyValue == wxT("acquaintance")){
+
+                               RelatedType = _("Acquaintance");
+
+                       } else if (PropertyValue == wxT("friend")){
+
+                               RelatedType = _("Friend");
+
+                       } else if (PropertyValue == wxT("met")){
+
+                               RelatedType = _("Met");
+
+                       } else if (PropertyValue == wxT("co-worker")){
+
+                               RelatedType = _("Co-worker");
+
+                       } else if (PropertyValue == wxT("colleague")){
+
+                               RelatedType = _("Colleague");
+
+                       } else if (PropertyValue == wxT("co-resident")){
+
+                               RelatedType = _("Co-resident");
+
+                       } else if (PropertyValue == wxT("neighbor")){
+
+                               RelatedType = _("Neighbour");
+
+                       } else if (PropertyValue == wxT("child")){
+
+                               RelatedType = _("Child");
+
+                       } else if (PropertyValue == wxT("parent")){
+
+                               RelatedType = _("Parent");
+
+                       } else if (PropertyValue == wxT("sibling")){
+
+                               RelatedType = _("Sibling");
+
+                       } else if (PropertyValue == wxT("spouse")){
+
+                               RelatedType = _("Spouse");
+
+                       } else if (PropertyValue == wxT("kin")){
+
+                               RelatedType = _("Kin");
+
+                       } else if (PropertyValue == wxT("muse")){
+
+                               RelatedType = _("Muse");
+
+                       } else if (PropertyValue == wxT("crush")){
+
+                               RelatedType = _("Crush");
+
+                       } else if (PropertyValue == wxT("date")){
+
+                               RelatedType = _("Date");
+
+                       } else if (PropertyValue == wxT("sweetheart")){
+
+                               RelatedType = _("Sweetheart");
+
+                       } else if (PropertyValue == wxT("me")){
+
+                               RelatedType = _("Me");
+
+                       } else if (PropertyValue == wxT("agent")){
+
+                               RelatedType = _("Agent");
+
+                       } else if (PropertyValue == wxT("emergency")){
+
+                               RelatedType = _("Emergency");
+
+                       } else {
+
+                               RelatedType = PropertyValue;
+
+                       }
+               
+               }
+       
+       }
+       
+       intPrevValue = 8;                       
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }
+               
+               CaptureString(&PropertyValue, FALSE);
+                       
+               if (PropertyName == wxT("ALTID")){
+
+                       GeneralRelatedListAltID.erase(*RelatedCount);
+                       GeneralRelatedListAltID.insert(std::make_pair(*RelatedCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       GeneralRelatedListPID.erase(*RelatedCount);
+                       GeneralRelatedListPID.insert(std::make_pair(*RelatedCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               GeneralRelatedListPref.erase(*RelatedCount);
+                               GeneralRelatedListPref.insert(std::make_pair(*RelatedCount, PriorityNumber));
+
+                       }
+               
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       GeneralRelatedListLanguage.erase(*RelatedCount);
+                       GeneralRelatedListLanguage.insert(std::make_pair(*RelatedCount, PropertyValue));
+               
+               } else if (PropertyName != wxT("TYPE")) {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }                                       
+       
+       // Add the data to the General/Home/Work address variables.
+                               
+       GeneralRelatedList.erase(*RelatedCount);
+       GeneralRelatedListRelType.erase(*RelatedCount);
+       GeneralRelatedListType.erase(*RelatedCount);
+       GeneralRelatedListTokens.erase(*RelatedCount);
+       GeneralRelatedList.insert(std::make_pair(*RelatedCount, PropertySeg2));
+       GeneralRelatedListRelType.insert(std::make_pair(*RelatedCount, RelatedType));                   
+       GeneralRelatedListType.insert(std::make_pair(*RelatedCount, RelatedType));
+       GeneralRelatedListTokens.insert(std::make_pair(*RelatedCount, PropertyTokens));
+
+}
+
+void ContactDataObject::ProcessURL(wxString PropertySeg1, wxString PropertySeg2, int *URLCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       int intPrevValue = 5;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       // Setup the pointers.
+       
+       std::map<int, wxString> *WebsiteList = NULL;
+       std::map<int, wxString> *WebsiteListAltID = NULL;
+       std::map<int, wxString> *WebsiteListPID = NULL;
+       std::map<int, wxString> *WebsiteListType = NULL;
+       std::map<int, wxString> *WebsiteListTokens = NULL;
+       std::map<int, wxString> *WebsiteListMediatype = NULL;
+       std::map<int, int> *WebsiteListPref = NULL;
+       
+       // Setup blank lines for later on.
+       
+       switch(PropType){
+               case PROPERTY_NONE:
+                       WebsiteList = &GeneralWebsiteList;
+                       WebsiteListType = &GeneralWebsiteListType;
+                       WebsiteListAltID = &GeneralWebsiteListAltID;
+                       WebsiteListPID = &GeneralWebsiteListPID;
+                       WebsiteListTokens = &GeneralWebsiteListTokens;
+                       WebsiteListMediatype = &GeneralWebsiteListMediatype;
+                       WebsiteListPref = &GeneralWebsiteListPref;      
+                       break;
+               case PROPERTY_HOME:
+                       WebsiteList = &HomeWebsiteList;
+                       WebsiteListType = &HomeWebsiteListType;
+                       WebsiteListAltID = &HomeWebsiteListAltID;
+                       WebsiteListPID = &HomeWebsiteListPID;
+                       WebsiteListTokens = &HomeWebsiteListTokens;
+                       WebsiteListMediatype = &HomeWebsiteListMediatype;
+                       WebsiteListPref = &HomeWebsiteListPref; 
+                       break;
+               case PROPERTY_WORK:
+                       WebsiteList = &BusinessWebsiteList;
+                       WebsiteListType = &BusinessWebsiteListType;
+                       WebsiteListAltID = &BusinessWebsiteListAltID;
+                       WebsiteListPID = &BusinessWebsiteListPID;
+                       WebsiteListTokens = &BusinessWebsiteListTokens;
+                       WebsiteListMediatype = &BusinessWebsiteListMediatype;   
+                       WebsiteListPref = &BusinessWebsiteListPref;
+                       break;
+       }
+       
+       intPrevValue = 4;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               if (PropertyName == wxT("ALTID")){
+
+                       WebsiteListAltID->erase(*URLCount);
+                       WebsiteListAltID->insert(std::make_pair(*URLCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       WebsiteListPID->erase(*URLCount);
+                       WebsiteListPID->insert(std::make_pair(*URLCount, PropertyValue));
+                       
+               } else if (PropertyName == wxT("PREF")){
+                       
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               WebsiteListPref->erase(*URLCount);
+                               WebsiteListPref->insert(std::make_pair(*URLCount, PriorityNumber));
+
+                       }
+                                       
+               } else if (PropertyName == wxT("MEDIATYPE")){
+               
+                       WebsiteListMediatype->erase(*URLCount);
+                       WebsiteListMediatype->insert(std::make_pair(*URLCount, PropertyValue));
+               
+               } else {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&PropertySeg2, FALSE);
+                       
+       WebsiteList->insert(std::make_pair(*URLCount, PropertySeg2));
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               WebsiteListTokens->insert(std::make_pair(*URLCount, PropertyTokens));
+                       
+       }
+       
+}
+
+void ContactDataObject::ProcessTitle(wxString PropertySeg1, wxString PropertySeg2, int *TitleCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       int intPrevValue = 7;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 6;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       // Setup the pointers.
+       
+       std::map<int, wxString> *TitleList = NULL;
+       std::map<int, wxString> *TitleListAltID = NULL;
+       std::map<int, wxString> *TitleListPID = NULL;
+       std::map<int, wxString> *TitleListType = NULL;
+       std::map<int, wxString> *TitleListTokens = NULL;
+       std::map<int, wxString> *TitleListLanguage = NULL;
+       std::map<int, int> *TitleListPref = NULL;
+       
+       // Setup blank lines for later on.
+       
+       switch(PropType){
+               case PROPERTY_NONE:
+                       TitleList = &GeneralTitleList;
+                       TitleListType = &GeneralTitleListType;
+                       TitleListAltID = &GeneralTitleListAltID;
+                       TitleListPID = &GeneralTitleListPID;
+                       TitleListTokens = &GeneralTitleListTokens;
+                       TitleListLanguage = &GeneralTitleListLanguage;
+                       TitleListPref = &GeneralTitleListPref;  
+                       break;
+               case PROPERTY_HOME:
+                       TitleList = &HomeTitleList;
+                       TitleListType = &HomeTitleListType;
+                       TitleListAltID = &HomeTitleListAltID;
+                       TitleListPID = &HomeTitleListPID;
+                       TitleListTokens = &HomeTitleListTokens;
+                       TitleListLanguage = &HomeTitleListLanguage;
+                       TitleListPref = &HomeTitleListPref;     
+                       break;
+               case PROPERTY_WORK:
+                       TitleList = &BusinessTitleList;
+                       TitleListType = &BusinessTitleListType;
+                       TitleListAltID = &BusinessTitleListAltID;
+                       TitleListPID = &BusinessTitleListPID;
+                       TitleListTokens = &BusinessTitleListTokens;
+                       TitleListLanguage = &BusinessTitleListLanguage; 
+                       TitleListPref = &BusinessTitleListPref;
+                       break;
+       }
+
+       intPrevValue = 6;
+               
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }                               
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               if (PropertyName == wxT("ALTID")){
+               
+                       TitleListAltID->erase(*TitleCount);
+                       TitleListAltID->insert(std::make_pair(*TitleCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       TitleListPID->erase(*TitleCount);
+                       TitleListPID->insert(std::make_pair(*TitleCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                               
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               TitleListPref->erase(*TitleCount);
+                               TitleListPref->insert(std::make_pair(*TitleCount, PriorityNumber));
+
+                       }
+                                       
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       TitleListLanguage->erase(*TitleCount);
+                       TitleListLanguage->insert(std::make_pair(*TitleCount, PropertyValue));
+               
+               } else {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&PropertySeg2, FALSE);
+
+       TitleList->insert(std::make_pair(*TitleCount, PropertySeg2));
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               TitleListTokens->insert(std::make_pair(*TitleCount, PropertyTokens));
+                       
+       }
+
+}
+
+void ContactDataObject::ProcessRole(wxString PropertySeg1, wxString PropertySeg2, int *RoleCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       int intPrevValue = 6;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 5;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       // Setup the pointers.
+       
+       std::map<int, wxString> *RoleList = NULL;
+       std::map<int, wxString> *RoleListAltID = NULL;
+       std::map<int, wxString> *RoleListPID = NULL;
+       std::map<int, wxString> *RoleListType = NULL;
+       std::map<int, wxString> *RoleListTokens = NULL;
+       std::map<int, wxString> *RoleListLanguage = NULL;
+       std::map<int, int> *RoleListPref = NULL;
+       
+       // Setup blank lines for later on.
+       
+       switch(PropType){
+               case PROPERTY_NONE:
+                       RoleList = &GeneralRoleList;
+                       RoleListType = &GeneralRoleListType;
+                       RoleListAltID = &GeneralRoleListAltID;
+                       RoleListPID = &GeneralRoleListPID;
+                       RoleListTokens = &GeneralRoleListTokens;
+                       RoleListLanguage = &GeneralRoleListLanguage;
+                       RoleListPref = &GeneralRoleListPref;    
+                       break;
+               case PROPERTY_HOME:
+                       RoleList = &HomeRoleList;
+                       RoleListType = &HomeRoleListType;
+                       RoleListAltID = &HomeRoleListAltID;
+                       RoleListPID = &HomeRoleListPID;
+                       RoleListTokens = &HomeRoleListTokens;
+                       RoleListLanguage = &HomeRoleListLanguage;
+                       RoleListPref = &HomeRoleListPref;       
+                       break;
+               case PROPERTY_WORK:
+                       RoleList = &BusinessRoleList;
+                       RoleListType = &BusinessRoleListType;
+                       RoleListAltID = &BusinessRoleListAltID;
+                       RoleListPID = &BusinessRoleListPID;
+                       RoleListTokens = &BusinessRoleListTokens;
+                       RoleListLanguage = &BusinessRoleListLanguage;   
+                       RoleListPref = &BusinessRoleListPref;
+                       break;
+       }
+
+       intPrevValue = 5;
+               
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }                               
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               if (PropertyName == wxT("ALTID")){
+               
+                       RoleListAltID->erase(*RoleCount);
+                       RoleListAltID->insert(std::make_pair(*RoleCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       RoleListPID->erase(*RoleCount);
+                       RoleListPID->insert(std::make_pair(*RoleCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                               
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               RoleListPref->erase(*RoleCount);
+                               RoleListPref->insert(std::make_pair(*RoleCount, PriorityNumber));
+
+                       }
+                                       
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       RoleListLanguage->erase(*RoleCount);
+                       RoleListLanguage->insert(std::make_pair(*RoleCount, PropertyValue));
+               
+               } else {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&PropertySeg2, FALSE);
+
+       RoleList->insert(std::make_pair(*RoleCount, PropertySeg2));
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               RoleListTokens->insert(std::make_pair(*RoleCount, PropertyTokens));
+                       
+       }
+
+}
+
+void ContactDataObject::ProcessOrganisation(wxString PropertySeg1, wxString PropertySeg2, int *OrganisationCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       int intPrevValue = 5;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       // Setup the pointers.
+       
+       std::map<int, wxString> *OrganisationsList = NULL;
+       std::map<int, wxString> *OrganisationsListAltID = NULL;
+       std::map<int, wxString> *OrganisationsListPID = NULL;
+       std::map<int, wxString> *OrganisationsListType = NULL;
+       std::map<int, wxString> *OrganisationsListTokens = NULL;
+       std::map<int, wxString> *OrganisationsListLanguage = NULL;
+       std::map<int, wxString> *OrganisationsListSortAs = NULL;
+       std::map<int, int> *OrganisationsListPref = NULL;
+       
+       // Setup blank lines for later on.
+       
+       switch(PropType){
+               case PROPERTY_NONE:
+                       OrganisationsList = &GeneralOrganisationsList;
+                       OrganisationsListType = &GeneralOrganisationsListType;
+                       OrganisationsListAltID = &GeneralOrganisationsListAltID;
+                       OrganisationsListPID = &GeneralOrganisationsListPID;
+                       OrganisationsListTokens = &GeneralOrganisationsListTokens;
+                       OrganisationsListLanguage = &GeneralOrganisationsListLanguage;
+                       OrganisationsListSortAs = &GeneralOrganisationsListSortAs;
+                       OrganisationsListPref = &GeneralOrganisationsListPref;  
+                       break;
+               case PROPERTY_HOME:
+                       OrganisationsList = &HomeOrganisationsList;
+                       OrganisationsListType = &HomeOrganisationsListType;
+                       OrganisationsListAltID = &HomeOrganisationsListAltID;
+                       OrganisationsListPID = &HomeOrganisationsListPID;
+                       OrganisationsListTokens = &HomeOrganisationsListTokens;
+                       OrganisationsListLanguage = &HomeOrganisationsListLanguage;
+                       OrganisationsListSortAs = &HomeOrganisationsListSortAs;
+                       OrganisationsListPref = &HomeOrganisationsListPref;     
+                       break;
+               case PROPERTY_WORK:
+                       OrganisationsList = &BusinessOrganisationsList;
+                       OrganisationsListType = &BusinessOrganisationsListType;
+                       OrganisationsListAltID = &BusinessOrganisationsListAltID;
+                       OrganisationsListPID = &BusinessOrganisationsListPID;
+                       OrganisationsListTokens = &BusinessOrganisationsListTokens;
+                       OrganisationsListLanguage = &BusinessOrganisationsListLanguage;
+                       OrganisationsListSortAs = &BusinessOrganisationsListSortAs;     
+                       OrganisationsListPref = &BusinessOrganisationsListPref;
+                       break;
+       }
+
+       intPrevValue = 4;
+               
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }                               
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               if (PropertyName == wxT("ALTID")){
+               
+                       OrganisationsListAltID->erase(*OrganisationCount);
+                       OrganisationsListAltID->insert(std::make_pair(*OrganisationCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       OrganisationsListPID->erase(*OrganisationCount);
+                       OrganisationsListPID->insert(std::make_pair(*OrganisationCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("SORT-AS")){
+
+                       OrganisationsListSortAs->erase(*OrganisationCount);
+                       OrganisationsListSortAs->insert(std::make_pair(*OrganisationCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                               
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               OrganisationsListPref->erase(*OrganisationCount);
+                               OrganisationsListPref->insert(std::make_pair(*OrganisationCount, PriorityNumber));
+
+                       }
+                                       
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       OrganisationsListLanguage->erase(*OrganisationCount);
+                       OrganisationsListLanguage->insert(std::make_pair(*OrganisationCount, PropertyValue));
+               
+               } else {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&PropertySeg2, FALSE);
+
+       OrganisationsList->insert(std::make_pair(*OrganisationCount, PropertySeg2));
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               OrganisationsListTokens->insert(std::make_pair(*OrganisationCount, PropertyTokens));
+                       
+       }
+
+}
+
+void ContactDataObject::ProcessNote(wxString PropertySeg1, wxString PropertySeg2, int *NoteCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       bool FirstToken = TRUE;
+       int intPrevValue = 6;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 5;
+       
+       PropertyType PropType = PROPERTY_NONE;
+               
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       // Setup the pointers.
+       
+       std::map<int, wxString> *NoteList = NULL;
+       std::map<int, wxString> *NoteListAltID = NULL;
+       std::map<int, wxString> *NoteListPID = NULL;
+       std::map<int, wxString> *NoteListType = NULL;
+       std::map<int, wxString> *NoteListTokens = NULL;
+       std::map<int, wxString> *NoteListLanguage = NULL;
+       std::map<int, wxString> *NoteListSortAs = NULL;
+       std::map<int, int> *NoteListPref = NULL;
+       
+       // Setup blank lines for later on.
+       
+       switch(PropType){
+               case PROPERTY_NONE:
+                       NoteList = &GeneralNoteList;
+                       NoteListType = &GeneralNoteListType;
+                       NoteListAltID = &GeneralNoteListAltID;
+                       NoteListPID = &GeneralNoteListPID;
+                       NoteListTokens = &GeneralNoteListTokens;
+                       NoteListLanguage = &GeneralNoteListLanguage;
+                       NoteListPref = &GeneralNoteListPref;    
+                       break;
+               case PROPERTY_HOME:
+                       NoteList = &HomeNoteList;
+                       NoteListType = &HomeNoteListType;
+                       NoteListAltID = &HomeNoteListAltID;
+                       NoteListPID = &HomeNoteListPID;
+                       NoteListTokens = &HomeNoteListTokens;
+                       NoteListLanguage = &HomeNoteListLanguage;
+                       NoteListPref = &HomeNoteListPref;       
+                       break;
+               case PROPERTY_WORK:
+                       NoteList = &BusinessNoteList;
+                       NoteListType = &BusinessNoteListType;
+                       NoteListAltID = &BusinessNoteListAltID;
+                       NoteListPID = &BusinessNoteListPID;
+                       NoteListTokens = &BusinessNoteListTokens;
+                       NoteListLanguage = &BusinessNoteListLanguage;   
+                       NoteListPref = &BusinessNoteListPref;
+                       break;
+       }
+
+       intPrevValue = 5;
+               
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               // Process properties.
+               
+               size_t intPropertyValueLen = PropertyValue.Len();
+               
+               if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
+                       
+                       PropertyValue.Trim();
+                       PropertyValue.RemoveLast();
+                       
+               }                               
+               
+               if (PropertyValue.Mid(0, 1) == wxT("\"")){
+                       
+                       PropertyValue.Remove(0, 1);
+                       
+               }                               
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               if (PropertyName == wxT("ALTID")){
+               
+                       NoteListAltID->erase(*NoteCount);
+                       NoteListAltID->insert(std::make_pair(*NoteCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       NoteListPID->erase(*NoteCount);
+                       NoteListPID->insert(std::make_pair(*NoteCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("SORT-AS")){
+
+                       NoteListSortAs->erase(*NoteCount);
+                       NoteListSortAs->insert(std::make_pair(*NoteCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+                               
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               NoteListPref->erase(*NoteCount);
+                               NoteListPref->insert(std::make_pair(*NoteCount, PriorityNumber));
+
+                       }
+                                       
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       NoteListLanguage->erase(*NoteCount);
+                       NoteListLanguage->insert(std::make_pair(*NoteCount, PropertyValue));
+               
+               } else {
+               
+                       // Something else we don't know about so append
+                       // to the tokens variable.
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+               
+                               if (FirstToken == TRUE){
+                       
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                       
+                               } else {
+                       
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                       
+                               }
+               
+                       }
+               
+               }
+       
+       }
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&PropertySeg2, FALSE);
+
+       NoteList->insert(std::make_pair(*NoteCount, PropertySeg2));
+       
+       if (!PropertyTokens.IsEmpty()){
+       
+               NoteListTokens->insert(std::make_pair(*NoteCount, PropertyTokens));
+                       
+       }
+
+}
+
 void SplitValues(wxString *PropertyLine, 
        std::map<int,int> *SplitPoints, 
        std::map<int,int> *SplitLength, 
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