forked from Travis-Sun/pywin32
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpythonppage.h
More file actions
37 lines (31 loc) · 845 Bytes
/
pythonppage.h
File metadata and controls
37 lines (31 loc) · 845 Bytes
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
// pythonppage.h : header file
//
#ifndef __PYTHONPPAGE_H__
#define __PYTHONPPAGE_H__
// bit of a hack
#ifdef _DEBUG
BOOL AFXAPI _AfxCheckDialogTemplate(LPCTSTR lpszResource,
BOOL bInvisibleChild);
#endif
/////////////////////////////////////////////////////////////////////////////
// CPythonPropertyPage dialog
class CPythonPropertyPage : public CPythonPropertyPageFramework<CPropertyPage>
{
DECLARE_DYNAMIC(CPythonPropertyPage)
protected:
// Support for indirect creation
HGLOBAL hSaved;
// Construction
public:
CPythonPropertyPage(UINT id, UINT caption = 0);
CPythonPropertyPage(LPCTSTR id, UINT caption = 0);
~CPythonPropertyPage();
virtual void PostNcDestroy();
BOOL SetTemplate(HGLOBAL tpl);
private:
void CommonConstruct();
#ifdef _DEBUG
virtual void Dump( CDumpContext &dc ) const;
#endif
};
#endif // __filename_h__