forked from Travis-Sun/pywin32
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpythonpsheet.h
More file actions
46 lines (40 loc) · 1.58 KB
/
Copy pathpythonpsheet.h
File metadata and controls
46 lines (40 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// pythonpsheet.h : header file
//
#ifndef __PYTHONPSHEET_H__
#define __PYTHONPSHEET_H__
/////////////////////////////////////////////////////////////////////////////
// CPythonPropertySheet
class CPythonPropertySheet : public CPythonPropertySheetFramework<CPropertySheet>
{
DECLARE_DYNAMIC(CPythonPropertySheet)
// Construction
public:
CPythonPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0) :
CPythonPropertySheetFramework<CPropertySheet>(nIDCaption, pParentWnd, iSelectPage) {;}
CPythonPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0) :
CPythonPropertySheetFramework<CPropertySheet>(pszCaption, pParentWnd, iSelectPage) {;}
virtual BOOL OnInitDialog();
virtual ~CPythonPropertySheet();
virtual void PostNcDestroy(void);
virtual BOOL OnCmdMsg (UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO*pHandlerInfo);
virtual BOOL OnNotify (WPARAM wParam, LPARAM lParam, LRESULT *pResult);
virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
// Generated message map functions
protected:
CFont m_fntPage;
RECT m_rctPage;
BOOL m_customizeFont;
virtual void BuildPropPageArray ();
//{{AFX_MSG(CPythonPropertySheet)
// NOTE - the ClassWizard will add and remove member functions here.
afx_msg void OnClose();
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
//}}AFX_MSG
afx_msg LRESULT OnResizePage (WPARAM, LPARAM);
DECLARE_MESSAGE_MAP()
#ifdef _DEBUG
virtual void Dump( CDumpContext &dc ) const;
#endif
};
#endif // __filename_h__
/////////////////////////////////////////////////////////////////////////////