1 // frmContactEditorTelephone.cpp - frmContactEditorTelephone form.
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/>
19 #include "frmContactEditorTelephone.h"
20 #include "../common/textprocessing.h"
21 #include <wx/tokenzr.h>
23 frmContactEditorTelephone::frmContactEditorTelephone( wxWindow* parent )
25 frmContactEditorTelephoneADT( parent )
28 sliPriority->Disable();
31 void frmContactEditorTelephone::EnablePriority( wxCommandEvent& event )
33 if (chkUsePref->IsChecked()){
34 sliPriority->Enable();
36 sliPriority->Disable();
40 void frmContactEditorTelephone::ProcessAction( wxCommandEvent& event )
44 if (EditorMode == FALSE){
47 wxString strTelTypesLCtrl;
48 bool AddComma = FALSE;
50 // Add the telephone number.
53 TelephoneListPtr->insert(std::make_pair(TelephoneListIndex, txtTelephone->GetValue()));
55 // Add the telephone type.
57 if (EditSectionType == CE_GENERAL){
59 strTelTypes.Append(wxT(""));
61 } else if (EditSectionType == CE_HOME) {
63 strTelTypes.Append(wxT("home"));
66 } else if (EditSectionType == CE_WORK) {
68 strTelTypes.Append(wxT("work"));
73 if (chkVoice->IsChecked()){
77 strTelTypes.Append(wxT(","));
78 strTelTypesLCtrl.Append(wxT(","));
82 strTelTypes.Append(wxT("voice"));
83 strTelTypesLCtrl.Append(wxT("voice"));
88 if (chkFax->IsChecked()){
92 strTelTypes.Append(wxT(","));
93 strTelTypesLCtrl.Append(wxT(","));
97 strTelTypes.Append(wxT("fax"));
98 strTelTypesLCtrl.Append(wxT("fax"));
103 if (chkVideo->IsChecked()){
107 strTelTypes.Append(wxT(","));
108 strTelTypesLCtrl.Append(wxT(","));
112 strTelTypes.Append(wxT("video"));
113 strTelTypesLCtrl.Append(wxT("video"));
118 if (chkText->IsChecked()){
122 strTelTypes.Append(wxT(","));
123 strTelTypesLCtrl.Append(wxT(","));
127 strTelTypes.Append(wxT("text"));
128 strTelTypesLCtrl.Append(wxT("text"));
133 if (chkMobile->IsChecked()){
137 strTelTypes.Append(wxT(","));
138 strTelTypesLCtrl.Append(wxT(","));
142 strTelTypes.Append(wxT("cell"));
143 strTelTypesLCtrl.Append(wxT("cell"));
148 if (chkTextphone->IsChecked()){
152 strTelTypes.Append(wxT(","));
153 strTelTypesLCtrl.Append(wxT(","));
157 strTelTypes.Append(wxT("textphone"));
158 strTelTypesLCtrl.Append(wxT("textphone"));
163 if (chkPager->IsChecked()){
167 strTelTypes.Append(wxT(","));
168 strTelTypesLCtrl.Append(wxT(","));
172 strTelTypes.Append(wxT("pager"));
173 strTelTypesLCtrl.Append(wxT("pager"));
178 TelephoneListTypePtr->insert(std::make_pair(TelephoneListIndex, strTelTypes));
180 TelephoneListTypeInfoPtr->insert(std::make_pair(TelephoneListIndex, strTelTypes));
182 // Add Telephone Priority.
184 if (chkUsePref->IsChecked()){
186 TelephoneListPrefPtr->insert(std::make_pair(TelephoneListIndex, sliPriority->GetValue()));
190 TelephoneListPrefPtr->insert(std::make_pair(TelephoneListIndex, 0));
198 coldata.SetId(TelephoneListIndex);
199 coldata.SetData(TelephoneListIndex);
200 coldata.SetText(txtTelephone->GetValue());
201 ListCtrlIndex = TelephoneListCtrlPtr->InsertItem(coldata);
203 strTelTypesLCtrl.Replace(wxT(","), wxT(""), FALSE);
205 TelephoneListCtrlPtr->SetItem(ListCtrlIndex, 1, strTelTypesLCtrl);
207 if (chkUsePref->IsChecked()){
209 TelephoneListCtrlPtr->SetItem(ListCtrlIndex, 2, wxString::Format(wxT("%i"), sliPriority->GetValue()));
215 } else if (EditorMode == TRUE) {
217 wxString strTelTypes;
218 wxString strTelTypesLCtrl;
219 bool AddComma = FALSE;
220 long longSelected = -1;
222 // Edit the Telephone number.
225 TelephoneListPtr->erase(TelephoneListIndex);
226 TelephoneListPtr->insert(std::make_pair(TelephoneListIndex, txtTelephone->GetValue()));
228 // Edit the Telephone type.
230 if (EditSectionType == CE_GENERAL){
232 strTelTypes.Append(wxT(""));
234 } else if (EditSectionType == CE_HOME) {
236 strTelTypes.Append(wxT("home"));
239 } else if (EditSectionType == CE_WORK) {
241 strTelTypes.Append(wxT("work"));
246 if (chkVoice->IsChecked()){
250 strTelTypes.Append(wxT(","));
251 strTelTypesLCtrl.Append(wxT(","));
255 strTelTypes.Append(wxT("voice"));
256 strTelTypesLCtrl.Append(wxT("voice"));
261 if (chkFax->IsChecked()){
265 strTelTypes.Append(wxT(","));
266 strTelTypesLCtrl.Append(wxT(","));
270 strTelTypes.Append(wxT("fax"));
271 strTelTypesLCtrl.Append(wxT("fax"));
276 if (chkVideo->IsChecked()){
280 strTelTypes.Append(wxT(","));
281 strTelTypesLCtrl.Append(wxT(","));
285 strTelTypes.Append(wxT("video"));
286 strTelTypesLCtrl.Append(wxT("video"));
291 if (chkText->IsChecked()){
295 strTelTypes.Append(wxT(","));
296 strTelTypesLCtrl.Append(wxT(","));
300 strTelTypes.Append(wxT("text"));
301 strTelTypesLCtrl.Append(wxT("text"));
306 if (chkMobile->IsChecked()){
310 strTelTypes.Append(wxT(","));
311 strTelTypesLCtrl.Append(wxT(","));
315 strTelTypes.Append(wxT("cell"));
316 strTelTypesLCtrl.Append(wxT("cell"));
321 if (chkTextphone->IsChecked()){
325 strTelTypes.Append(wxT(","));
326 strTelTypesLCtrl.Append(wxT(","));
330 strTelTypes.Append(wxT("textphone"));
331 strTelTypesLCtrl.Append(wxT("textphone"));
336 if (chkPager->IsChecked()){
340 strTelTypes.Append(wxT(","));
341 strTelTypesLCtrl.Append(wxT(","));
345 strTelTypes.Append(wxT("pager"));
346 strTelTypesLCtrl.Append(wxT("pager"));
351 strTelTypesLCtrl.Replace(wxT(","), wxT(""), FALSE);
353 TelephoneListTypePtr->erase(TelephoneListIndex);
354 TelephoneListTypePtr->insert(std::make_pair(TelephoneListIndex, strTelTypes));
356 TelephoneListTypeInfoPtr->erase(TelephoneListIndex);
357 TelephoneListTypeInfoPtr->insert(std::make_pair(TelephoneListIndex, strTelTypes));
359 // Edit the Telephone Priority.
361 TelephoneListPrefPtr->erase(TelephoneListIndex);
363 if (chkUsePref->IsChecked()){
365 TelephoneListPrefPtr->insert(std::make_pair(TelephoneListIndex, sliPriority->GetValue()));
369 TelephoneListPrefPtr->insert(std::make_pair(TelephoneListIndex, 0));
375 longSelected = TelephoneListCtrlPtr->GetNextItem(longSelected,
377 wxLIST_STATE_SELECTED);
379 if (longSelected == -1){
383 TelephoneListCtrlPtr->SetItem(longSelected, 0, txtTelephone->GetValue());
384 TelephoneListCtrlPtr->SetItem(longSelected, 1, strTelTypesLCtrl);
386 if (chkUsePref->IsChecked()){
388 TelephoneListCtrlPtr->SetItem(longSelected, 2, wxString::Format(wxT("%i"), sliPriority->GetValue()));
392 TelephoneListCtrlPtr->SetItem(longSelected, 2, wxT(""));
402 void frmContactEditorTelephone::CloseWindow( wxCommandEvent& event )
409 void frmContactEditorTelephone::SetEditorMode(bool EditMode, SectionType SectType)
411 // Set if the editor is adding or editing an address.
415 if (EditMode == FALSE){
418 btnAction->SetLabel(_("Add"));
419 this->SetTitle(_("Add Telephone"));
421 } else if (EditMode == TRUE){
424 btnAction->SetLabel(_("Modify"));
425 this->SetTitle(_("Modify Telephone"));
427 std::map<int,int>::iterator intiter;
428 std::map<int,wxString>::iterator striter;
431 // Load the data into the form. Get the phone number.
433 striter = TelephoneListPtr->find(TelephoneListIndex);
435 if (striter->first == TelephoneListIndex){
437 strValue = striter->second;
441 txtTelephone->SetValue(strValue);
445 // Get the phone types in.
448 if (TelephoneListTypeInfoPtr->find(TelephoneListIndex) !=
449 TelephoneListTypeInfoPtr->end()){
451 striter = TelephoneListTypeInfoPtr->find(TelephoneListIndex);
453 if (striter->first == TelephoneListIndex){
455 strValue = striter->second;
461 wxStringTokenizer TelephonePrefToken (strValue, wxT(","));
465 while(TelephonePrefToken.HasMoreTokens()){
467 strValue = TelephonePrefToken.GetNextToken();
469 if (strValue == wxT("home") || strValue == wxT("work")){
471 // Ignore these two since they aren't needed.
477 if (strValue == wxT("voice")){
479 chkVoice->SetValue(TRUE);
483 if (strValue == wxT("fax")){
485 chkFax->SetValue(TRUE);
489 if (strValue == wxT("video")){
491 chkVideo->SetValue(TRUE);
495 if (strValue == wxT("text")){
497 chkText->SetValue(TRUE);
501 if (strValue == wxT("cell")){
503 chkMobile->SetValue(TRUE);
507 if (strValue == wxT("textphone")){
509 chkTextphone->SetValue(TRUE);
513 if (strValue == wxT("pager")){
515 chkPager->SetValue(TRUE);
523 intiter = TelephoneListPrefPtr->find(TelephoneListIndex);
525 if (intiter->first == TelephoneListIndex && intiter->second > 0){
527 sliPriority->SetValue(intiter->second);
528 sliPriority->Enable();
529 chkUsePref->SetValue(TRUE);
535 EditSectionType = SectType;
539 void frmContactEditorTelephone::SetupPointers(std::map<int, wxString> *TelephoneList,
540 std::map<int, wxString> *TelephoneListAltID,
541 std::map<int, wxString> *TelephoneListPID,
542 std::map<int, wxString> *TelephoneListType,
543 std::map<int, wxString> *TelephoneListTypeInfo,
544 std::map<int, wxString> *TelephoneListTokens,
545 std::map<int, int> *TelephoneListPref,
546 wxListCtrl *TelephoneListCtrl,
550 TelephoneListPtr = TelephoneList;
551 TelephoneListAltIDPtr = TelephoneListAltID;
552 TelephoneListPIDPtr = TelephoneListPID;
553 TelephoneListTypePtr = TelephoneListType;
554 TelephoneListTypeInfoPtr = TelephoneListTypeInfo;
555 TelephoneListTokensPtr = TelephoneListTokens;
556 TelephoneListPrefPtr = TelephoneListPref;
557 TelephoneListCtrlPtr = TelephoneListCtrl;
558 TelephoneListIndex = TelephoneIndex;