home *** CD-ROM | disk | FTP | other *** search
- // gridfrms.cpp : implementation file
- //
-
- // This is a part of the Objective Grid C++ Library.
- // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
- // All rights reserved.
- //
- // This source code is only intended as a supplement to
- // the Objective Grid Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding
- // the Objective Grid product.
- //
-
- #include "stdafx.h"
- #include "gridfrms.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- IMPLEMENT_DYNCREATE(CSplitterMDIChildWnd, CMDIChildWnd)
-
- #define new DEBUG_NEW
-
- /////////////////////////////////////////////////////////////////////////////
- // CSplitterMDIChildWnd
-
- CSplitterMDIChildWnd::CSplitterMDIChildWnd()
- {
- }
-
- CSplitterMDIChildWnd::~CSplitterMDIChildWnd()
- {
- }
-
- BOOL CSplitterMDIChildWnd::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(CSplitterMDIChildWnd, CMDIChildWnd)
- //{{AFX_MSG_MAP(CSplitterMDIChildWnd)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CSplitterMDIChildWnd message handlers
-