• 大小: 15.5MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-06-18
  • 语言: C/C++
  • 标签: C++  

资源简介

计算机图形学图形剪裁与变换算法在MFC工程中的实现

资源截图

代码片段和文件信息

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

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




 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-04-07 22:22  计算机图形学 图形剪裁与变换\
     文件        2369  2010-09-08 09:53  计算机图形学 图形剪裁与变换\MainFrm.cpp
     文件        1478  2010-09-08 09:53  计算机图形学 图形剪裁与变换\MainFrm.h
     文件        4463  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Picdlg.cpp
     文件        1704  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Picdlg.h
     文件         517  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Point.cpp
     文件         504  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Point.h
     文件         519  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Point1.cpp
     文件         508  2010-09-08 09:53  计算机图形学 图形剪裁与变换\Point1.h
     文件        4263  2010-09-08 09:53  计算机图形学 图形剪裁与变换\ReadMe.txt
     目录           0  2016-11-24 20:57  计算机图形学 图形剪裁与变换\res\
     文件        2618  2016-11-24 20:54  计算机图形学 图形剪裁与变换\resource.h
     文件       10134  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\app.ico
     文件         766  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\down.ico
     文件         766  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\draw.ico
     文件        3638  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Essential File.ico
     文件        4710  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\exit.ico
     文件        3638  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Help.ico
     文件        3638  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Important Files.ico
     文件      202556  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\kld.bmp
     文件         766  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\left.ico
     文件        3638  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Recycle Red.ico
     文件         766  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\right.ico
     文件        1078  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Test.ico
     文件         396  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Test.rc2
     文件        1078  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\TestDoc.ico
     文件       44544  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\Thumbs.db
     文件        9846  2016-11-24 20:54  计算机图形学 图形剪裁与变换\res\Toolbar.bmp
     文件         766  2010-09-08 09:53  计算机图形学 图形剪裁与变换\res\up.ico
     文件         206  2010-09-08 09:53  计算机图形学 图形剪裁与变换\StdAfx.cpp
     文件        1054  2010-09-08 09:53  计算机图形学 图形剪裁与变换\StdAfx.h
............此处省略20个文件信息

评论

共有 条评论