1 // frmMain.h - Main window header 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/>
24 Subclass of frmMainADT, which is generated by wxFormBuilder.
27 #include "AppXestiaAddrBk.h"
28 #include "common/preferences.h"
32 #include <wx/filesys.h>
34 #include <wx/treectrl.h>
35 #include <wx/treebase.h>
36 #include <wx/imaglist.h>
37 #include <wx/mstream.h>
38 #include <wx/tooltip.h>
40 #if defined(__APPLE__)
41 #import <Foundation/Foundation.h>
42 #import <SecurityInterface/SFCertificateTrustPanel.h>
43 #elif defined(__WIN32__)
44 #include "common/win32ssl.h"
47 #include "common/timers.h"
48 #include "common/events.h"
49 #include "common/etag.h"
51 #include "common/sslcertstructs.h"
52 #include "widgets/XABContactMenu.h"
53 #include "widgets/XABAccountView.h"
55 //// end generated include
57 DECLARE_EVENT_TYPE(CE_UPDATECONTACTLIST, wxID_ANY)
58 DECLARE_EVENT_TYPE(CE_UPDATEACCOUNTLIST, wxID_ANY)
59 DECLARE_EVENT_TYPE(SE_UPDATECONTACTNOTIF, wxID_ANY)
60 DECLARE_EVENT_TYPE(CE_OPENCONTACT, wxID_ANY)
61 DECLARE_EVENT_TYPE(CE_OPENCONTACTLIST, wxID_ANY)
62 DECLARE_EVENT_TYPE(CE_NEWCONTACT, wxID_ANY)
63 DECLARE_EVENT_TYPE(CE_EDITCONTACT, wxID_ANY)
64 DECLARE_EVENT_TYPE(CE_DELETECONTACT, wxID_ANY)
65 DECLARE_EVENT_TYPE(CE_REVEALCONTACT, wxID_ANY)
66 DECLARE_EVENT_TYPE(CE_REMOVESEARCH, wxID_ANY)
67 DECLARE_EVENT_TYPE(CE_REMOVECONTACT, wxID_ANY)
68 DECLARE_EVENT_TYPE(SYNC_EMPTYSERVER, wxID_ANY)
69 DECLARE_EVENT_TYPE(ACTMGR_START, wxID_ANY);
70 DECLARE_EVENT_TYPE(ACTMGR_SHUFFLE, wxID_ANY);
71 DECLARE_EVENT_TYPE(ACTMGR_STOP, wxID_ANY);
72 DECLARE_EVENT_TYPE(WINDOW_ADD, wxID_ANY);
73 DECLARE_EVENT_TYPE(WINDOW_EDIT, wxID_ANY);
74 //DECLARE_EVENT_TYPE(WINDOW_DELETE, wxID_ANY);
75 DECLARE_EVENT_TYPE(WINDOW_CLOSE, wxID_ANY);
76 DECLARE_EVENT_TYPE(CONNSTAT_UPDATE, wxID_ANY);
77 DECLARE_EVENT_TYPE(INVALIDSSLCERT, wxID_ANY);
78 DECLARE_EVENT_TYPE(INVALIDSSLCERTSTRING, wxID_ANY);
79 DECLARE_EVENT_TYPE(GETSELECTEDLIST, wxID_ANY);
80 DECLARE_EVENT_TYPE(SYNCACCOUNT, wxID_ANY);
81 DECLARE_EVENT_TYPE(IMPORT_RESULTSSHOW, wxID_ANY);
82 DECLARE_EVENT_TYPE(RELOADCONTACTLIST, wxID_ANY);
83 DECLARE_EVENT_TYPE(REFRESHADDRESSBOOK, wxID_ANY);
85 #if defined(__APPLE__)
86 DECLARE_EVENT_TYPE(INVALIDSSLTRUST, wxID_ANY);
90 wxString ContactAccount;
91 wxString ContactFilename;
93 wxString ContactNameField;
94 wxString ContactNickname;
95 vCardName ContactNameArray;
122 /** Implementing frmMainADT */
123 class frmMain : public frmMainADT
126 XABPrefAccounts prefaccounts;
127 wxArrayString ContactsFileIndex;
128 std::map<wxString, bool> WindowList;
129 std::map<int, wxTimer> AccountRefreshList;
130 std::map<int, wxString> AccountAccDirList;
131 #if defined(__APPLE__)
132 std::map<int, SecTrustRef> AccountTrustData;
133 #elif defined(__WIN32__)
134 std::map<int, PCCERT_CONTEXT> AccountCertificateData;
136 std::map<int, SSLCertCollectionString> AccountSSLData;
138 std::map<int, int> AccountSSLResult;
139 std::multimap<int, int> AccountGroupList;
140 std::multimap<int, wxString> AccountGroupFilename;
141 std::multimap<wxTreeItemId, int> AccountGroupTreeId;
142 std::map<wxString, wxAccountSyncTimer*> AccountSyncTimers;
144 wxString ActiveAccount;
145 wxString ActiveAccountType;
146 wxString ActiveFilename;
147 wxETagProcessTimer ETagProcTimer;
148 std::map<wxString,wxString> MemoryFileList;
149 std::map<void*,wxString> ContactWindowList;
150 std::map<void*,wxString> ContactEditorWindowList;
151 std::map<void*,wxString> SearchWindowList;
152 std::map<int,wxMenuItem*> WindowListPointersMenu;
153 std::map<int,void*> WindowListPointers;
154 std::map<int,int> WindowListType;
155 //std::map<int,int> WindowListType;
156 wxMenuItem *mnuContactWindows;
157 wxMenuItem *mnuContactEditorWindows;
158 wxMenuItem *mnuSearchWindows;
159 wxToolTip *SSLToolTip;
160 bool RevealWait = FALSE;
162 wxString OldSessionID;
165 //wxComboCtrl* AccControl = new wxGenericComboCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize);
166 //wxComboCtrl* AccControl = new wxComboCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxCB_READONLY|wxEXPAND|wxCC_STD_BUTTON);
167 //wxStaticBitmap* AccIcon = new wxStaticBitmap(this, wxID_ANY, IconEmp, wxDefaultPosition, wxSize(16,16), wxALL|wxEXPAND, wxStaticBitmapNameStr);
168 XABAccountView* treAccounts = new XABAccountView();
169 wxImageList *AccImgList = new wxImageList(16,16,true);
170 wxImageList *ActMgrImgList = new wxImageList(16,16,true);
175 int AccountUnsupportedID;
177 bool ReloadAccounts = FALSE;
178 bool AscendingMode = FALSE;
180 wxStaticBitmap *imgConnStatus = NULL;
181 wxStaticBitmap *imgSSLStatus = NULL;
182 wxStaticBitmap *imgActivityStatus = NULL;
183 wxBitmap *imgActIcon1 = NULL;
184 wxBitmap *imgActIcon2 = NULL;
185 wxBitmap *imgActIcon3 = NULL;
186 wxBitmap *imgActIcon4 = NULL;
187 wxBitmap *imgActIconSleep = NULL;
188 wxBitmap *imgSSL = NULL;
189 wxBitmap *imgNoSSL = NULL;
190 wxBitmap *imgSSLWarning = NULL;
191 wxBitmap *imgOnline = NULL;
192 wxBitmap *imgOffline = NULL;
193 wxBitmap *imgAddAddressBook = NULL;
194 wxBitmap *imgPreferences = NULL;
195 wxBitmap *imgSearchContacts = NULL;
196 wxBitmap *imgAddContact = NULL;
197 wxBitmap *imgEditContact = NULL;
198 wxBitmap *imgDeleteContact = NULL;
199 int ActivityIconStatus = 0;
202 int ContactEditorUID = 0;
203 int WindowMenuItemID = 0;
204 XABContactMenu *ContactMenu = new XABContactMenu(XABCONTACTMENU_MAIN);
205 void ResetContactInfo();
206 #if defined(__APPLE__)
207 void DisplayCertificate(SecTrustRef SecurityTrustObject);
208 void DisplayTrustPanel( wxCommandEvent& event );
211 // Handlers for frmMainADT events.
212 void QuitApp( wxCloseEvent& event );
213 void QuitApp( wxCommandEvent& event );
215 void ShowAboutWindow( wxCommandEvent& event );
216 void OpenPreferences( wxCommandEvent& event );
217 void OpenNewABDialog( wxCommandEvent& event );
218 void LoadPreferences( wxActivateEvent& event );
219 void LoadPreferences();
220 void ShowContactInfo( wxListEvent& event );
221 void OpenContactInfoList( wxListEvent& event );
222 void OpenContactInfoList( wxCommandEvent& event );
223 void OpenContactInfo( wxCommandEvent& event );
224 void ShowContactEditorNew( wxCommandEvent& event );
225 void ShowContactEditorEdit( wxCommandEvent& event );
226 void RefreshAddressBook( wxCommandEvent& event );
227 void ShowActivityWindow( wxCommandEvent& event );
228 void LoadContactList( wxTreeEvent& event );
229 wxTreeItemId FindItemNamed(wxTreeCtrl &tree,
230 const std::wstring &name);
231 void ConflictResolution( wxCommandEvent& event );
232 void UpdateContactList( wxCommandEvent& event );
233 void UpdateAccountList( wxCommandEvent& event );
234 void UpdateSearchContactLists( wxCommandEvent& event );
235 void OpenFindContactsWindow(wxCommandEvent& event);
236 void RevealContact( wxCommandEvent& event );
237 void RemoveContactsWindowPointer(wxCommandEvent& event);
238 void RemoveContactEditorWindowPointer(wxCommandEvent& event);
239 void RemoveContactSearchWindows(wxCommandEvent& event);
240 void DeleteContact(wxCommandEvent& event);
241 void EmptyServerDialog(wxCommandEvent& event);
242 void DeleteContactSync(wxString &Account, wxString &Filename);
243 void SortFNLN( wxCommandEvent& event );
244 void SortLNFN( wxCommandEvent& event );
245 void SortNickname( wxCommandEvent& event );
246 void SortDisplayAs( wxCommandEvent& event );
247 void SortAscending( wxCommandEvent& event );
248 void SortDescending( wxCommandEvent& event );
249 void ToggleStatusBar( wxCommandEvent& event );
250 void UpdateSBIconPlacement( wxSizeEvent& event );
251 void WindowAdd( wxCommandEvent& event );
252 void WindowEdit( wxCommandEvent& event );
253 void WindowDelete( wxCommandEvent& event );
254 void ShowContactWindow( wxCommandEvent& event );
255 void ShowContactEditorWindow( wxCommandEvent& event );
256 void ShowSearchWindow( wxCommandEvent& event );
257 void ToggleConnectionStatus( wxCommandEvent& event );
258 void ShowSSLCertificates( wxCommandEvent& event );
259 void ShowSSLInfo( wxCommandEvent& event );
260 void HideSSLInfo( wxCommandEvent& event );
261 void UpdateConnectionStatus( wxCommandEvent& event );
262 void SetupSSLStatus( int AccountID );
263 void InvalidSSLCertificate( wxCommandEvent& event );
264 void InvalidSSLCertificateString( wxCommandEvent& event );
265 void CheckUpdates( wxCommandEvent& event );
266 void OpenImportDialog( wxCommandEvent& event );
267 void OpenExportDialog( wxCommandEvent& event );
268 void GetSelectedList( wxCommandEvent& event );
269 void SyncAccount( wxCommandEvent& event );
270 void ShowHelp( wxCommandEvent& event );
271 void ShowContactMenu( wxMouseEvent& event );
272 void ProcessMenuItemClick( wxCommandEvent &event );
275 frmMain( wxWindow* parent );
276 int ShowConflictDialog(vCard *LocalObj, vCard *ServerObj);
277 void SetupPointers(void *ActMgr);
279 void ActivityIconStart( wxCommandEvent& event );
280 void ActivityIconShuffle( wxCommandEvent& event );
281 void ActivityIconStop( wxCommandEvent& event );
282 void PauseAllTimers();
283 void ResumeAllTimers();
284 void GetListControl(wxListCtrl *lstContactsPtr, wxArrayString *ContactsFileIndexPtr);
285 void ShowImportResults( wxCommandEvent& event );
286 void ReloadContactList( wxCommandEvent& event );
287 XABViewMode GetViewMode();
288 #if defined(__APPLE__)
289 void UpdateSSLAccountStatus(int AccountID, int SSLStatus, SecTrustRef SecurityTrustObject);
290 #elif defined(__WIN32__)
291 void UpdateSSLAccountStatus(int AccountID, int SSLStatus, PCCERT_CONTEXT CertificateContext);
293 void UpdateSSLAccountStatus(int AccountID, int SSLStatus, SSLCertCollectionString SSLCertInc);
295 DECLARE_EVENT_TABLE()
297 //// end generated class members
301 #endif // __frmMain__