X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditorNotes.cpp;h=ab0a64de66f323393cc292653c85a1130c8768d4;hb=56eff3f03cf38a27161b3279318c474e0421111c;hp=0dbfb7863b59c59aa3e8de1abf6bfda3aeba0896;hpb=da64d37d0a13895554e4ad945c46dd0af6d1c0e6;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditorNotes.cpp b/source/contacteditor/frmContactEditorNotes.cpp index 0dbfb78..ab0a64d 100644 --- a/source/contacteditor/frmContactEditorNotes.cpp +++ b/source/contacteditor/frmContactEditorNotes.cpp @@ -17,28 +17,51 @@ // with Xestia Address Book. If not, see #include "frmContactEditorNotes.h" -#include "../common/textprocessing.h" -#include frmContactEditorNotes::frmContactEditorNotes( wxWindow* parent ) : frmContactEditorNotesADT( parent ) { + + // Setup the editor window. + EditorMode = FALSE; sliPriority->Disable(); + + // Setup the language combo box. + + std::vector LanguageCodeList = GetLanguageCodeList(); + + wxArrayString LanguageList; + + for (auto LanguageItem : LanguageCodeList){ + + LanguageList.Add((wxString)LanguageItem, 1); + + } + + cmbLanguage->Append(LanguageList); + } void frmContactEditorNotes::EnablePriority( wxCommandEvent& event ) { + + // Enable/disable the priority setting. + if (chkUsePref->IsChecked()){ sliPriority->Enable(); } else { sliPriority->Disable(); } + } void frmContactEditorNotes::ProcessAction( wxCommandEvent& event ) { + + // Process action. + long ListCtrlIndex; if (EditorMode == FALSE){ @@ -184,6 +207,9 @@ void frmContactEditorNotes::ProcessAction( wxCommandEvent& event ) void frmContactEditorNotes::SetEditorMode(bool EditMode, SectionType SectType) { + + // Set the editor mode. + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -220,7 +246,10 @@ void frmContactEditorNotes::SetEditorMode(bool EditMode, SectionType SectType) striter = NotesListLangPtr->find(NotesListIndex); - if (striter->first == NotesListIndex){ + strValue.clear(); + + if (striter->first == NotesListIndex && + striter != NotesListLangPtr->end()){ strValue = striter->second; @@ -232,7 +261,8 @@ void frmContactEditorNotes::SetEditorMode(bool EditMode, SectionType SectType) intiter = NotesListPrefPtr->find(NotesListIndex); - if (intiter->first == NotesListIndex && intiter->second > 0){ + if (intiter->first == NotesListIndex && intiter->second > 0 && + intiter != NotesListPrefPtr->end()){ sliPriority->SetValue(intiter->second); sliPriority->Enable(); @@ -248,7 +278,11 @@ void frmContactEditorNotes::SetEditorMode(bool EditMode, SectionType SectType) void frmContactEditorNotes::CloseWindow( wxCommandEvent& event ) { + + // Close the window. + this->Close(); + } @@ -263,6 +297,8 @@ void frmContactEditorNotes::SetupPointers(std::map *NotesList, int NotesIndex ) { + // Setup the pointers. + NotesListPtr = NotesList; NotesListLangPtr = NotesListLang; NotesListAltIDPtr = NotesListAltID;