:
frmContactEditorCalAdrADT( parent )
{
+
+ // Setup the window.
+
EditorMode = FALSE;
sliPriority->Disable();
cmbType->Append(wxT(""));
cmbType->Append(_("Home"));
- cmbType->Append(_("Work"));
+ cmbType->Append(_("Work"));
+
}
void frmContactEditorCalAdr::EnablePriority( wxCommandEvent& event )
{
+
+ // Enable/disable the priority setting.
+
if (chkUsePref->IsChecked()){
sliPriority->Enable();
} else {
sliPriority->Disable();
}
+
}
void frmContactEditorCalAdr::ProcessAction( wxCommandEvent& event )
{
+
+ // Process action.
+
long ListCtrlIndex;
if (EditorMode == FALSE){
this->Close();
}
+
}
void frmContactEditorCalAdr::SetEditorMode(bool EditMode)
{
+
+ // Set the editor mode.
+
// Set if the editor is adding or editing an address.
// FALSE = Add
// TRUE = Edit
void frmContactEditorCalAdr::CloseWindow( wxCommandEvent& event )
{
+
+ // Close the window.
+
this->Close();
+
}
void frmContactEditorCalAdr::SetupPointers(std::map<int, wxString> *CalAdrList,
int CalAdrIndex )
{
+ // Setup the pointers.
+
CalAdrListPtr = CalAdrList;
CalAdrListAltIDPtr = CalAdrListAltID;
CalAdrListPIDPtr = CalAdrListPID;