X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2FfrmMain.h;h=dcc18bbda9f84b87349ad3ac9493d214abb366a2;hp=744bf32b8881fa6ffe7b2eec4ef58a6ef78dc102;hb=32b56fabfeac4fea69986ebf183d5e9564bec040;hpb=700c6a4c98319bc09eeb5c0905a5dafac8aa61cc diff --git a/source/frmMain.h b/source/frmMain.h index 744bf32..dcc18bb 100644 --- a/source/frmMain.h +++ b/source/frmMain.h @@ -47,6 +47,7 @@ Subclass of frmMainADT, which is generated by wxFormBuilder. #include "common/timers.h" #include "common/events.h" #include "common/etag.h" +#include "common/structs.h" #include "bitmaps.h" #include "common/sslcertstructs.h" #include "widgets/XABContactMenu.h" @@ -55,7 +56,6 @@ Subclass of frmMainADT, which is generated by wxFormBuilder. //// end generated include DECLARE_EVENT_TYPE(CE_UPDATECONTACTLIST, wxID_ANY) -DECLARE_EVENT_TYPE(CE_UPDATEACCOUNTLIST, wxID_ANY) DECLARE_EVENT_TYPE(SE_UPDATECONTACTNOTIF, wxID_ANY) DECLARE_EVENT_TYPE(CE_OPENCONTACT, wxID_ANY) DECLARE_EVENT_TYPE(CE_OPENCONTACTLIST, wxID_ANY) @@ -99,11 +99,6 @@ struct SWCloseNotif{ void *SCHWinPtr; }; -struct QRNotif{ - int *QResponse; - bool *PausePtr; -}; - struct XABViewMode{ int SortMode; @@ -130,6 +125,7 @@ class frmMain : public frmMainADT std::map AccountAccDirList; #if defined(__APPLE__) std::map AccountTrustData; + NSRunningApplication *helpBrowserProcess; #elif defined(__WIN32__) std::map AccountCertificateData; #else @@ -152,7 +148,6 @@ class frmMain : public frmMainADT std::map WindowListPointersMenu; std::map WindowListPointers; std::map WindowListType; - //std::map WindowListType; wxMenuItem *mnuContactWindows; wxMenuItem *mnuContactEditorWindows; wxMenuItem *mnuSearchWindows; @@ -160,15 +155,11 @@ class frmMain : public frmMainADT bool RevealWait = FALSE; wxString SessionID; wxString OldSessionID; + wxColour ContactBackgroundColour; wxIcon IconEmp; - //wxIcon Emp; - //wxComboCtrl* AccControl = new wxGenericComboCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize); - //wxComboCtrl* AccControl = new wxComboCtrl(this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxCB_READONLY|wxEXPAND|wxCC_STD_BUTTON); - //wxStaticBitmap* AccIcon = new wxStaticBitmap(this, wxID_ANY, IconEmp, wxDefaultPosition, wxSize(16,16), wxALL|wxEXPAND, wxStaticBitmapNameStr); XABAccountView* treAccounts = new XABAccountView(); wxImageList *AccImgList = new wxImageList(16,16,true); wxImageList *ActMgrImgList = new wxImageList(16,16,true); - //wxIcon wxIAccInet; int AccountID; int AccountNetID; int AccountGrpID; @@ -190,6 +181,12 @@ class frmMain : public frmMainADT wxBitmap *imgSSLWarning = NULL; wxBitmap *imgOnline = NULL; wxBitmap *imgOffline = NULL; + wxBitmap *imgAddAddressBook = NULL; + wxBitmap *imgPreferences = NULL; + wxBitmap *imgSearchContacts = NULL; + wxBitmap *imgAddContact = NULL; + wxBitmap *imgEditContact = NULL; + wxBitmap *imgDeleteContact = NULL; int ActivityIconStatus = 0; int SearchUID = 0; int ContactUID = 0; @@ -200,6 +197,8 @@ class frmMain : public frmMainADT #if defined(__APPLE__) void DisplayCertificate(SecTrustRef SecurityTrustObject); void DisplayTrustPanel( wxCommandEvent& event ); + void DisplayHelpBrowser(); + void TerminateHelpBrowserProcess(); #endif protected: // Handlers for frmMainADT events. @@ -210,7 +209,7 @@ class frmMain : public frmMainADT void OpenPreferences( wxCommandEvent& event ); void OpenNewABDialog( wxCommandEvent& event ); void LoadPreferences( wxActivateEvent& event ); - void LoadPreferences(); + void LoadPreferences(bool skipWindowSizeReload); void ShowContactInfo( wxListEvent& event ); void OpenContactInfoList( wxListEvent& event ); void OpenContactInfoList( wxCommandEvent& event ); @@ -224,7 +223,6 @@ class frmMain : public frmMainADT const std::wstring &name); void ConflictResolution( wxCommandEvent& event ); void UpdateContactList( wxCommandEvent& event ); - void UpdateAccountList( wxCommandEvent& event ); void UpdateSearchContactLists( wxCommandEvent& event ); void OpenFindContactsWindow(wxCommandEvent& event); void RevealContact( wxCommandEvent& event ); @@ -286,6 +284,7 @@ class frmMain : public frmMainADT #else void UpdateSSLAccountStatus(int AccountID, int SSLStatus, SSLCertCollectionString SSLCertInc); #endif + bool CloseAllWindows(); DECLARE_EVENT_TABLE() //// end generated class members