资源简介
在MFC中实现多边形填充算法,输入时只要输入多边形的顶点。
代码片段和文件信息
// MainFrm.cpp : CMainframe 类的实现
//
#include “stdafx.h“
#include “SecondFill.h“
#include “MainFrm.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()
{
// 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) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“未能创建状态栏\n“);
return -1; // 未能创建
}
// TODO: 如果不需要工具栏可停靠,则删除这三行
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
return 0;
}
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 消息处理程序
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 163 2009-11-04 20:50 SecondFill\1.h
文件 6668 2009-11-09 19:30 SecondFill\Debug\BuildLog.htm
文件 33604 2009-11-04 21:01 SecondFill\Debug\MainFrm.obj
文件 67 2009-11-09 19:30 SecondFill\Debug\mt.dep
文件 936 2009-11-04 21:02 SecondFill\Debug\SecondFill.exe.em
文件 1000 2009-11-04 21:02 SecondFill\Debug\SecondFill.exe.em
文件 884 2009-11-09 19:30 SecondFill\Debug\SecondFill.exe.intermediate.manifest
文件 36019 2009-11-05 19:55 SecondFill\Debug\SecondFill.obj
文件 13434880 2009-11-04 21:01 SecondFill\Debug\SecondFill.pch
文件 28248 2009-11-04 21:02 SecondFill\Debug\SecondFill.res
文件 21400 2009-11-04 21:01 SecondFill\Debug\SecondFillDoc.obj
文件 46267 2009-11-09 19:30 SecondFill\Debug\SecondFillView.obj
文件 265314 2009-11-04 21:01 SecondFill\Debug\stdafx.obj
文件 691200 2009-11-09 19:30 SecondFill\Debug\vc80.idb
文件 692224 2009-11-09 19:30 SecondFill\Debug\vc80.pdb
文件 1800 2009-11-04 20:48 SecondFill\MainFrm.cpp
文件 655 2009-11-04 20:48 SecondFill\MainFrm.h
文件 163 2009-11-04 20:52 SecondFill\MyEdge.h
文件 3502 2009-11-04 20:48 SecondFill\ReadMe.txt
文件 6622 2009-11-05 20:18 SecondFill\Release\BuildLog.htm
文件 23286 2009-11-05 19:56 SecondFill\Release\MainFrm.obj
文件 67 2009-11-05 20:18 SecondFill\Release\mt.dep
文件 874 2009-11-05 20:18 SecondFill\Release\SecondFill.exe.intermediate.manifest
文件 29331 2009-11-05 19:56 SecondFill\Release\SecondFill.obj
文件 14352384 2009-11-05 19:56 SecondFill\Release\SecondFill.pch
文件 28248 2009-11-05 19:57 SecondFill\Release\SecondFill.res
文件 17414 2009-11-05 19:56 SecondFill\Release\SecondFillDoc.obj
文件 35762 2009-11-05 20:18 SecondFill\Release\SecondFillView.obj
文件 1923386 2009-11-05 19:56 SecondFill\Release\stdafx.obj
文件 396288 2009-11-05 20:18 SecondFill\Release\vc80.idb
............此处省略25个文件信息
评论
共有 条评论