资源简介
种子填充vc++运行环境
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “scanfillig.h“
#include “MainFrm.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainframe
IMPLEMENT_DYNCREATE(CMainframe CframeWnd)
BEGIN_MESSAGE_MAP(CMainframe CframeWnd)
//{{AFX_MSG_MAP(CMainframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR // status line indicator
ID_INDICATOR_CAPS
ID_INDICATOR_NUM
ID_INDICATOR_SCRL
};
/////////////////////////////////////////////////////////////////////////////
// CMainframe construction/destruction
CMainframe::CMainframe()
{
// TODO: add member initialization code here
}
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(“Failed to create toolbar\n“);
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators
sizeof(indicators)/sizeof(UINT)))
{
TRACE0(“Failed to create status bar\n“);
return -1; // fail to create
}
// TODO: Delete these three lines if you don‘t want the toolbar to
// be dockable
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: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CMainframe diagnostics
#ifdef _DEBUG
void CMainframe::AssertValid() const
{
CframeWnd::AssertValid();
}
void CMainframe::Dump(CDumpContext& dc) const
{
CframeWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainframe message handlers
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 7656 2007-12-26 23:03 扫描线种子填充\Debug\BuildLog.htm
文件 34021 2007-12-23 15:45 扫描线种子填充\Debug\MainFrm.obj
文件 67 2007-12-26 23:03 扫描线种子填充\Debug\mt.dep
文件 176128 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.exe
文件 660 2007-12-23 15:45 扫描线种子填充\Debug\scanfillig.exe.em
文件 724 2007-12-23 15:45 扫描线种子填充\Debug\scanfillig.exe.em
文件 625 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.exe.intermediate.manifest
文件 1407668 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.ilk
文件 41796 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.obj
文件 13565952 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.pch
文件 3410944 2007-12-26 23:03 扫描线种子填充\Debug\scanfillig.pdb
文件 7356 2007-12-23 15:45 扫描线种子填充\Debug\scanfillig.res
文件 21982 2007-12-26 23:03 扫描线种子填充\Debug\scanfilligDoc.obj
文件 175169 2007-12-26 23:03 扫描线种子填充\Debug\scanfilligView.obj
文件 332480 2007-12-26 23:03 扫描线种子填充\Debug\StdAfx.obj
文件 1338368 2007-12-26 23:03 扫描线种子填充\Debug\vc80.idb
文件 749568 2007-12-26 23:03 扫描线种子填充\Debug\vc80.pdb
目录 0 2007-12-27 16:48 扫描线种子填充\Debug
文件 2511 2007-12-17 15:03 扫描线种子填充\MainFrm.cpp
文件 1581 2002-10-20 19:31 扫描线种子填充\MainFrm.h
文件 4407 2002-10-20 19:31 扫描线种子填充\ReadMe.txt
文件 1078 2002-10-20 19:31 扫描线种子填充\res\scanfillig.ico
文件 402 2002-10-20 19:31 扫描线种子填充\res\scanfillig.rc2
文件 1078 2002-10-20 19:31 扫描线种子填充\res\scanfilligDoc.ico
文件 1078 2002-10-20 19:31 扫描线种子填充\res\Toolbar.bmp
目录 0 2007-12-27 16:48 扫描线种子填充\res
文件 498 2002-10-20 19:31 扫描线种子填充\Resource.h
文件 28436 2002-10-20 20:44 扫描线种子填充\scanfillig.aps
文件 2250 2002-10-20 20:58 扫描线种子填充\scanfillig.clw
文件 4281 2002-10-20 19:31 扫描线种子填充\scanfillig.cpp
............此处省略23个文件信息
评论
共有 条评论