X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fvcard%2Fvcard.cpp;h=bc9cd81509706a4a8661cdc23dff3526e7a24818;hb=6968ee30917db60440c1c96c7471b20898de24b1;hp=a25f2dca113a084cf164df92ab68007b7d3dec10;hpb=e683ccaef66d6f0e695c7b2fc1b4b930e9497e8f;p=xestiaab%2F.git diff --git a/source/vcard/vcard.cpp b/source/vcard/vcard.cpp index a25f2dc..bc9cd81 100644 --- a/source/vcard/vcard.cpp +++ b/source/vcard/vcard.cpp @@ -27,6 +27,8 @@ vCard::vCard(){ + // Setup the vCard object. + vCardBegin = FALSE; vCardEnd = FALSE; vCardFN = FALSE; @@ -37,6 +39,8 @@ vCard::vCard(){ void vCard::Add(wxString SettingName, wxString SettingValue, bool ReplaceMode){ + // Add data to vCard object. + // Check for backslashes used for commas, newlines and // backslashes used for values. @@ -101,6 +105,8 @@ void vCard::Add(wxString SettingName, wxString SettingValue, bool ReplaceMode){ void vCard::AddRaw(wxString SettingName, wxString SettingValue){ + // Add data to the vCard in raw mode. + // Check data to make sure that it meets the required // vCard 4.0 specifications. @@ -145,10 +151,12 @@ void vCard::AddRaw(wxString SettingName, wxString SettingValue){ wxString vCard::Get(wxString SettingName){ + // Get values from the vCard object. + wxString SettingValue; // Look for the setting name. - + for (int i = 0; i < SettingCount; i++){ if (SettingNames[i] == SettingName){ @@ -177,6 +185,8 @@ wxString vCard::Get(wxString SettingName){ vCardName vCard::GetName(){ + // Get the name from the vCard object. + vCardName NameData; ArrayvCardOutData NameArray = this->GetByPartial(wxT("N")); //wxString NameDataGet = NameArray.PropValues[0]; @@ -188,7 +198,6 @@ vCardName vCard::GetName(){ // Process the name data to get the required information. int intPropertyLen = NameDataGet.Len(); - int intSplitSeek = 0; int intSplitsFound = 0; int intSplitSize = 0; int intPrevValue = 0; @@ -270,6 +279,8 @@ vCardName vCard::GetName(){ ArrayvCardOutData vCard::GetByPartial(wxString SettingName){ + // Get data from the vCard object based on a partial match. + ArrayvCardOutData vCardOutData; wxArrayString SettingList; wxString SettingValueCurrent; @@ -346,6 +357,8 @@ ArrayvCardOutData vCard::GetByPartial(wxString SettingName){ wxString vCard::GetById(int id){ + // Get data from the vCard object based on ID. + // Unimplemented. return wxT(""); @@ -353,6 +366,8 @@ wxString vCard::GetById(int id){ int vCard::WriteFile(wxString WriteFilename){ + // Write the vCard to a file using the WriteFilename given. + // Open the file and begin writing data into the file. wxString SettingName; @@ -372,10 +387,8 @@ int vCard::WriteFile(wxString WriteFilename){ int SettingLineLen = SettingLine.Len(); int intDivider = 74; - int intTimes = floor((SettingLine.Len() / intDivider)); int intSeek = 0; int intLineSeek = 0; - int intPrevLine; bool FirstLine = TRUE; // Remember to round down the calculation. @@ -389,7 +402,6 @@ int vCard::WriteFile(wxString WriteFilename){ intSeek = intSeek + 3; SettingLineLen = SettingLineLen + 3; intLineSeek = 0; - intPrevLine = intSeek; FirstLine = FALSE; } @@ -398,26 +410,6 @@ int vCard::WriteFile(wxString WriteFilename){ intLineSeek++; } - - /* - - for (int x = 0; x < intTimes; x++){ - - if (x == 0){ - SettingLine.insert((intDivider - 1), wxT("\r\n ")); - } else if (x == intTimes){ - - } else { - if (x < intDivider){ - SettingLine.insert((intDivider * (x+1)) + (x * 3), wxT("\r\n ")); - } - } - - intTimes = floor(SettingLine.Len() / intDivider); - - } - - */ ContactFile.Write(SettingLine); @@ -431,14 +423,16 @@ int vCard::WriteFile(wxString WriteFilename){ int vCard::LoadFile(wxString LoadFilename){ + // Load data from a file using the LoadFilename given. + wxFFile ContactFile; wxString wxSContactString; vCardFilename = LoadFilename; - // Check if we are using wxWidgets version 2.8 or less and - // execute the required command accordingly. + // Check if we are using wxWidgets version 2.8 or less and + // execute the required command accordingly. #if wxABI_VERSION < 20900 ContactFile.Open(LoadFilename.c_str(), wxT("r")); @@ -464,6 +458,8 @@ int vCard::LoadFile(wxString LoadFilename){ int vCard::LoadString(wxString ContactData){ + // Load data from a wxString. + ProcessString(&ContactData); return 0; @@ -472,6 +468,8 @@ int vCard::LoadString(wxString ContactData){ void vCard::ProcessString(wxString *ContactDataInc){ + // Process data from a wxString pointer. + // Split the vCards (if there are more than one vCard in the file). wxString ContactLine; @@ -489,7 +487,6 @@ void vCard::ProcessString(wxString *ContactDataInc){ wxString wxSPropertySeg2; bool FoundBegin = FALSE; - bool FoundEnd = FALSE; bool FirstContact = TRUE; wxString FirstContactData; wxString ContactData; @@ -673,6 +670,8 @@ void vCard::ProcessString(wxString *ContactDataInc){ wxString vCard::WriteString(){ + // Write the vCard file into a wxString. + // Open the file and begin writing data into the file. wxString SettingName; @@ -688,10 +687,8 @@ wxString vCard::WriteString(){ int SettingLineLen = SettingLine.Len(); int intDivider = 74; - int intTimes = floor((SettingLine.Len() / intDivider)); int intSeek = 0; int intLineSeek = 0; - int intPrevLine; bool FirstLine = TRUE; // Remember to round down the calculation. @@ -705,7 +702,6 @@ wxString vCard::WriteString(){ intSeek = intSeek + 3; SettingLineLen = SettingLineLen + 3; intLineSeek = 0; - intPrevLine = intSeek; FirstLine = FALSE; } @@ -769,12 +765,16 @@ wxString vCard::Convert(wxString SettingValue, bool ReplaceMode){ wxString vCard::GetFilename(){ + // Get the filename associated with the vCard object. + return vCardFilename; } std::map* vCard::GetAllCards(){ + // Get all of vCards within the vCard object. + return &Cards; } \ No newline at end of file