void frmContactEditor::AddKey( wxCommandEvent& event )
{
- int intResult = 0;
+
+ int intResult = 0;
- frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this );
- frameCEKey->SetEditorMode(FALSE);
- intResult = GetLastInt(&ContactEditorData.KeyList);
- frameCEKey->SetupPointers(&ContactEditorData.KeyList,
- &ContactEditorData.KeyListAltID,
- &ContactEditorData.KeyListPID,
- &ContactEditorData.KeyListKeyType,
- &ContactEditorData.KeyListDataType,
- &ContactEditorData.KeyListType,
- &ContactEditorData.KeyListTokens,
- &ContactEditorData.KeyListPref,
- lboKeys,
- (intValueSeek));
- frameCEKey->ShowModal();
- delete frameCEKey;
- frameCEKey = NULL;
+ frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this );
+ frameCEKey->SetEditorMode(FALSE);
+ intResult = GetLastInt(&ContactEditorData.KeyList);
+ frameCEKey->SetupPointers(&ContactEditorData.KeyList,
+ &ContactEditorData.KeyListAltID,
+ &ContactEditorData.KeyListPID,
+ &ContactEditorData.KeyListKeyType,
+ &ContactEditorData.KeyListDataType,
+ &ContactEditorData.KeyListType,
+ &ContactEditorData.KeyListTokens,
+ &ContactEditorData.KeyListPref,
+ lboKeys,
+ (intValueSeek));
+ frameCEKey->ShowModal();
+ delete frameCEKey;
+ frameCEKey = NULL;
+
}
void frmContactEditor::ModifyKey( wxCommandEvent& event )
{
- long longSelected = -1;
- int intSelectedData = 0;
+
+ long longSelected = -1;
+ int intSelectedData = 0;
- if (!GetSelectedItem(lboKeys,
- &longSelected,
- &intSelectedData)){
- return;
- }
+ if (!GetSelectedItem(lboKeys,
+ &longSelected,
+ &intSelectedData)){
+ return;
+ }
- frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this );
- frameCEKey->SetupPointers(&ContactEditorData.KeyList,
- &ContactEditorData.KeyListAltID,
- &ContactEditorData.KeyListPID,
- &ContactEditorData.KeyListKeyType,
- &ContactEditorData.KeyListDataType,
- &ContactEditorData.KeyListType,
- &ContactEditorData.KeyListTokens,
- &ContactEditorData.KeyListPref,
- lboKeys,
- intSelectedData);
- frameCEKey->SetEditorMode(TRUE);
- frameCEKey->ShowModal();
- delete frameCEKey;
- frameCEKey = NULL;
+ frmContactEditorKey *frameCEKey = new frmContactEditorKey ( this );
+ frameCEKey->SetupPointers(&ContactEditorData.KeyList,
+ &ContactEditorData.KeyListAltID,
+ &ContactEditorData.KeyListPID,
+ &ContactEditorData.KeyListKeyType,
+ &ContactEditorData.KeyListDataType,
+ &ContactEditorData.KeyListType,
+ &ContactEditorData.KeyListTokens,
+ &ContactEditorData.KeyListPref,
+ lboKeys,
+ intSelectedData);
+ frameCEKey->SetEditorMode(TRUE);
+ frameCEKey->ShowModal();
+ delete frameCEKey;
+ frameCEKey = NULL;
+
}
void frmContactEditor::DeleteKey( wxCommandEvent& event )
{
- long longSelected = -1;
- int intSelectedData = 0;
+
+ long longSelected = -1;
+ int intSelectedData = 0;
- if (!GetSelectedItem(lboKeys,
- &longSelected,
- &intSelectedData)){
- return;
- }
+ if (!GetSelectedItem(lboKeys,
+ &longSelected,
+ &intSelectedData)){
+ return;
+ }
- lboKeys->DeleteItem(longSelected);
+ lboKeys->DeleteItem(longSelected);
- DeleteMapData(intSelectedData, &ContactEditorData.KeyList, &ContactEditorData.KeyListAltID,
- &ContactEditorData.KeyListPID, &ContactEditorData.KeyListKeyType, &ContactEditorData.KeyListDataType, &ContactEditorData.KeyListType,
- &ContactEditorData.KeyListTokens, &ContactEditorData.KeyListPref);
+ DeleteMapData(intSelectedData, &ContactEditorData.KeyList, &ContactEditorData.KeyListAltID,
+ &ContactEditorData.KeyListPID, &ContactEditorData.KeyListKeyType, &ContactEditorData.KeyListDataType, &ContactEditorData.KeyListType,
+ &ContactEditorData.KeyListTokens, &ContactEditorData.KeyListPref);
}