1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #if !defined(AFX_MYSPLITTERWND_H__3652275C_0E94_4F77_837E_C232C35C154E__INCLUDED_)
- #define AFX_MYSPLITTERWND_H__3652275C_0E94_4F77_837E_C232C35C154E__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // MySplitterWnd.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CMySplitterWnd frame with splitter
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- class CMySplitterWnd : public CSplitterWnd
- {
- DECLARE_DYNCREATE(CMySplitterWnd)
- public:
- CMySplitterWnd(); // protected constructor used by dynamic creation
- // Operations
- public:
- int m_cx;
- int m_cy;
- void HideSplitter();
- void ShowSplitter();
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMySplitterWnd)
- protected:
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CMySplitterWnd();
- // Generated message map functions
- //{{AFX_MSG(CMySplitterWnd)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_MYSPLITTERWND_H__3652275C_0E94_4F77_837E_C232C35C154E__INCLUDED_)
|