forked from Travis-Sun/pywin32
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpythonRichEdit.h
More file actions
47 lines (38 loc) · 1.18 KB
/
pythonRichEdit.h
File metadata and controls
47 lines (38 loc) · 1.18 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
47
// pythonRichEdit.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPythonRichEditView window
class CPythonRichEditView : public CRichEditView
{
// Construction
public:
CPythonRichEditView();
// Attributes
public:
// Operations
public:
void SetDocument( CDocument *pDocument ) {m_pDocument = pDocument;}
// Overrides
virtual void OnInitialUpdate();
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CPythonRichEditView)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CPythonRichEditView();
// Generated message map functions
protected:
#ifdef _DEBUG
void CPythonRichEditView::Dump( CDumpContext &dc ) const;
#endif
//{{AFX_MSG(CPythonRichEditView)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
virtual BOOL OnCmdMsg( UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO*pHandlerInfo );
virtual BOOL OnNotify (WPARAM wParam, LPARAM lParam, LRESULT *pResult);
#ifdef PYWIN_WITH_WINDOWPROC
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
#endif
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////