#include "../vcard/vcard.h"
#include "../common/textprocessing.h"
#include "../common/dirs.h"
+#include "cdo/ContactDataObject.h"
bool frmContactEditor::LoadContact(wxString Filename){
}
+ ContactEditorData.LoadFile(Filename);
+
ContactFile.ReadAll(&wxSContactString, wxConvAuto());
// Split the lines.
int XTokenCount = 0;
//int intValueSeek = 1;
+ // Process the Gender (GENDER).
+
+ LoadGender(&ContactEditorData.Gender, &ContactEditorData.GenderDetails);
+
for (std::map<int,wxString>::iterator iter = ContactFileLines.begin();
iter != ContactFileLines.end(); ++iter){
// See frmContactEditor-LoadGender.cpp
- LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
+ //LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
} else if (wxSProperty == wxT("BDAY") && BirthdayProcessed == FALSE){
#include "frmContactEditor.h"
+void frmContactEditor::LoadGender(wxString *GenderComponent, wxString *GenderIdentity){
+
+ // Deal with the Gender Component.
+
+ 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);
+
+ }
+
+ // Deal with the Gender Identity.
+
+ txtGenderDescription->SetValue(*GenderIdentity);
+
+}
+
void frmContactEditor::LoadGender(wxString wxSPropertySeg1, wxString wxSPropertySeg2, bool *GenderProcessed, vCard *ContactData){
std::map<int, int> SplitPoints;