1 // frmContactEditorNotes.h - frmContactEditorNotes form header.
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 #ifndef __frmContactEditorNotes__
20 #define __frmContactEditorNotes__
24 Subclass of frmContactEditorNotesADT, which is generated by wxFormBuilder.
28 #include <wx/tokenzr.h>
30 #include "../AppXestiaAddrBk.h"
32 #include "../common/textprocessing.h"
33 #include "../common/languages.h"
35 //// end generated include
37 /** Implementing frmContactEditorNotesADT */
38 class frmContactEditorNotes : public frmContactEditorNotesADT
41 // Handlers for frmContactEditorNotesADT events.
42 void EnablePriority( wxCommandEvent& event );
43 void ProcessAction( wxCommandEvent& event );
44 void CloseWindow( wxCommandEvent& event );
47 frmContactEditorNotes( wxWindow* parent );
48 void SetEditorMode(bool EditMode, SectionType SectType);
49 void SetupPointers(std::map<int, wxString> *NotesList,
50 std::map<int, wxString> *NotesListLang,
51 std::map<int, wxString> *NotesListAltID,
52 std::map<int, wxString> *NotesListPID,
53 std::map<int, wxString> *NotesListType,
54 std::map<int, wxString> *NotesListTokens,
55 std::map<int, int> *NotesListPref,
56 wxListCtrl *NotesListCtrl,
58 //// end generated class members
63 std::map<int, wxString> *NotesListPtr;
64 std::map<int, wxString> *NotesListLangPtr;
65 std::map<int, wxString> *NotesListAltIDPtr;
66 std::map<int, wxString> *NotesListPIDPtr;
67 std::map<int, wxString> *NotesListTypePtr;
68 std::map<int, wxString> *NotesListTokensPtr;
69 std::map<int, int> *NotesListPrefPtr;
70 wxListCtrl *NotesListCtrlPtr;
72 SectionType EditSectionType;
75 #endif // __frmContactEditorNotes__