1 // frmContactEditorRoles.cpp - frmContactEditorRoles form.
3 // (c) 2012-2015 Xestia Software Development.
5 // This file is part of Xestia Address Book.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include "frmContactEditorRoles.h"
23 #include "../common/textprocessing.h"
25 frmContactEditorRoles::frmContactEditorRoles( wxWindow* parent )
27 frmContactEditorRolesADT( parent )
30 sliPriority->Disable();
33 void frmContactEditorRoles::EnablePriority( wxCommandEvent& event )
35 if (chkUsePref->IsChecked()){
36 sliPriority->Enable();
38 sliPriority->Disable();
42 void frmContactEditorRoles::ProcessAction( wxCommandEvent& event )
44 // Set if the editor is adding or editing an address.
50 if (EditorMode == FALSE){
54 // Get the website address.
56 RolesListPtr->insert(std::make_pair(RolesListIndex, txtRole->GetValue()));
58 // Get the type of website.
60 if (EditSectionType == CE_GENERAL){
62 RolesListTypePtr->insert(std::make_pair(RolesListIndex, wxT("")));
64 } else if (EditSectionType == CE_HOME) {
66 RolesListTypePtr->insert(std::make_pair(RolesListIndex, wxT("home")));
68 } else if (EditSectionType == CE_WORK) {
70 RolesListTypePtr->insert(std::make_pair(RolesListIndex, wxT("work")));
74 // Add the website priority.
76 if (chkUsePref->IsChecked()){
78 RolesListPrefPtr->insert(std::make_pair(RolesListIndex, sliPriority->GetValue()));
82 RolesListPrefPtr->insert(std::make_pair(RolesListIndex, 0));
90 coldata.SetId(RolesListIndex);
91 coldata.SetData(RolesListIndex);
92 coldata.SetText(txtRole->GetValue());
93 ListCtrlIndex = RolesListCtrlPtr->InsertItem(coldata);
95 if (chkUsePref->IsChecked()){
97 RolesListCtrlPtr->SetItem(ListCtrlIndex, 1, wxString::Format(wxT("%i"), sliPriority->GetValue()));
106 long longSelected = -1;
108 RolesListPtr->erase(RolesListIndex);
109 RolesListPtr->insert(std::make_pair(RolesListIndex, txtRole->GetValue()));
111 // Update the slider priority.
113 RolesListPrefPtr->erase(RolesListIndex);
115 if (chkUsePref->IsChecked()){
117 RolesListPrefPtr->insert(std::make_pair(RolesListIndex, sliPriority->GetValue()));
121 RolesListPrefPtr->insert(std::make_pair(RolesListIndex, 0));
127 longSelected = RolesListCtrlPtr->GetNextItem(longSelected,
129 wxLIST_STATE_SELECTED);
131 if (longSelected == -1){
135 RolesListCtrlPtr->SetItem(longSelected, 0, txtRole->GetValue());
137 if (chkUsePref->IsChecked()){
139 RolesListCtrlPtr->SetItem(longSelected, 1, wxString::Format(wxT("%i"), sliPriority->GetValue()));
143 RolesListCtrlPtr->SetItem(longSelected, 1, wxT(""));
152 void frmContactEditorRoles::SetEditorMode(bool EditMode, SectionType SectType)
154 // Set if the editor is adding or editing an address.
158 if (EditMode == FALSE){
161 btnAction->SetLabel(_("Add"));
162 this->SetTitle(_("Add Title"));
164 } else if (EditMode == TRUE){
167 btnAction->SetLabel(_("Modify"));
168 this->SetTitle(_("Modify Title"));
170 std::map<int,int>::iterator intiter;
171 std::map<int,wxString>::iterator striter;
174 // Load the data into the form. Get the website.
176 striter = RolesListPtr->find(RolesListIndex);
178 if (striter->first == RolesListIndex){
180 strValue = striter->second;
184 txtRole->SetValue(strValue);
188 // Get the website priority.
190 intiter = RolesListPrefPtr->find(RolesListIndex);
192 if (intiter->first == RolesListIndex && intiter->second > 0){
194 sliPriority->SetValue(intiter->second);
195 sliPriority->Enable();
196 chkUsePref->SetValue(TRUE);
202 EditSectionType = SectType;
206 void frmContactEditorRoles::CloseWindow( wxCommandEvent& event )
211 void frmContactEditorRoles::SetupPointers(std::map<int, wxString> *RolesList,
212 std::map<int, wxString> *RolesListLanguage,
213 std::map<int, wxString> *RolesListAltID,
214 std::map<int, wxString> *RolesListPID,
215 std::map<int, wxString> *RolesListType,
216 std::map<int, wxString> *RolesListTokens,
217 std::map<int, int> *RolesListPref,
218 wxListCtrl *RolesListCtrl,
222 RolesListPtr = RolesList;
223 RolesListLanguagePtr = RolesListLanguage;
224 RolesListAltIDPtr = RolesListAltID;
225 RolesListPIDPtr = RolesListPID;
226 RolesListTypePtr = RolesListType;
227 RolesListTokensPtr = RolesListTokens;
228 RolesListPrefPtr = RolesListPref;
229 RolesListCtrlPtr = RolesListCtrl;
230 RolesListIndex = RolesIndex;