// 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 #include "../enums.h" #include "../common/textprocessing.h" frmContactEditorWebsites::frmContactEditorWebsites( wxWindow* parent ) : frmContactEditorWebsitesADT( parent ) { // Setup the window. EditorMode = FALSE; priorityCtrl = new XABPriorityCtrl(tabGeneral); szrGeneral->Add(priorityCtrl, 1, wxEXPAND, 5); } void frmContactEditorWebsites::ProcessAction( wxCommandEvent& event ) { // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit long ListCtrlIndex; if (EditorMode == FALSE){ wxString strValue; // Get the website address. WebsiteListPtr->insert(std::make_pair(WebsiteListIndex, txtWebsite->GetValue())); // Get the type of website. if (EditSectionType == CE_GENERAL){ WebsiteListTypePtr->insert(std::make_pair(WebsiteListIndex, wxT(""))); } else if (EditSectionType == CE_HOME) { WebsiteListTypePtr->insert(std::make_pair(WebsiteListIndex, wxT("home"))); } else if (EditSectionType == CE_WORK) { WebsiteListTypePtr->insert(std::make_pair(WebsiteListIndex, wxT("work"))); } // Add the website priority. if (priorityCtrl->IsPriorityChecked()){ WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, priorityCtrl->GetValue())); } else { WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, 0)); } // Add to the form. wxListItem coldata; coldata.SetId(WebsiteListIndex); coldata.SetData(WebsiteListIndex); coldata.SetText(txtWebsite->GetValue()); ListCtrlIndex = WebsiteListCtrlPtr->InsertItem(coldata); if (priorityCtrl->IsPriorityChecked()){ WebsiteListCtrlPtr->SetItem(ListCtrlIndex, 1, wxString::Format(wxT("%i"), priorityCtrl->GetValue())); } this->Close(); } else { // Update the website address. long longSelected = -1; wxString strValue; WebsiteListPtr->erase(WebsiteListIndex); WebsiteListPtr->insert(std::make_pair(WebsiteListIndex, txtWebsite->GetValue())); // Update the slider priority. WebsiteListPrefPtr->erase(WebsiteListIndex); if (priorityCtrl->IsPriorityChecked()){ WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, priorityCtrl->GetValue())); } else { WebsiteListPrefPtr->insert(std::make_pair(WebsiteListIndex, 0)); } // Update the form. longSelected = WebsiteListCtrlPtr->GetNextItem(longSelected, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); if (longSelected == -1){ return; } WebsiteListCtrlPtr->SetItem(longSelected, 0, txtWebsite->GetValue()); if (priorityCtrl->IsPriorityChecked()){ WebsiteListCtrlPtr->SetItem(longSelected, 1, wxString::Format(wxT("%i"), priorityCtrl->GetValue())); } else { WebsiteListCtrlPtr->SetItem(longSelected, 1, wxT("")); } this->Close(); } } void frmContactEditorWebsites::SetEditorMode(bool EditMode, SectionType SectType) { // Set if the editor is adding or editing an address. // FALSE = Add // TRUE = Edit if (EditMode == FALSE){ EditorMode = FALSE; btnAction->SetLabel(_("Add")); this->SetTitle(_("Add Website")); } else if (EditMode == TRUE){ EditorMode = TRUE; btnAction->SetLabel(_("Modify")); this->SetTitle(_("Modify Website")); std::map::iterator intiter; std::map::iterator striter; wxString strValue; // Load the data into the form. Get the website. striter = WebsiteListPtr->find(WebsiteListIndex); if (striter->first == WebsiteListIndex){ strValue = striter->second; } txtWebsite->SetValue(strValue); strValue.Clear(); // Get the website priority. intiter = WebsiteListPrefPtr->find(WebsiteListIndex); if (intiter->first == WebsiteListIndex && intiter->second > 0 && intiter != WebsiteListPrefPtr->end()){ priorityCtrl->SetValue(intiter->second); priorityCtrl->EnablePriority(true); } } EditSectionType = SectType; } void frmContactEditorWebsites::CloseWindow( wxCommandEvent& event ) { // Close the window. this->Close(); } void frmContactEditorWebsites::SetupPointers(std::map *WebsiteList, std::map *WebsiteListAltID, std::map *WebsiteListPID, std::map *WebsiteListType, std::map *WebsiteListTokens, std::map *WebsiteListMediatype, std::map *WebsiteListPref, wxListCtrl *WebsiteListCtrl, int WebsiteIndex ) { // Setup the pointers. WebsiteListPtr = WebsiteList; WebsiteListAltIDPtr = WebsiteListAltID; WebsiteListPIDPtr = WebsiteListPID; WebsiteListTypePtr = WebsiteListType; WebsiteListTokensPtr = WebsiteListTokens; WebsiteListMediatypePtr = WebsiteListMediatype; WebsiteListPrefPtr = WebsiteListPref; WebsiteListCtrlPtr = WebsiteListCtrl; WebsiteListIndex = WebsiteIndex; }