:
frmContactEditorOrganisationsADT( parent )
{
+
+ // Setup the window.
+
EditorMode = FALSE;
sliPriority->Disable();
+
}
void frmContactEditorOrganisations::UpdateSortAs( wxCommandEvent& event )
{
+ // Update the predefined SortAs listings.
+
// Clear out the options for the combo box.
cmbSortAs->Clear();
void frmContactEditorOrganisations::EnablePriority( wxCommandEvent& event )
{
+
+ // Enable/disable the priority setting.
+
if (chkUsePref->IsChecked()){
sliPriority->Enable();
} else {
sliPriority->Disable();
}
+
}
void frmContactEditorOrganisations::ProcessAction( wxCommandEvent& event )
{
+ // Process action.
+
long ListCtrlIndex;
if (EditorMode == FALSE){
void frmContactEditorOrganisations::SetEditorMode(bool EditMode, SectionType SectType)
{
+
+ // Set the editor mode.
+
// Set if the editor is adding or editing an address.
// FALSE = Add
// TRUE = Edit
void frmContactEditorOrganisations::CloseWindow( wxCommandEvent& event )
{
+
+ // Close the window.
+
this->Close();
+
}
void frmContactEditorOrganisations::SetupPointers(std::map<int, wxString> *OrganisationList,
int OrganisationIndex )
{
+ // Setup the pointers.
+
OrganisationListPtr = OrganisationList;
OrganisationListLanguagePtr = OrganisationListLanguage;
OrganisationListSortAsPtr = OrganisationListSortAs;