// frmContactEditor-Groups.cpp - frmContactEditor Groups tab subroutines. // // (c) 2012-2016 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 "frmContactEditor.h" #include "frmContactEditorGroups.h" #include "../frmMain.h" void frmContactEditor::AddGroup( wxCommandEvent& event ) { // Bring up window to add a group. int intResult = 0; XABViewMode XVMData = MainPtr->GetViewMode(); frmContactEditorGroup *frameCEGroup = new frmContactEditorGroup ( this ); frameCEGroup->SetEditorMode(FALSE, XVMData); intResult = GetLastInt(&ContactEditorData.GroupsList); frameCEGroup->SetupPointers(&ContactEditorData.GroupsList, lboGroups, wxSContactAccount, intValueSeek); frameCEGroup->ShowModal(); delete frameCEGroup; frameCEGroup = NULL; } void frmContactEditor::ModifyGroup( wxCommandEvent& event ) { return; } void frmContactEditor::DeleteGroup( wxCommandEvent& event ) { // Bring up window to delete a group. long longSelected = -1; int intSelectedData = 0; if (lboGroups->GetItemCount() == 0 || !GetSelectedItem(lboGroups, &longSelected, &intSelectedData)){ return; } lboGroups->DeleteItem(longSelected); DeleteMapData(intSelectedData, &ContactEditorData.GroupsList); }