Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Implemented ROLE, ORG and NOTE with ContactDataObject.
[xestiaab/.git] / source / contacteditor / frmContactEditor-Load.cpp
1 // frmContactEditor-Load.cpp - frmContactEditor load contact subroutines.
2 //
3 // (c) 2012-2015 Xestia Software Development.
4 //
5 // This file is part of Xestia Address Book.
6 //
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
10 //
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include <map>
21 #include <wx/ffile.h>
22 #include <wx/tokenzr.h>
23 #include <wx/datetime.h>
24 #include <wx/dir.h>
26 #include "frmContactEditor.h"
28 #include "../enums.h"
29 #include "../version.h"
30 #include "../vcard/vcard.h"
31 #include "../common/textprocessing.h"
32 #include "../common/dirs.h"
33 #include "cdo/ContactDataObject.h"
35 bool frmContactEditor::LoadContact(wxString Filename){
37         // Load the contact into the contact editor.
38         
39         wxFFile ContactFile;
40         wxString wxSContactString;
41         wxString ContactLine;
42         vCard ContactData;
43         XABViewMode XVMData;
44         if (StartupEditMode == FALSE){
45                 XVMData = MainPtr->GetViewMode();
46         }
47         
48         wxSContactFilename = Filename;
49         
50         // Check if we are using wxWidgets version 2.8 or less and
51         // execute the required command accordingly.
52         
53 #if wxABI_VERSION < 20900
54         ContactFile.Open(Filename.c_str(), wxT("r"));
55 #else
56         ContactFile.Open(Filename, wxT("r"));
57 #endif  
58         
59         if (ContactFile.IsOpened() == FALSE){
60         
61                 return FALSE;
62         
63         }
64         
65         ContactEditorData.LoadFile(Filename);
66         
67         ContactFile.ReadAll(&wxSContactString, wxConvAuto());
68         
69         // Split the lines.
70         
71         std::map<int, wxString> ContactFileLines;
72         std::map<int, wxString>::iterator striter;
73         
74         wxStringTokenizer wSTContactFileLines(wxSContactString, wxT("\r\n"));
76         int ContactLineSeek = 0;
78         while (wSTContactFileLines.HasMoreTokens() == TRUE){
80                 ContactLine = wSTContactFileLines.GetNextToken();
81                 ContactFileLines.insert(std::make_pair(ContactLineSeek, ContactLine));
82                 ContactLineSeek++;              
83         
84         }
86         // Get the line.
88         bool QuoteMode = FALSE;
89         bool PropertyFind = TRUE;
90         bool HasExtraNicknames = FALSE;
91         bool IgnoreGender = FALSE;
92         bool ExtraLineSeek = TRUE;
93         //bool BirthdayProcessed = FALSE;
94         //bool AnniversaryProcessed = FALSE;
95         bool FNProcessed = FALSE;
96         bool GenderProcessed = FALSE;
97         bool NameProcessed = FALSE;
98         //bool UIDProcessed = FALSE;
99         //bool KindProcessed = FALSE;
100         bool ETagFound = FALSE;
101         bool ETagOrigFound = FALSE;
102         bool VersionProcessed = FALSE;
103         int intExtraNickname = 0;
104         wxString wxSProperty;
105         wxString wxSPropertySeg1;
106         wxString wxSPropertySeg2;
107         wxString wxSPropertyNextLine;
108         size_t ContactLineLen = 0;
109         int QuoteBreakPoint = 0;
110         int FNCount = 0;
111         int NameCount = 0;
112         int NicknameCount = 0;
113         int ADRCount = 0;
114         int EmailCount = 0;
115         int IMPPCount = 0;
116         int TelCount = 0;
117         int LangCount = 0;
118         int TZCount = 0;
119         int GeoCount = 0;
120         int URLCount = 0;
121         int RelatedCount = 0;
122         int TitleCount = 0;
123         int RoleCount = 0;
124         int OrgCount = 0;
125         int NoteCount = 0;
126         int CategoryCount = 0;
127         int GroupCount = 0;
128         int PhotoCount = 0;
129         int LogoCount = 0;
130         int SoundCount = 0;
131         int CalAdrCount = 0;
132         int CalReqAdrCount = 0;
133         int FreeBusyCount = 0;
134         int KeyCount = 0;
135         int VendorCount = 0;
136         int XTokenCount = 0;
137         //int intValueSeek = 1;
139         // Process the unique ID (UID)
140         
141         UIDToken = ContactEditorData.UIDToken;
143         // Process the contact type (KIND) (frmContactEditor-LoadGroup.cpp)
145         LoadKind(&ContactEditorData.ContactKind);
147         // Process the Birthday (BDAY) (frmContactEditor-LoadBADays.cpp)
148         
149         LoadBirthday(&ContactEditorData.Birthday, &ContactEditorData.BirthdayText);
151         // Process the Anniversary (ANNIVERSARY) (frmContactEditor-LoadBADays.cpp)
152         
153         LoadAnniversary(&ContactEditorData.Anniversary, &ContactEditorData.AnniversaryText);
155         // Process the Gender (GENDER) (frmContactEditor-LoadGender.cpp)
156         
157         LoadGender(&ContactEditorData.Gender, &ContactEditorData.GenderDetails);
158         
159         // Process the Name (N) (frmContactEditor-LoadName.cpp)
160         
161         LoadName(&ContactEditorData.NameTitle, &ContactEditorData.NameForename,
162                 &ContactEditorData.NameSurname, &ContactEditorData.NameOtherNames,
163                 &ContactEditorData.NameSuffix);
164                 
165         // Process the group members (MEMBER) (frmContactEditor-LoadGroup.cpp)
166                 
167         LoadMember(&ContactEditorData.GroupsList);
169         // Process the addresses (ADR) (frmContactEditor-LoadAddress.cpp)
170         
171         LoadAddress(&ContactEditorData.GeneralAddressList,
172                 &ContactEditorData.GeneralAddressListTown,
173                 &ContactEditorData.GeneralAddressListCounty,
174                 &ContactEditorData.GeneralAddressListPostCode,
175                 &ContactEditorData.GeneralAddressListPref,
176                 &ContactEditorData.HomeAddressList,
177                 &ContactEditorData.HomeAddressListTown,
178                 &ContactEditorData.HomeAddressListCounty,
179                 &ContactEditorData.HomeAddressListPostCode,
180                 &ContactEditorData.HomeAddressListPref,
181                 &ContactEditorData.BusinessAddressList,
182                 &ContactEditorData.BusinessAddressListTown,
183                 &ContactEditorData.BusinessAddressListCounty,
184                 &ContactEditorData.BusinessAddressListPostCode,
185                 &ContactEditorData.BusinessAddressListPref,
186                 &ADRCount);
188         // Process the timezones (TZ).
189         
190         LoadData(&ContactEditorData.GeneralTZList,
191                 &ContactEditorData.GeneralTZListPref,
192                 lboTimezones,
193                 &ContactEditorData.HomeTZList,
194                 &ContactEditorData.HomeTZListPref,
195                 lboHomeTimezones,
196                 &ContactEditorData.BusinessTZList,
197                 &ContactEditorData.BusinessTZListPref,
198                 lboBusinessTimezones,
199                 &TZCount);
200                 
201         // Process the emails (EMAIL).
202         
203         LoadData(&ContactEditorData.GeneralEmailList,
204                 &ContactEditorData.GeneralEmailListPref,
205                 lboEmails,
206                 &ContactEditorData.HomeEmailList,
207                 &ContactEditorData.HomeEmailListPref,
208                 lboHomeEmails,
209                 &ContactEditorData.BusinessEmailList,
210                 &ContactEditorData.BusinessEmailListPref,
211                 lboBusinessEmail,
212                 &EmailCount);
214         // Process the nicknames (NICKNAME).
215         
216         LoadData(&ContactEditorData.GeneralNicknamesList,
217                 &ContactEditorData.GeneralNicknamesListPref,
218                 lboNicknames,
219                 &ContactEditorData.HomeNicknamesList,
220                 &ContactEditorData.HomeNicknamesListPref,
221                 lboHomeNicknames,
222                 &ContactEditorData.BusinessNicknamesList,
223                 &ContactEditorData.BusinessNicknamesListPref,
224                 lboBusinessNicknames,
225                 &NicknameCount);
226                 
227         // Process the languages (LANG).
228         
229         LoadData(&ContactEditorData.GeneralLanguageList,
230                 &ContactEditorData.GeneralLanguageListPref,
231                 lboLanguages,
232                 &ContactEditorData.HomeLanguageList,
233                 &ContactEditorData.HomeLanguageListPref,
234                 lboHomeLanguages,
235                 &ContactEditorData.BusinessLanguageList,
236                 &ContactEditorData.BusinessLanguageListPref,
237                 lboBusinessLanguages,
238                 &LangCount);
239                 
240         // Process the geopositiosn (GEO).
241         
242         LoadData(&ContactEditorData.GeneralGeographyList,
243                 &ContactEditorData.GeneralGeographyListPref,
244                 lboGeoposition,
245                 &ContactEditorData.HomeGeographyList,
246                 &ContactEditorData.HomeGeographyListPref,
247                 lboHomeGeoposition,
248                 &ContactEditorData.BusinessGeographyList,
249                 &ContactEditorData.BusinessGeographyListPref,
250                 lboBusinessGeoposition,
251                 &GeoCount);
252                 
253         // Process the websites (URL).
254         
255         LoadData(&ContactEditorData.GeneralWebsiteList,
256                 &ContactEditorData.GeneralWebsiteListPref,
257                 lboWebsites,
258                 &ContactEditorData.HomeWebsiteList,
259                 &ContactEditorData.HomeWebsiteListPref,
260                 lboHomeWebsites,
261                 &ContactEditorData.BusinessWebsiteList,
262                 &ContactEditorData.BusinessWebsiteListPref,
263                 lboBusinessWebsites,
264                 &URLCount);
266         // Process the titles (TITLE).
267         
268         LoadData(&ContactEditorData.GeneralTitleList,
269                 &ContactEditorData.GeneralTitleListPref,
270                 lboTitles,
271                 &ContactEditorData.HomeTitleList,
272                 &ContactEditorData.HomeTitleListPref,
273                 lboHomeTitles,
274                 &ContactEditorData.BusinessTitleList,
275                 &ContactEditorData.BusinessTitleListPref,
276                 lboBusinessTitles,
277                 &TitleCount);
278                 
279         // Process the roles (ROLE).
280         
281         LoadData(&ContactEditorData.GeneralRoleList,
282                 &ContactEditorData.GeneralRoleListPref,
283                 lboRoles,
284                 &ContactEditorData.HomeRoleList,
285                 &ContactEditorData.HomeRoleListPref,
286                 lboHomeRoles,
287                 &ContactEditorData.BusinessRoleList,
288                 &ContactEditorData.BusinessRoleListPref,
289                 lboBusinessRoles,
290                 &RoleCount);
292         // Process the roles (ORG).
293         
294         LoadData(&ContactEditorData.GeneralOrganisationsList,
295                 &ContactEditorData.GeneralOrganisationsListPref,
296                 lboOrganisations,
297                 &ContactEditorData.HomeOrganisationsList,
298                 &ContactEditorData.HomeOrganisationsListPref,
299                 lboHomeOrganisations,
300                 &ContactEditorData.BusinessOrganisationsList,
301                 &ContactEditorData.BusinessOrganisationsListPref,
302                 lboBusinessOrganisations,
303                 &OrgCount);
304                 
305         // Process the notes (NOTE).
306                 
307         LoadData(&ContactEditorData.GeneralNoteList,
308                 &ContactEditorData.GeneralNoteListPref,
309                 lboNotes,
310                 &ContactEditorData.HomeNoteList,
311                 &ContactEditorData.HomeNoteListPref,
312                 lboHomeNotes,
313                 &ContactEditorData.BusinessNoteList,
314                 &ContactEditorData.BusinessNoteListPref,
315                 lboBusinessNotes,
316                 &NoteCount);
317                 
318         // Process the 
320         for (std::map<int,wxString>::iterator iter = ContactFileLines.begin(); 
321          iter != ContactFileLines.end(); ++iter){
322         
323                 // Find the colon which splits the start bit from the data part.
324                 
325                 ContactLine = iter->second;
326                 
327                 while (ExtraLineSeek == TRUE){
328                 
329                         // Check if there is extra data on the next line 
330                         // (indicated by space or tab at the start) and add data.
331                 
332                         iter++;
333                         
334                         if (iter == ContactFileLines.end()){
335                         
336                                 iter--;
337                                 break;
338                         
339                         }                       
340                 
341                         wxSPropertyNextLine = iter->second;
342                         
343                 
344                         if (wxSPropertyNextLine.Mid(0, 1) == wxT(" ") || wxSPropertyNextLine.Mid(0, 1) == wxT("\t")){
345                 
346                                 wxSPropertyNextLine.Remove(0, 1);
347                                 //wxSPropertyNextLine.Trim(FALSE);
348                                 //ContactLine.Trim();
349                                 ContactLine.Append(wxSPropertyNextLine);
350                 
351                         } else {
352                         
353                                 iter--;
354                                 ExtraLineSeek = FALSE;
355                         
356                         }
357                 
358                 }
360                 ContactLineLen = ContactLine.Len();
361                 
362                 // Make sure we are not in quotation mode.
363                 // Make sure colon does not have \ or \\ before it.
364                 
365                 for (int i = 0; i <= ContactLineLen; i++){
366                 
367                         if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
368                         
369                                 PropertyFind = FALSE;
370                         
371                         } else if (PropertyFind == TRUE){
372                         
373                                 wxSProperty.Append(ContactLine.Mid(i, 1));
374                         
375                         }               
376                 
377                         if (ContactLine.Mid(i, 1) == wxT("\"")){
378                         
379                                 if (QuoteMode == TRUE){
380                                 
381                                         QuoteMode = FALSE;
382                                 
383                                 } else {
384                         
385                                         QuoteMode = TRUE;
386                                         
387                                 }
388                         
389                         }
390                         
391                         if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
392                         
393                                 QuoteBreakPoint = i;
394                                 break;
395                         
396                         }
397                 
398                 }
399                 
400                 // Split that line at the point into two variables (ignore the colon).
401                 
402                 wxSPropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
403                 wxSPropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
404                 
405                 // Add the data into the contact editor depending on what it is.                                
406                 
407                 if (wxSProperty == wxT("VERSION") && VersionProcessed == FALSE){
408                 
409                         // Check if version is 4.0, otherwise don't
410                         // load.
411                         
412                         if (wxSPropertySeg2 != wxT("4.0")){
413                                 wxMessageBox(_("This file is not a vCard 4.0 contact and is not supported under Xestia Address Book."),
414                                         _("Contact not supported"), wxICON_ERROR);
415                                 this->Close();
416                                 return FALSE;
417                         }
418                         
419                         VersionProcessed = TRUE;
420                 
421                 }/* if (wxSProperty == wxT("KIND") && KindProcessed == FALSE){
422                 
423                         // See frmContactEditor-LoadGroup.cpp
424                 
425                         LoadKind(wxSPropertySeg2);
426                 
427                 }/* else if (wxSProperty == wxT("MEMBER")){
429                         // See frmContactEditor-LoadGroup.cpp
431                         LoadMember(wxSPropertySeg2, &GroupCount);               
432                 
433                 }*/ else if (wxSProperty == wxT("FN")){
434                 
435                         // See frmContactEditor-LoadName.cpp
436                 
437                         LoadFN(wxSPropertySeg1, wxSPropertySeg2, &FNCount, &FNProcessed, &ContactData);
438                 
439                 }/* else if (wxSProperty == wxT("N") && NameProcessed == FALSE){
440                 
441                         // See frmContactEditor-LoadName.cpp
442                 
443                         LoadN(wxSPropertySeg1, wxSPropertySeg2, &NameProcessed, &ContactData);
444                 
445                 } else if (wxSProperty == wxT("NICKNAME")){
446                         
447                         // See frmContactEditor-LoadNickname.cpp
448                         
449                         LoadNickname(wxSPropertySeg1, wxSPropertySeg2, &NicknameCount, &ContactData);
450                         
451                 } else if (wxSProperty == wxT("GENDER") && GenderProcessed == FALSE){
452                 
453                         // See frmContactEditor-LoadGender.cpp
454                 
455                         LoadGender(wxSPropertySeg1, wxSPropertySeg2, &GenderProcessed, &ContactData);
456                 
457                 } else if (wxSProperty == wxT("BDAY") && BirthdayProcessed == FALSE){
459                         // See frmContactEditor-LoadBADays.cpp
461                         LoadBDay(wxSPropertySeg1, wxSPropertySeg2, &BirthdayProcessed);
462                 
463                 } else if (wxSProperty == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
464                         
465                         // See frmContactEditor-LoadBADays.cpp
466                         
467                         LoadAnniversary(wxSPropertySeg1, wxSPropertySeg2, &AnniversaryProcessed);
468                 
469                 } else if (wxSProperty == wxT("TZ")){
470                 
471                         // See frmContactEditor-LoadTimeZone.cpp
472                 
473                         LoadTimeZone(wxSPropertySeg1, wxSPropertySeg2, &TZCount);       
474                 
475                 }  else if (wxSProperty == wxT("ADR")){
476                         
477                         // See frmContactEditor-LoadAddress.cpp
478                 
479                         LoadADR(wxSPropertySeg1, wxSPropertySeg2, &ADRCount);
480                 
481                 } else if (wxSProperty == wxT("EMAIL")){
482                 
483                         // See frmContactEditor-LoadEmail.cpp
484                         
485                         LoadEmail(wxSPropertySeg1, wxSPropertySeg2, &EmailCount);       
486                 
487                 }*/ else if (wxSProperty == wxT("IMPP")){
488                 
489                         // See frmContactEditor-LoadIM.cpp
490                 
491                         LoadIM(wxSPropertySeg1, wxSPropertySeg2, &IMPPCount);
492                 
493                 } else if (wxSProperty == wxT("TEL")){
494                 
495                         // See frmContactEditor-LoadTelephone.cpp
496                 
497                         LoadTelephone(wxSPropertySeg1, wxSPropertySeg2, &TelCount);
498                 
499                 }/* else if (wxSProperty == wxT("LANG")){
500                 
501                         // See frmContactEditor-LoadLanguage.cpp
502                         
503                         LoadLanguage(wxSPropertySeg1, wxSPropertySeg2, &LangCount);
504                 
505                 } else if (wxSProperty == wxT("GEO")){
506                 
507                         // See frmContactEditor-LoadGeo.cpp
508                         
509                         LoadGeo(wxSPropertySeg1, wxSPropertySeg2, &GeoCount);   
510                 
511                 }*/ else if (wxSProperty == wxT("RELATED")){
512                         
513                         // See fromContactEditor-LoadRelated.cpp
514                         
515                         LoadRelated(wxSPropertySeg1, wxSPropertySeg2, &RelatedCount);           
516                 
517                 }/* else if (wxSProperty == wxT("URL")){
519                         // See frmContactEditor-LoadURL.cpp
520                 
521                         LoadURL(wxSPropertySeg1, wxSPropertySeg2, &URLCount);
522                 
523                 } else if (wxSProperty == wxT("TITLE")) {
524                 
525                         // See frmContactEditor-LoadTitle.cpp
526                         
527                         LoadTitle(wxSPropertySeg1, wxSPropertySeg2, &TitleCount);
528                         
529                 } else if (wxSProperty == wxT("ROLE")) {
531                         // See frmContactEditor-LoadRole.cpp
532                 
533                         LoadRole(wxSPropertySeg1, wxSPropertySeg2, &RoleCount);
534                         
535                 } else if (wxSProperty == wxT("ORG")) {
536                 
537                         // See frmContactEditor-LoadOrg.cpp
538                         
539                         LoadOrg(wxSPropertySeg1, wxSPropertySeg2, &OrgCount);
540                         
541                 } else if (wxSProperty == wxT("NOTE")) {
543                         // See frmContactEditor-LoadNote.cpp
545                         LoadNote(wxSPropertySeg1, wxSPropertySeg2, &NoteCount); 
546                         
547                 }*/ else if (wxSProperty == wxT("CATEGORIES")) {
548                 
549                         // See frmContactEditor-LoadCategory.cpp
550                 
551                         LoadCategory(wxSPropertySeg1, wxSPropertySeg2, &CategoryCount); 
552                         
553                 } else if (wxSProperty == wxT("PHOTO")) {
554                 
555                         // See frmContactEditor-LoadPhoto.cpp
556                         
557                         LoadPhoto(wxSPropertySeg1, wxSPropertySeg2, &PhotoCount);
559                 } else if (wxSProperty == wxT("LOGO")) {
560                 
561                         // See frmContactEditor-LoadLogo.cpp
562                 
563                         LoadLogo(wxSPropertySeg1, wxSPropertySeg2, &LogoCount);
564                         
565                 } else if (wxSProperty == wxT("SOUND")) {
566                 
567                         // See frmContactEditor-LoadSound.cpp
568                         
569                         LoadSound(wxSPropertySeg1, wxSPropertySeg2, &SoundCount);
570                         
571                 } else if (wxSProperty == wxT("CALURI")){
573                         // See frmContactEditor-LoadCalendar.cpp
574                         
575                         LoadCalURI(wxSPropertySeg1, wxSPropertySeg2, &CalAdrCount);
576                 
577                 } else if (wxSProperty == wxT("CALADRURI")){
579                         // See frmContactEditor-LoadCalendar.cpp
580                         
581                         LoadCalAdrURI(wxSPropertySeg1, wxSPropertySeg2, &CalReqAdrCount);
582                 
583                 } else if (wxSProperty == wxT("FBURL")){
585                         // See frmContactEditor-LoadCalendar.cpp
587                         LoadCalFreeBusy(wxSPropertySeg1, wxSPropertySeg2, &FreeBusyCount);
589                 } else if (wxSProperty == wxT("KEY")){
590                 
591                         // See frmContactEditor-LoadKey.cpp
592                         
593                         LoadKey(wxSPropertySeg1, wxSPropertySeg2, &KeyCount);
594                 
595                 }/* else if (wxSProperty == wxT("UID") && UIDProcessed == FALSE){
596                 
597                         UIDToken = wxSPropertySeg2;
598                         UIDProcessed = TRUE;
599                 
600                 }*/ else if (wxSProperty.Mid(0, 3) == wxT("VND")){
601                 
602                         // Split the Vendor three ways.
603                         
604                         wxStringTokenizer wSTVendorDetails(wxSPropertySeg1, wxT("-"));
605                         
606                         wxString wxSVNDID;
607                         wxString wxSVNDPropName;
608                         long ListCtrlIndex;                     
610                         while (wSTVendorDetails.HasMoreTokens() == TRUE){
611                         
612                                 wSTVendorDetails.GetNextToken();
613                                 wxSVNDID = wSTVendorDetails.GetNextToken();
614                                 wxSVNDPropName = wSTVendorDetails.GetNextToken();
615                                 break;
616                         
617                         }
618                         
619                         if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
620                         
621                                 // Setup the values for later processing.
622                         
623                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
624                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
625                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));
626                         
627                                 // Add the data to the vendor variables.
628                         
629                                 wxListItem coldata;
630                 
631                                 coldata.SetId(intValueSeek);
632                                 coldata.SetData(intValueSeek);
633                                 coldata.SetText(wxSVNDID + wxT("-") + wxSVNDPropName);
635                                 ListCtrlIndex = lboVendorNamespace->InsertItem(coldata);
636                                 
637                                 VendorList.erase(intValueSeek);
638                                 VendorListPEN.erase(intValueSeek);
639                                 VendorListElement.erase(intValueSeek);
640                         
641                                 VendorList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
642                                 VendorListPEN.insert(std::make_pair(intValueSeek, wxSVNDID));
643                                 VendorListElement.insert(std::make_pair(intValueSeek, wxSVNDPropName));                         
644                         
645                                 VendorCount++;
646                                 intValueSeek++;
647                         
648                         }       
649                 
650                 } else if (wxSProperty.Mid(0, 2) == wxT("X-")){
651                 
652                         long ListCtrlIndex;
653                         
654                         XTokenList.insert(std::make_pair(intValueSeek, wxSPropertySeg2));
655                         XTokenListTokens.insert(std::make_pair(intValueSeek, wxSPropertySeg1.Mid(2)));
656                         
657                         // Add to the form.
658                         
659                         wxListItem coldata;
660                 
661                         coldata.SetId(intValueSeek);
662                         coldata.SetData(intValueSeek);
663                         coldata.SetText(wxSPropertySeg1.Mid(2));
665                         ListCtrlIndex = lboXToken->InsertItem(coldata);
666                         
667                         XTokenCount++;
668                         intValueSeek++;
669                         
670                 
671                 }
672                 
673                 // Reset the variables.
674                 
675                 QuoteMode = FALSE;
676                 PropertyFind = TRUE;
677                 ExtraLineSeek = TRUE;
678                 ContactLineLen = 0;
679                 QuoteBreakPoint = 0;
680                 ContactLine.Clear();
681                 wxSProperty.Clear();    
682         
683         }
684         
685         FMTimer.SetFilename(Filename);
686         FMTimer.Start(10000, FALSE);
687         
688         EditMode = TRUE;
689         
690         return TRUE;
693 void frmContactEditor::SplitValues(wxString *PropertyLine, 
694         std::map<int,int> *SplitPoints, 
695         std::map<int,int> *SplitLength, 
696         int intSize){
697         
698         size_t intPropertyLen = PropertyLine->Len();
699         int intSplitsFound = 0;
700         int intSplitSize = 0;
701         int intSplitSeek = 0;
702         
703         for (int i = intSize; i <= intPropertyLen; i++){
705                 intSplitSize++;
706         
707                 if (PropertyLine->Mid(i, 1) == wxT(";") &&
708                     PropertyLine->Mid((i - 1), 1) != wxT("\\")){
709            
710                     if (intSplitsFound == 0){
711             
712                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
713           
714                     } else {
715            
716                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
717             
718                     }
719             
720                     SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
721             
722                     intSplitsFound++;
723                     intSplitSeek = i;
724                     intSplitSize = 0;
725             
726                 }
728         }
730         if (intSplitsFound == 0){
732                 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
733                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
735         } else {
737                 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
738                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
740         }
744 void frmContactEditor::LoadData(std::map<int, wxString> *GeneralList,
745                 std::map<int, int> *GeneralListPref,
746                 wxListCtrl *GeneralListCtrl,
747                 std::map<int, wxString> *HomeList,
748                 std::map<int, int> *HomeListPref,
749                 wxListCtrl *HomeListCtrl,
750                 std::map<int, wxString> *BusinessList,
751                 std::map<int, int> *BusinessListPref,
752                 wxListCtrl *BusinessListCtrl,
753                 int *DataCount){
755         long ListCtrlIndex = -1;
757         // Deal with the general addresses.
758         
759         for (std::map<int,wxString>::iterator Iter = GeneralList->begin();
760                 Iter != GeneralList->end();
761                 Iter++){
762         
763                 wxListItem coldata;
765                 coldata.SetId(*DataCount);
766                 coldata.SetData(*DataCount);
767                 coldata.SetText(Iter->second);
768                 
769                 ListCtrlIndex = GeneralListCtrl->InsertItem(coldata);
771                 if (MapDataExists(DataCount, GeneralListPref)){
772                 
773                         GeneralListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", GeneralListPref->find(*DataCount)->second));
774                 
775                 }
776         
777                 (*DataCount)++;
778         
779         }
780         
781         // Deal with the home addresses.
782         
783         for (std::map<int,wxString>::iterator Iter = HomeList->begin();
784                 Iter != HomeList->end();
785                 Iter++){
786         
787                 wxListItem coldata;
789                 coldata.SetId(*DataCount);
790                 coldata.SetData(*DataCount);
791                 coldata.SetText(Iter->second);
792                 
793                 ListCtrlIndex = HomeListCtrl->InsertItem(coldata);
795                 if (MapDataExists(DataCount, HomeListPref)){
796                 
797                         HomeListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", HomeListPref->find(*DataCount)->second));
798                 
799                 }
800         
801                 (*DataCount)++;
802         
803         }
804         
805         // Deal with the work addresses.
806         
807         for (std::map<int,wxString>::iterator Iter = BusinessList->begin();
808                 Iter != BusinessList->end();
809                 Iter++){
810         
811                 wxListItem coldata;
813                 coldata.SetId(*DataCount);
814                 coldata.SetData(*DataCount);
815                 coldata.SetText(Iter->second);
816                 
817                 ListCtrlIndex = BusinessListCtrl->InsertItem(coldata);
818                                 
819                 if (MapDataExists(DataCount, BusinessListPref)){
820                 
821                         BusinessListCtrl->SetItem(ListCtrlIndex, 1, wxString::Format("%i", BusinessListPref->find(*DataCount)->second));
822                 
823                 }
824         
825                 (*DataCount)++;
826         
827         }
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