资源简介
关于扫描线填充和种子填充、以及多边形种子填充
代码片段和文件信息
// MainFrm.cpp : CMainframe 类的实现
//
#include “stdafx.h“
#include “Polygon.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 消息处理程序
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-06-03 11:31 Polygon\
目录 0 2013-06-03 11:30 Polygon\Debug\
文件 173568 2013-06-03 17:08 Polygon\Debug\Polygon.exe
文件 1497776 2013-06-03 17:08 Polygon\Debug\Polygon.ilk
文件 3746816 2013-06-03 17:08 Polygon\Debug\Polygon.pdb
目录 0 2013-06-03 17:06 Polygon\Polygon\
目录 0 2013-06-03 17:08 Polygon\Polygon\Debug\
文件 5916 2013-06-03 17:08 Polygon\Polygon\Debug\BuildLog.htm
文件 35166 2013-06-03 11:11 Polygon\Polygon\Debug\MainFrm.obj
文件 1196 2013-06-03 11:00 Polygon\Polygon\Debug\Polygon.exe.em
文件 1260 2013-06-03 11:01 Polygon\Polygon\Debug\Polygon.exe.em
文件 1120 2013-06-03 17:08 Polygon\Polygon\Debug\Polygon.exe.intermediate.manifest
文件 37189 2013-06-03 16:11 Polygon\Polygon\Debug\Polygon.obj
文件 25034752 2013-06-03 11:11 Polygon\Polygon\Debug\Polygon.pch
文件 28284 2013-06-03 11:03 Polygon\Polygon\Debug\Polygon.res
文件 22236 2013-06-03 11:11 Polygon\Polygon\Debug\PolygonDoc.obj
文件 17895 2013-06-03 14:52 Polygon\Polygon\Debug\PolygonFillingLine.obj
文件 176215 2013-06-03 17:07 Polygon\Polygon\Debug\PolygonView.obj
文件 65 2013-06-03 17:08 Polygon\Polygon\Debug\mt.dep
文件 464826 2013-06-03 11:11 Polygon\Polygon\Debug\stdafx.obj
文件 936960 2013-06-03 17:07 Polygon\Polygon\Debug\vc90.idb
文件 2060288 2013-06-03 17:07 Polygon\Polygon\Debug\vc90.pdb
文件 1797 2013-06-03 10:20 Polygon\Polygon\MainFrm.cpp
文件 655 2013-06-03 10:20 Polygon\Polygon\MainFrm.h
文件 67876 2013-06-03 11:03 Polygon\Polygon\Polygon.aps
文件 3263 2013-06-03 10:20 Polygon\Polygon\Polygon.cpp
文件 473 2013-06-03 10:20 Polygon\Polygon\Polygon.h
文件 11803 2013-06-03 11:03 Polygon\Polygon\Polygon.rc
文件 6021 2013-06-03 11:11 Polygon\Polygon\Polygon.vcproj
文件 1427 2013-06-03 18:16 Polygon\Polygon\Polygon.vcproj.WIN-ROOE754EI4D.Administrator.user
文件 1033 2013-06-03 10:20 Polygon\Polygon\PolygonDoc.cpp
............此处省略19个文件信息
- 上一篇:Z-STACK 各种传感器采集程序
- 下一篇:贝叶斯网引论高清收藏
评论
共有 条评论