📄 childfrm.cpp
字号:
// ChildFrm.cpp : implementation of the CChildFrame class
//
#include "stdafx.h"
#include "richtest.h"
#include "ChildFrm.h"
#include "richtestView.h"
#include "cadview.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CChildFrame
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
//{{AFX_MSG_MAP(CChildFrame)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CChildFrame construction/destruction
CChildFrame::CChildFrame()
{
// TODO: add member initialization code here
}
CChildFrame::~CChildFrame()
{
}
CSplitterWnd* CChildFrame::getsplitter()
{return &m_wndSplitter2;
}
BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;
cs.style = WS_CHILD | WS_VISIBLE | WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU
| FWS_ADDTOTITLE | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX;
return TRUE;
}
void CChildFrame::ActivateFrame(int nCmdShow)
{
// TODO: Modify this function to change how the frame is activated.
nCmdShow = SW_SHOWMAXIMIZED;
CMDIChildWnd::ActivateFrame(nCmdShow);
}
BOOL CChildFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
BOOL bRet;
//int nRow;
//int nColum;
CRect reClip;
GetClientRect(&reClip);
if(!m_wndSplitter.CreateStatic(this,1,2))
return FALSE;
//bRet=m_wndSplitter.CreateView(0,0,RUNTIME_CLASS(CTestView),CSize(reClip.Width()/2,reClip.Height()),pContext);
m_wndSplitter.SetColumnInfo(0,reClip.Width()/1.6,0);
if(m_wndSplitter2.CreateStatic(&m_wndSplitter,2,1,WS_CHILD|WS_VISIBLE, m_wndSplitter.IdFromRowCol(0, 0))==NULL)
return FALSE;
bRet=m_wndSplitter2.CreateView(0,0,RUNTIME_CLASS(myview),CSize(reClip.Width()/1.6,reClip.Height()/1.3),pContext);
bRet&=m_wndSplitter2.CreateView(1,0,RUNTIME_CLASS(CCadView),CSize(1,1),pContext);
bRet&=m_wndSplitter.CreateView(0,1,RUNTIME_CLASS(CRichtestView),CSize(reClip.Width()/2,reClip.Height()),pContext);
if(bRet==FALSE)
return FALSE;
return TRUE;
//return CMDIChildWnd::OnCreateClient(lpcs, pContext);
}
/////////////////////////////////////////////////////////////////////////////
// CChildFrame diagnostics
#ifdef _DEBUG
void CChildFrame::AssertValid() const
{
CMDIChildWnd::AssertValid();
}
void CChildFrame::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CChildFrame message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -