| 33 | // CryptPropertySheet |
| 34 | |
| 35 | class CCryptPropertySheet : public CPropertySheet |
| 36 | { |
| 37 | DECLARE_DYNAMIC(CCryptPropertySheet) |
| 38 | |
| 39 | public: |
| 40 | // disallow copying |
| 41 | CCryptPropertySheet(CCryptPropertySheet const&) = delete; |
| 42 | void operator=(CCryptPropertySheet const&) = delete; |
| 43 | |
| 44 | CCryptPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0); |
| 45 | CCryptPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0); |
| 46 | virtual ~CCryptPropertySheet(); |
| 47 | |
| 48 | BOOL CanClose(); |
| 49 | |
| 50 | BOOL m_bHideAfterInit; |
| 51 | |
| 52 | int m_nMountPageIndex; |
| 53 | |
| 54 | HWND m_hSysTrayWnd = NULL; |
| 55 | |
| 56 | bool m_bDoRecreateSysTrayIcon = false; |
| 57 | |
| 58 | protected: |
| 59 | DECLARE_MESSAGE_MAP() |
| 60 | |
| 61 | static UINT WM_TASKBARCREATED; |
| 62 | afx_msg LRESULT OnTaskbarCreated(WPARAM wParam, LPARAM lParam); |
| 63 | public: |
| 64 | virtual BOOL OnInitDialog(); |
| 65 | virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam); |
| 66 | afx_msg BOOL OnNcCreate(LPCREATESTRUCT lpCreateStruct); |
| 67 | afx_msg void OnSysCommand(UINT nID, LPARAM lParam); |
| 68 | afx_msg void OnIdrShowcppcryptfs(); |
| 69 | afx_msg void OnIdrExitcppcryptfs(); |
| 70 | virtual INT_PTR DoModal(); |
| 71 | afx_msg BOOL OnCopyData(CWnd* pWnd, COPYDATASTRUCT* pCopyDataStruct); |
| 72 | afx_msg void OnWindowPosChanging(WINDOWPOS* lpwndpos); |
| 73 | afx_msg BOOL OnDeviceChange(UINT nEventType, DWORD_PTR dwData); |
| 74 | afx_msg void OnEndSession(BOOL bEnding); |
| 75 | afx_msg UINT OnPowerBroadcast(UINT nPowerEvent, LPARAM nEventData); |
| 76 | virtual BOOL PreTranslateMessage(MSG* pMsg); |
| 77 | afx_msg void OnTimer(UINT_PTR nIDEvent); |
| 78 | afx_msg void OnDestroy(); |
| 79 | }; |
| 80 | |
| 81 |
nothing calls this directly
no outgoing calls
no test coverage detected