:
frmContactEditorCategoryADT( parent )
{
+
+ // Setup the window.
+
EditorMode = FALSE;
sliPriority->Disable();
void frmContactEditorCategory::EnablePriority( wxCommandEvent& event )
{
+
+ // Enable/disable the priority setting.
+
if (chkUsePref->IsChecked()){
sliPriority->Enable();
} else {
sliPriority->Disable();
}
+
}
void frmContactEditorCategory::ProcessAction( wxCommandEvent& event )
{
+ // Process action.
+
long ListCtrlIndex;
if (EditorMode == FALSE){
void frmContactEditorCategory::SetEditorMode(bool EditMode)
{
+
+ // Set the editor mode.
+
// Set if the editor is adding or editing an address.
// FALSE = Add
// TRUE = Edit
void frmContactEditorCategory::CloseWindow( wxCommandEvent& event )
{
+
+ // Close this window.
+
this->Close();
+
}
void frmContactEditorCategory::SetupPointers(std::map<int, wxString> *CategoryList,
int CategoryIndex )
{
+ // Setup the pointers.
+
CategoryListPtr = CategoryList;
//CategoryListSortAsPtr = CategoryListSortAs;
CategoryListAltIDPtr = CategoryListAltID;