资源简介
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)
// 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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-25 23:19 立方体的绘制与消隐\
文件 2505 2006-11-30 11:00 立方体的绘制与消隐\MainFrm.cpp
文件 1581 2006-11-30 11:00 立方体的绘制与消隐\MainFrm.h
文件 4263 2006-11-30 11:00 立方体的绘制与消隐\ReadMe.txt
文件 206 2006-11-30 11:00 立方体的绘制与消隐\StdAfx.cpp
文件 1054 2006-11-30 11:00 立方体的绘制与消隐\StdAfx.h
文件 270204 2017-04-28 15:44 立方体的绘制与消隐\Test.aps
文件 1754 2017-04-28 15:50 立方体的绘制与消隐\Test.clw
文件 4234 2017-04-28 16:10 立方体的绘制与消隐\Test.cpp
文件 5037 2007-10-01 18:25 立方体的绘制与消隐\Test.dsp
文件 531 2006-11-30 11:08 立方体的绘制与消隐\Test.dsw
文件 1334 2006-11-30 11:00 立方体的绘制与消隐\Test.h
文件 287744 2017-05-17 09:14 立方体的绘制与消隐\Test.ncb
文件 48640 2017-05-17 09:14 立方体的绘制与消隐\Test.opt
文件 1156 2017-05-17 09:13 立方体的绘制与消隐\Test.plg
文件 11066 2017-04-28 15:44 立方体的绘制与消隐\Test.rc
文件 1702 2006-11-30 11:00 立方体的绘制与消隐\TestDoc.cpp
文件 1453 2006-11-30 11:00 立方体的绘制与消隐\TestDoc.h
文件 7726 2017-04-28 16:11 立方体的绘制与消隐\TestView.cpp
文件 2770 2002-01-01 18:37 立方体的绘制与消隐\TestView.h
目录 0 2017-05-25 23:18 立方体的绘制与消隐\res\
文件 1078 2007-10-01 18:11 立方体的绘制与消隐\res\Diamond.ico
文件 3638 2006-11-30 11:06 立方体的绘制与消隐\res\Help.ico
文件 1078 2006-12-01 08:47 立方体的绘制与消隐\res\Test.ico
文件 396 2006-11-30 11:00 立方体的绘制与消隐\res\Test.rc2
文件 1078 2006-11-30 11:00 立方体的绘制与消隐\res\TestDoc.ico
文件 26624 2007-10-27 18:28 立方体的绘制与消隐\res\Thumbs.db
文件 2166 2007-10-01 18:11 立方体的绘制与消隐\res\Toolbar.bmp
文件 10134 2006-11-30 11:06 立方体的绘制与消隐\res\app.ico
文件 766 2006-11-30 11:06 立方体的绘制与消隐\res\draw.ico
文件 4710 2006-11-30 11:06 立方体的绘制与消隐\res\exit.ico
............此处省略2个文件信息
相关资源
- 球的绘制与消隐
- 计算机图形学教程第二版实验生成“
- 计算机图形学图形的区域填充
- 计算机图形学正十二面体旋转
- 计算机图形学消隐实验转
- 计算机图形学实验报告
- 计算机图形学,实现茶壶旋转,颜色
- VC++计算机图形学制作二维图形变换代
- 计算机图形学作业原创C/C++ VC++6.0,
- VC++6.0编写的画图软件
- 计算机图形学MFC
- 计算机图形学大作业 用vc++编的,包括
- 计算机图形学动态图形源代码
- 计算机图形学作业源程序
- 计算机图形学三维变换
- 计算机图形学大实验直线DDA和bresenh
- 计算机图形学 OPENGL 多边形填充 有序
- 计算机图形学扫描线填充算法
- Koch曲线算法 计算机图形学 孔令德 案
- 计算机图形学旋转茶壶
- 计算机图形学实验 绘制渐变三角形
- 计算机图形学实验——科赫雪花
- C语言 种子填充 计算机图形学
- 计算机图形学课程设计源代码
- c++ OpenGL DDA/Bresenham 算法画直线, 多
- 计算机图形学-简单的会动机器人
- 计算机图形学3d图形——茶壶含花纹,
评论
共有 条评论