122 lines
2.6 KiB
C++
122 lines
2.6 KiB
C++
|
||
// MainFrm.cpp: CMainFrame 类的实现
|
||
//
|
||
|
||
#include "pch.h"
|
||
#include "framework.h"
|
||
|
||
#include "MCA.h"
|
||
#include "MainFrm.h"
|
||
|
||
#include "ControlView.h"
|
||
#include "DetailView.h"
|
||
#include "TotalView.h"
|
||
|
||
#ifdef _DEBUG
|
||
#define new DEBUG_NEW
|
||
#endif
|
||
|
||
// CMainFrame
|
||
|
||
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
|
||
|
||
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
|
||
ON_WM_CREATE()
|
||
END_MESSAGE_MAP()
|
||
|
||
static UINT indicators[] =
|
||
{
|
||
ID_SEPARATOR, // 状态行指示器
|
||
ID_INDICATOR_CAPS,
|
||
ID_INDICATOR_NUM,
|
||
ID_INDICATOR_SCRL,
|
||
};
|
||
|
||
// CMainFrame 构造/析构
|
||
|
||
CMainFrame::CMainFrame() noexcept
|
||
{
|
||
// TODO: 在此添加成员初始化代码
|
||
}
|
||
|
||
CMainFrame::~CMainFrame()
|
||
{
|
||
}
|
||
|
||
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
||
{
|
||
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
|
||
return -1;
|
||
|
||
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
|
||
!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
|
||
{
|
||
TRACE0("未能创建工具栏\n");
|
||
return -1; // 未能创建
|
||
}
|
||
|
||
if (!m_wndStatusBar.Create(this))
|
||
{
|
||
TRACE0("未能创建状态栏\n");
|
||
return -1; // 未能创建
|
||
}
|
||
m_wndStatusBar.SetIndicators(indicators, sizeof(indicators)/sizeof(UINT));
|
||
|
||
// TODO: 如果不需要可停靠工具栏,则删除这三行
|
||
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
|
||
EnableDocking(CBRS_ALIGN_ANY);
|
||
DockControlBar(&m_wndToolBar);
|
||
|
||
|
||
return 0;
|
||
}
|
||
|
||
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT /*lpcs*/,
|
||
CCreateContext* pContext)
|
||
{
|
||
// 左右拆分窗口,1行2列
|
||
VERIFY(m_wndSplitter.CreateStatic(this, 1, 2,
|
||
WS_CHILD | WS_VISIBLE, AFX_IDW_PANE_FIRST));
|
||
// 左侧窗口创建视图,第0行第0列
|
||
VERIFY(m_wndSplitter.CreateView(0, 0,
|
||
RUNTIME_CLASS(CControlView), CSize(360, 0), pContext));
|
||
// 右侧窗口上下拆分,2行1列
|
||
VERIFY(m_wndSplitter_2.CreateStatic(&m_wndSplitter, 2, 1,
|
||
WS_CHILD | WS_VISIBLE, m_wndSplitter.IdFromRowCol(0, 1)));
|
||
// 右上窗口创建视图,第0行第0列
|
||
VERIFY(m_wndSplitter_2.CreateView(0, 0,
|
||
RUNTIME_CLASS(CTotalView), CSize(0, 300), pContext));
|
||
// 右下窗口创建视图,第1行第0列
|
||
VERIFY(m_wndSplitter_2.CreateView(1, 0,
|
||
RUNTIME_CLASS(CDetailView), CSize(0, 0), pContext));
|
||
return TRUE;
|
||
}
|
||
|
||
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
|
||
{
|
||
if( !CFrameWnd::PreCreateWindow(cs) )
|
||
return FALSE;
|
||
// TODO: 在此处通过修改
|
||
// CREATESTRUCT cs 来修改窗口类或样式
|
||
|
||
return TRUE;
|
||
}
|
||
|
||
// CMainFrame 诊断
|
||
|
||
#ifdef _DEBUG
|
||
void CMainFrame::AssertValid() const
|
||
{
|
||
CFrameWnd::AssertValid();
|
||
}
|
||
|
||
void CMainFrame::Dump(CDumpContext& dc) const
|
||
{
|
||
CFrameWnd::Dump(dc);
|
||
}
|
||
#endif //_DEBUG
|
||
|
||
|
||
// CMainFrame 消息处理程序
|
||
|