home *** CD-ROM | disk | FTP | other *** search
- // mysplit.cpp : implementation file
- //
-
- #include "stdafx.h"
- #include "pad.h"
- #include "mysplit.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CMySplit
-
- IMPLEMENT_DYNCREATE(CMySplit, CMDIChildWnd)
-
- CMySplit::CMySplit()
- {
- }
-
- CMySplit::~CMySplit()
- {
- }
-
- BOOL CMySplit::OnCreateClient(LPCREATESTRUCT /*lpcs*/, CCreateContext* pContext)
- {
- return m_wndSplitter.Create(this,
- 2, 2, // TODO: adjust the number of rows, columns
- CSize(10, 10), // TODO: adjust the minimum pane size
- pContext);
- }
-
- BEGIN_MESSAGE_MAP(CMySplit, CMDIChildWnd)
- //{{AFX_MSG_MAP(CMySplit)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CMySplit message handlers
-
-