:
frmContactEditorWebsitesADT( parent )
{
+
+ // Setup the window.
+
EditorMode = FALSE;
sliPriority->Disable();
+
}
void frmContactEditorWebsites::EnablePriority( wxCommandEvent& event )
{
+
+ // Enable the priority setting.
+
if (chkUsePref->IsChecked()){
sliPriority->Enable();
} else {
sliPriority->Disable();
}
+
}
void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event )
{
+
// Set if the editor is adding or editing an address.
// FALSE = Add
// TRUE = Edit
this->Close();
}
+
}
void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType)
{
+
// Set if the editor is adding or editing an address.
// FALSE = Add
// TRUE = Edit
void frmContactEditorWebsites::CloseWindow( wxCommandEvent& event )
{
+
+ // Close the window.
+
this->Close();
+
}
void frmContactEditorWebsites::SetupPointers(std::map<int, wxString> *WebsiteList,
int WebsiteIndex )
{
+ // Setup the pointers.
+
WebsiteListPtr = WebsiteList;
WebsiteListAltIDPtr = WebsiteListAltID;
WebsiteListPIDPtr = WebsiteListPID;