// frmContactEditor-LoadGender.cpp - frmContactEditor load gender subroutines.
//
// (c) 2012-2015 Xestia Software Development.
//
// This file is part of Xestia Address Book.
//
// Xestia Address Book is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by the
// Free Software Foundation, version 3 of the license.
//
// Xestia Address Book is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with Xestia Address Book. If not, see
#include "frmContactEditor.h"
void frmContactEditor::LoadGender(wxString wxSPropertySeg1, wxString wxSPropertySeg2, bool *GenderProcessed, vCard *ContactData){
std::map SplitPoints;
std::map SplitLength;
std::map::iterator SLiter;
wxString PropertyData;
wxString PropertyName;
wxString PropertyValue;
wxString PropertyTokens;
bool FirstToken = TRUE;
int intPrevValue = 8;
SplitValues(&wxSPropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
intPrevValue = 7;
for (std::map::iterator intiter = SplitPoints.begin();
intiter != SplitPoints.end(); ++intiter){
SLiter = SplitLength.find(intiter->first);
PropertyData = wxSPropertySeg1.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);
}
if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
if (FirstToken == TRUE){
PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
FirstToken = FALSE;
} else {
PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
}
}
}
wxStringTokenizer GenderDetails (wxSPropertySeg2, wxT(";"));
wxString GenderComponent;
wxString GenderIdentity;
if (GenderDetails.CountTokens() >= 2){
GenderComponent = GenderDetails.GetNextToken();
GenderIdentity = GenderDetails.GetString();
ProcessCaptureStrings(&GenderIdentity);
txtGenderDescription->SetValue(ContactData->Convert(GenderIdentity, TRUE));
} else {
GenderComponent = GenderDetails.GetNextToken();
}
if (GenderComponent == wxT("M")){
// Gender is Male.
cmbGender->SetSelection(1);
} else if (GenderComponent == wxT("F")){
// Gender is Female.
cmbGender->SetSelection(2);
} else if (GenderComponent == wxT("O")){
// Gender is Other.
cmbGender->SetSelection(3);
} else if (GenderComponent == wxT("N")){
// Gender is None/Not Applicable.
cmbGender->SetSelection(4);
} else if (GenderComponent == wxT("U")){
// Gender is Unknown.
cmbGender->SetSelection(5);
}
GenderTokens = PropertyTokens;
*GenderProcessed = TRUE;
}