X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2Fcontacteditor%2FfrmContactEditorWebsites.cpp;h=5f857768d829f4b662f46395b27da9edf58e4547;hp=c4030b6071eaa03a256ac6e1efec3335995eea53;hb=ada42724cf083b0a311cf22260485d61516c25c8;hpb=45729fca56479bd9158486e0cda0c4a94b4dd1dc diff --git a/source/contacteditor/frmContactEditorWebsites.cpp b/source/contacteditor/frmContactEditorWebsites.cpp index c4030b6..5f85776 100644 --- a/source/contacteditor/frmContactEditorWebsites.cpp +++ b/source/contacteditor/frmContactEditorWebsites.cpp @@ -1,3 +1,21 @@ +// frmContactEditorWebsites.cpp - frmContactEditorWebsites form. +// +// (c) 2012-2015 Xestia Software Development. +// +// This file is part of Xestia Address Book. +// +// Xestia Address Book is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by the +// Free Software Foundation, version 3 of the license. +// +// Xestia Address Book is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License along +// with Xestia Address Book. If not, see + #include "frmContactEditorWebsites.h" #include @@ -8,21 +26,19 @@ frmContactEditorWebsites::frmContactEditorWebsites( wxWindow* parent ) : frmContactEditorWebsitesADT( parent ) { + + // Setup the window. + EditorMode = FALSE; - sliPriority->Disable(); -} - -void frmContactEditorWebsites::EnablePriority( wxCommandEvent& event ) -{ - if (chkUsePref->IsChecked()){ - sliPriority->Enable(); - } else { - sliPriority->Disable(); - } + priorityCtrl = new XABPriorityCtrl(tabGeneral); + szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5); + szrGeneral->Layout(); + } void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) { + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -55,9 +71,9 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) // Add the website priority. - if (chkUsePref->IsChecked()){ + if (priorityCtrl->IsPriorityChecked()){ - WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, sliPriority->GetValue())); + WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, priorityCtrl->GetValue())); } else { @@ -74,9 +90,9 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) coldata.SetText(txtWebsite->GetValue()); ListCtrlIndex = WebsiteListCtrlPtr->InsertItem(coldata); - if (chkUsePref->IsChecked()){ + if (priorityCtrl->IsPriorityChecked()){ - WebsiteListCtrlPtr->SetItem(ListCtrlIndex, 1, wxString::Format(wxT("%i"), sliPriority->GetValue())); + WebsiteListCtrlPtr->SetItem(ListCtrlIndex, 1, wxString::Format(wxT("%i"), priorityCtrl->GetValue())); } @@ -94,9 +110,9 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) WebsiteListPrefPtr->erase(WebsiteListIndex); - if (chkUsePref->IsChecked()){ + if (priorityCtrl->IsPriorityChecked()){ - WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, sliPriority->GetValue())); + WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, priorityCtrl->GetValue())); } else { @@ -116,9 +132,9 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) WebsiteListCtrlPtr->SetItem(longSelected, 0, txtWebsite->GetValue()); - if (chkUsePref->IsChecked()){ + if (priorityCtrl->IsPriorityChecked()){ - WebsiteListCtrlPtr->SetItem(longSelected, 1, wxString::Format(wxT("%i"), sliPriority->GetValue())); + WebsiteListCtrlPtr->SetItem(longSelected, 1, wxString::Format(wxT("%i"), priorityCtrl->GetValue())); } else { @@ -129,10 +145,12 @@ void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) this->Close(); } + } void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType) { + // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit @@ -171,11 +189,11 @@ void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType intiter = WebsiteListPrefPtr->find(WebsiteListIndex); - if (intiter->first == WebsiteListIndex && intiter->second > 0){ + if (intiter->first == WebsiteListIndex && intiter->second > 0 && + intiter != WebsiteListPrefPtr->end()){ - sliPriority->SetValue(intiter->second); - sliPriority->Enable(); - chkUsePref->SetValue(TRUE); + priorityCtrl->SetValue(intiter->second); + priorityCtrl->EnablePriority(true); } @@ -187,7 +205,11 @@ void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType void frmContactEditorWebsites::CloseWindow( wxCommandEvent& event ) { + + // Close the window. + this->Close(); + } void frmContactEditorWebsites::SetupPointers(std::map *WebsiteList, @@ -201,6 +223,8 @@ void frmContactEditorWebsites::SetupPointers(std::map *WebsiteLis int WebsiteIndex ) { + // Setup the pointers. + WebsiteListPtr = WebsiteList; WebsiteListAltIDPtr = WebsiteListAltID; WebsiteListPIDPtr = WebsiteListPID;