• 大小: 2.06MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-19
  • 语言: C/C++
  • 标签:

资源简介

此程序是一个简单的改进的有效边表算法的VC++6.0实现的源代码,但文档程序!!!

资源截图

代码片段和文件信息

// MainFrm.cpp : implementation of the CMainframe class
//

#include “stdafx.h“
#include “RegionFill.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


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      20069  2010-12-20 17:02  RegionFill\Debug\MainFrm.obj

     文件     122967  2010-12-20 17:08  RegionFill\Debug\RegionFill.exe

     文件     336708  2010-12-20 17:08  RegionFill\Debug\RegionFill.ilk

     文件      23334  2010-12-20 17:02  RegionFill\Debug\RegionFill.obj

     文件      43520  2010-12-06 20:11  RegionFill\Debug\RegionFill.opt

     文件    5499744  2010-12-20 17:02  RegionFill\Debug\RegionFill.pch

     文件     435200  2010-12-20 17:08  RegionFill\Debug\RegionFill.pdb

     文件       7384  2010-12-20 17:02  RegionFill\Debug\RegionFill.res

     文件       2560  2010-12-19 22:06  RegionFill\Debug\RegionFill.suo

     文件      15066  2010-12-20 17:02  RegionFill\Debug\RegionFillDoc.obj

     文件      31995  2010-12-20 17:08  RegionFill\Debug\RegionFillView.obj

     文件     106069  2010-12-20 17:02  RegionFill\Debug\StdAfx.obj

     文件     214016  2010-12-20 17:08  RegionFill\Debug\vc60.idb

     文件     364544  2010-12-20 17:08  RegionFill\Debug\vc60.pdb

     文件       2511  2010-12-06 18:38  RegionFill\MainFrm.cpp

     文件       1581  2010-12-06 18:38  RegionFill\MainFrm.h

     文件       4407  2010-12-06 18:38  RegionFill\ReadMe.txt

     文件      29052  2010-12-19 20:53  RegionFill\RegionFill.aps

     文件       2391  2010-12-20 17:43  RegionFill\RegionFill.clw

     文件       4281  2010-12-06 18:38  RegionFill\RegionFill.cpp

     文件        652  2010-12-20 17:43  RegionFill\RegionFill.dep

     文件       4664  2010-12-20 17:43  RegionFill\RegionFill.dsp

     文件        543  2010-12-06 18:38  RegionFill\RegionFill.dsw

     文件       1400  2010-12-06 18:38  RegionFill\RegionFill.h

     文件       6043  2010-12-20 17:43  RegionFill\RegionFill.mak

     文件     115712  2010-12-20 17:43  RegionFill\RegionFill.ncb

     文件     658944  2010-12-20 17:43  RegionFill\RegionFill.opt

     文件       1195  2010-12-20 17:08  RegionFill\RegionFill.plg

     文件      11783  2010-12-06 18:38  RegionFill\RegionFill.rc

     文件       1822  2010-12-06 18:38  RegionFill\RegionFillDoc.cpp

............此处省略16个文件信息

评论

共有 条评论

相关资源