Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
8a0f2b7f620a524dc50a088d9212ee804f2634f2
[xestiaab/.git] / source / contacteditor / cdo / ContactDataObject-Save.cpp
1 // ContactDataObject-Save.cpp - Client Data Object.
2 //
3 // (c) 2012-2016 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 "ContactDataObject.h"
20 #include "../../version.h"
22 ContactSaveStatus ContactDataObject::SaveString(wxString *SaveData){
23         
24         ContactSaveStatus SaveDataStatus = CONTACTSAVE_UNITTESTFAIL;
25         
26         // Write the header for the vCard data file.
27         
28         SaveData->Append("BEGIN:VCARD\n");
29         SaveData->Append("VERSION:4.0\n");
30         
31         // Write the product ID.
32         
33 #ifdef XAB_UNITTEST
34         
35         SaveData->Append("PRODID:-//Xestia//Address Book Unit Testing//KW\n");
36         
37 #else
38         
39         SaveData->Append(wxT("-//Xestia//Address Book Version "));
40         SaveData->Append(wxT(XSDAB_VERSION));
41         SaveData->Append(wxT("//KW\n"));
42         
43 #endif
44         
45         // Process FN.
46         
47         for (std::map<int, wxString>::iterator FNIter = FullNamesList.begin();
48                 FNIter != FullNamesList.end(); FNIter++){
49                 
50                 SaveData->Append("FN:");
51                 SaveData->Append(FNIter->second);
52                 SaveData->Append("\n");
53                         
54         }
55         
56         // Process TITLE.
58         for (std::map<int, wxString>::iterator TitleIter = GeneralTitleList.begin();
59                 TitleIter != GeneralTitleList.end(); TitleIter++){
60                 
61                 SaveData->Append("TITLE:");
62                 SaveData->Append(TitleIter->second);
63                 SaveData->Append("\n");
64                         
65         }
66         
67         // Write the end part of the vCard data file.
68         
69         SaveData->Append("END:VCARD");
70         
71         SaveDataStatus = CONTACTSAVE_OK;
72         
73         return SaveDataStatus;
74         
75 }
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