1 // preferences.cpp - Preferences subroutines.
3 // (c) 2012-2015 Xestia Software Development.
5 // This file is part of Xestia Address Book.
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.
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.
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/>
23 #include <wx/fileconf.h>
25 #include "preferences.h"
29 void SavePreferences();
30 void LoadPreferences();
32 XABPreferences::XABPreferences(wxString PreferencesFilename){
34 // Load the settings into the XABPreferences object using the
35 // settings file received in PreferencesFilename.
37 wxString fullprefpath;
39 bool accountnamevalid, accountaddressvalid, accounttypevalid, accountportvalid,
40 accountsslvalid, accountusernamevalid, accountpasswordvalid,
41 accountdirprefixvalid, accountdirvalid, accountrefreshvalid = FALSE;
43 bool preaccountstage = FALSE;
44 bool isvalidaccount = FALSE;
45 bool isvalidsection = FALSE;
47 wxString accountaddress;
49 long accountport = 8080;
52 wxString accountusername;
53 wxString accountpassword;
54 wxString accountdirprefix;
61 wxString segmentvalue;
65 fullprefpath.Append(PreferencesFilename);
66 fullprefpath.Append(wxT("settings"));
68 wxFileConfig *settingfile = new wxFileConfig("", "", fullprefpath);
71 settingfile->Read(wxT("SaveWindowPosition"), &ValueInc);
73 if (ValueInc == wxT("true")){
76 wxRect WindowPosition;
78 long PosX, PosY, PosH, PosW = 0;
80 bool PosXValid, PosYValid, PosHValid, PosWValid = FALSE;
82 PosXValid = settingfile->Read(wxT("WindowPositionX"), &PosX);
83 PosYValid = settingfile->Read(wxT("WindowPositionY"), &PosY);
84 PosHValid = settingfile->Read(wxT("WindowPositionHeight"), &PosH);
85 PosWValid = settingfile->Read(wxT("WindowPositionWidth"), &PosW);
87 if (PosXValid == TRUE && PosYValid == TRUE && PosHValid == TRUE && PosWValid == TRUE){
89 WindowPosition.SetX((int)PosX);
90 WindowPosition.SetY((int)PosY);
91 WindowPosition.SetHeight((int)PosH);
92 WindowPosition.SetWidth((int)PosW);
96 WindowPosition.SetX(-1);
97 WindowPosition.SetY(-1);
98 WindowPosition.SetHeight(500);
99 WindowPosition.SetWidth(300);
103 SetMainWindowData(WindowPosition);
107 settingfile->Read(wxT("HideLocalAddressBooks"), &ValueInc);
109 if (ValueInc == wxT("true")){
116 // Load the accounts.
118 fullprefpath.Clear();
119 fullprefpath.Append(PreferencesFilename);
120 fullprefpath.Append(wxT("accounts"));
122 wxFileConfig *cfgfile = new wxFileConfig("AddressBook", "Xestia", fullprefpath);
124 wxString EntryName, EntryValue;
125 wxString AccAdr, AccUsr, AccPass, AccPrefix, AccDir;
128 int AccRef, AccPort = 0;
130 bool ContinueAcc = TRUE;
132 ContinueAcc = cfgfile->GetFirstGroup(accountname, itemindex);
136 cfgfile->SetPath(accountname);
137 cfgfile->Read(wxT("type"), &EntryValue);
139 if (EntryValue == wxT("Local")){
141 // Get the account directory.
143 cfgfile->Read(wxT("accountdir"), &AccDir);
145 if (AccDir.Len() > 4){
147 accountdirvalid = TRUE;
151 accountdirvalid = FALSE;
155 if (accountdirvalid == TRUE){
157 accounts.AddAccount(accountname, wxT("Local"), wxT(""), 0,
163 } else if (EntryValue == wxT("CardDAV")){
165 cfgfile->Read(wxT("accountdir"), &AccDir);
166 accountaddressvalid = cfgfile->Read(wxT("address"), &AccAdr);
167 accountportvalid = cfgfile->Read(wxT("port"), &AccPort);
168 accountsslvalid = cfgfile->Read(wxT("ssl"), &AccSSLInc);
169 if (AccSSLInc == wxT("true")){
175 accountusernamevalid = cfgfile->Read(wxT("username"), &AccUsr);
176 accountpasswordvalid = cfgfile->Read(wxT("password"), &AccPass);
177 accountdirprefixvalid = cfgfile->Read(wxT("prefix"), &AccPrefix);
178 accountrefreshvalid = cfgfile->Read(wxT("refresh"), &AccRef);
180 if (AccDir.Len() > 4){
182 accountdirvalid = TRUE;
186 // Make sure it is not bigger than 65535 or less than 1.
187 // If so, default to port 8008.
189 if (accountport < 1 || accountport > 65535){
191 accountportvalid = TRUE;
194 accounts.AddAccount(accountname, wxT("CardDAV"), AccAdr, AccPort,
195 AccSSL, AccUsr, AccPass,
196 AccPrefix, AccDir, AccRef);
200 cfgfile->Read(wxT("accountdir"), &AccDir);
201 accountaddressvalid = cfgfile->Read(wxT("address"), &AccAdr);
202 accountportvalid = cfgfile->Read(wxT("port"), &AccPort);
203 accountsslvalid = cfgfile->Read(wxT("ssl"), &AccSSLInc);
204 if (AccSSLInc == wxT("true")){
210 accountusernamevalid = cfgfile->Read(wxT("username"), &AccUsr);
211 accountpasswordvalid = cfgfile->Read(wxT("password"), &AccPass);
212 accountdirprefixvalid = cfgfile->Read(wxT("prefix"), &AccPrefix);
213 accountrefreshvalid = cfgfile->Read(wxT("refresh"), &AccRef);
215 if (AccDir.Len() > 4){
217 accountdirvalid = TRUE;
221 // Make sure it is not bigger than 65535 or less than 1.
222 // If so, default to port 8008.
224 if (accountport < 1 || accountport > 65535){
226 accountportvalid = TRUE;
229 accounts.AddAccount(accountname, EntryValue, AccAdr, AccPort,
230 AccSSL, AccUsr, AccPass,
231 AccPrefix, AccDir, AccRef);
235 // Clear up for the next account.
237 accountnamevalid, accountaddressvalid, accounttypevalid, accountportvalid,
238 accountsslvalid, accountusernamevalid, accountpasswordvalid,
239 accountdirprefixvalid, accountdirvalid, accountrefreshvalid, accountssl,
240 isvalidaccount, isvalidsection = FALSE;
248 accountaddress.Clear();
252 accountusername.Clear();
253 accountpassword.Clear();
254 accountdirprefix.Clear();
255 preaccountstage = TRUE;
257 cfgfile->SetPath(wxT("/"));
258 ContinueAcc = cfgfile->GetNextGroup(accountname, itemindex);
264 XABPreferences::~XABPreferences(){
268 bool XABPreferences::GetBoolData(wxString SettingName){
270 // GetBoolData from the XABPreferences object.
272 if (SettingName == wxT("SaveWindowPosition")) { return SaveWindowPos; }
273 else if (SettingName == wxT("HideLocalAddressBooks")) { return HideLocalABs; }
279 wxRect XABPreferences::GetMainWindowData(){
281 // Return the main window data as a wxRect object.
283 return MainWindowData;
287 void XABPreferences::SetMainWindowData(wxRect WindowData){
289 // Set the main window data from a wxRect object.
291 MainWindowData = WindowData;
297 XABPrefAccounts::XABPrefAccounts(){
299 // Setup the default values for XABPrefAccounts.
305 int XABPrefAccounts::AddAccount(wxString NewAccName,
307 wxString NewAccAddress,
312 wxString NewAccDirPrefix,
317 // Add an account to the list of accounts in the
318 // XABPrefAccounts object.
320 AccountName.Add(NewAccName, 1);
321 AccountType.Add(NewAccType, 1);
322 AccountAddress.Add(NewAccAddress, 1);
323 AccountPort.Add(NewAccPort, 1);
324 AccountSSL.Add(NewAccSSL, 1);
325 AccountUsername.Add(NewAccUser, 1);
326 AccountPassword.Add(NewAccPass, 1);
327 DirectoryPrefix.Add(NewAccDirPrefix, 1);
328 AccountDirectory.Add(NewAccDir, 1);
329 AccountRefresh.Add(NewAccRefresh, 1);
337 int XABPrefAccounts::GetCount(){
339 // Get the count of accounts in the XABPrefAccounts object.
341 return AccountsCount;
345 wxString XABPrefAccounts::GetAccountName(int AccountNum){
347 // Get the account name.
349 if (AccountNum > AccountsCount){
353 return AccountName[AccountNum];
357 wxString XABPrefAccounts::GetAccountType(int AccountNum){
359 // Get the account type.
361 if (AccountNum > AccountsCount){
365 return AccountType[AccountNum];
369 wxString XABPrefAccounts::GetAccountAddress(int AccountNum){
371 // Get the account server address.
373 if (AccountNum > AccountsCount){
377 return AccountAddress[AccountNum];
381 int XABPrefAccounts::GetAccountPort(int AccountNum){
383 // Get the account server port.
385 if (AccountNum > AccountsCount){
389 return AccountPort[AccountNum];
393 bool XABPrefAccounts::GetAccountSSL(int AccountNum){
395 // Get the account server SSL support.
397 if (AccountNum > AccountsCount){
401 return AccountSSL[AccountNum];
405 wxString XABPrefAccounts::GetAccountUsername(int AccountNum){
407 // Get the account username.
409 if (AccountNum > AccountsCount){
413 return AccountUsername[AccountNum];
417 wxString XABPrefAccounts::GetAccountPassword(int AccountNum){
419 // Get the account password.
421 if (AccountNum > AccountsCount){
425 return AccountPassword[AccountNum];
429 wxString XABPrefAccounts::GetAccountDirectory(int AccountNum){
431 // Get the account directory.
433 if (AccountNum > AccountsCount){
437 return AccountDirectory[AccountNum];
441 wxString XABPrefAccounts::GetAccountDirPrefix(int AccountNum){
443 // Get the account server directory prefix.
445 if (AccountNum > AccountsCount){
449 return DirectoryPrefix[AccountNum];
453 long XABPrefAccounts::GetAccountRefresh(int AccountNum){
455 // Get the account refresh time.
457 if (AccountNum > AccountsCount){
461 return AccountRefresh[AccountNum];