123456789101112131415161718192021222324252627 |
- // MySplitterWnd.h: interface for the MySplitterWnd class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_MYSPLITTERWND_H__540435D8_BD53_4E3B_921D_7707FDA82765__INCLUDED_)
- #define AFX_MYSPLITTERWND_H__540435D8_BD53_4E3B_921D_7707FDA82765__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- class MySplitterWnd : public CSplitterWnd
- {
- public:
- MySplitterWnd();
- virtual ~MySplitterWnd();
- // Generated message map functions
- protected:
- DECLARE_DYNCREATE(MySplitterWnd)
- //{{AFX_MSG(CMainFrame)
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #endif // !defined(AFX_MYSPLITTERWND_H__540435D8_BD53_4E3B_921D_7707FDA82765__INCLUDED_)
|