MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / CCryptPropertySheet

Class CCryptPropertySheet

cppcryptfs/ui/CryptPropertySheet.h:35–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33// CryptPropertySheet
34
35class CCryptPropertySheet : public CPropertySheet
36{
37 DECLARE_DYNAMIC(CCryptPropertySheet)
38
39public:
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
58protected:
59 DECLARE_MESSAGE_MAP()
60
61 static UINT WM_TASKBARCREATED;
62 afx_msg LRESULT OnTaskbarCreated(WPARAM wParam, LPARAM lParam);
63public:
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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected