X-Git-Url: http://Server1/repobrowser/?a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditorKey.cpp;h=fb6319b8591b73a289983382c78a99ccceee2c1b;hb=56eff3f03cf38a27161b3279318c474e0421111c;hp=569b0c3ab766da74d31f73856d83c5abac3047cc;hpb=fc5f22838afc80ae2e670ff478ad58bdf87fc165;p=xestiaab%2F.git diff --git a/source/contacteditor/frmContactEditorKey.cpp b/source/contacteditor/frmContactEditorKey.cpp index 569b0c3..fb6319b 100644 --- a/source/contacteditor/frmContactEditorKey.cpp +++ b/source/contacteditor/frmContactEditorKey.cpp @@ -25,6 +25,9 @@ frmContactEditorKey::frmContactEditorKey( wxWindow* parent ) : frmContactEditorKeyADT( parent ) { + + // Setup the window. + EditorMode = FALSE; sliPriority->Disable(); @@ -51,15 +54,22 @@ frmContactEditorKeyADT( parent ) void frmContactEditorKey::EnablePriority( wxCommandEvent& event ) { + + // Enable/disable the priority setting. + if (chkUsePref->IsChecked()){ sliPriority->Enable(); } else { sliPriority->Disable(); } + } void frmContactEditorKey::SetEditorMode(bool EditMode) { + + // Set the editor mode. + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -210,6 +220,9 @@ void frmContactEditorKey::SetEditorMode(bool EditMode) void frmContactEditorKey::ProcessAction( wxCommandEvent& event ) { + + // Process action. + long ListCtrlIndex; int intKeyType = 0; @@ -394,27 +407,17 @@ void frmContactEditorKey::ProcessAction( wxCommandEvent& event ) void frmContactEditorKey::ProcessKeyType( wxCommandEvent& event ) { - int intKeyType = 0; - - intKeyType = cmbKeyMainType->GetCurrentSelection(); - - if (intKeyType == 0){ - - tabURL->Show(); - tabKey->Hide(); - - } else if (intKeyType == 1){ - - tabURL->Hide(); - tabKey->Show(); - - } + // Process the key type (via wxCommandEvent). + ProcessKeyType(); + } void frmContactEditorKey::ProcessKeyType() { + // Process the key type. + int intKeyType = 0; intKeyType = cmbKeyMainType->GetCurrentSelection(); @@ -436,6 +439,8 @@ void frmContactEditorKey::ProcessKeyType() void frmContactEditorKey::ConvertURLType( wxCommandEvent& event ) { + // Convert the URL type. + wxString strValue; strValue = cmbURL->GetString(cmbURL->GetCurrentSelection()); @@ -451,6 +456,8 @@ void frmContactEditorKey::ConvertURLType( wxCommandEvent& event ) void frmContactEditorKey::ConvertKeyType( wxCommandEvent& event ) { + // Convert the key type. + wxString strValue; strValue = cmbKeyType->GetString(cmbKeyType->GetCurrentSelection()); @@ -465,7 +472,11 @@ void frmContactEditorKey::ConvertKeyType( wxCommandEvent& event ) void frmContactEditorKey::CloseWindow( wxCommandEvent& event ) { + + // Close this window. + this->Close(); + } void frmContactEditorKey::SetupPointers(std::map *KeyList, @@ -480,6 +491,8 @@ void frmContactEditorKey::SetupPointers(std::map *KeyList, int KeyIndex ) { + // Setup the pointers. + KeyListPtr = KeyList; KeyListAltIDPtr = KeyListAltID; KeyListPIDPtr = KeyListPID;