• 大小: 2.42M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-09
  • 语言: 其他
  • 标签: 其他  

资源简介

5.3复合旋转变换.zip

资源截图

代码片段和文件信息

// 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-11-17 22:34  5.3复合旋转变换\
     目录           0  2017-11-17 22:33  5.3复合旋转变换\Debug\
     文件       19845  2017-11-17 22:33  5.3复合旋转变换\Debug\MainFrm.obj
     文件      105629  2017-11-17 22:33  5.3复合旋转变换\Debug\StdAfx.obj
     文件      618554  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.exe
     文件      332356  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.ilk
     文件       23053  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.obj
     文件     5634456  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.pch
     文件      336896  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.pdb
     文件      421512  2017-11-17 22:33  5.3复合旋转变换\Debug\Test.res
     文件       14548  2017-11-17 22:33  5.3复合旋转变换\Debug\TestDoc.obj
     文件       33552  2017-11-17 22:33  5.3复合旋转变换\Debug\TestView.obj
     文件      214016  2017-11-17 22:33  5.3复合旋转变换\Debug\vc60.idb
     文件      364544  2017-11-17 22:33  5.3复合旋转变换\Debug\vc60.pdb
     文件        2505  2003-06-30 08:36  5.3复合旋转变换\MainFrm.cpp
     文件        1581  2003-06-30 08:36  5.3复合旋转变换\MainFrm.h
     文件        4263  2003-06-30 08:36  5.3复合旋转变换\ReadMe.txt
     文件         206  2003-06-30 08:36  5.3复合旋转变换\StdAfx.cpp
     文件        1054  2003-06-30 08:36  5.3复合旋转变换\StdAfx.h
     文件      444060  2017-11-17 22:33  5.3复合旋转变换\Test.aps
     文件        1708  2017-11-17 22:34  5.3复合旋转变换\Test.clw
     文件        4226  2009-04-24 06:19  5.3复合旋转变换\Test.cpp
     文件        4902  2012-04-25 16:55  5.3复合旋转变换\Test.dsp
     文件         531  2003-06-30 08:36  5.3复合旋转变换\Test.dsw
     文件        1334  2003-06-30 08:36  5.3复合旋转变换\Test.h
     文件      320512  2017-11-17 22:34  5.3复合旋转变换\Test.ncb
     文件       51712  2017-11-17 22:34  5.3复合旋转变换\Test.opt
     文件        1868  2017-11-17 22:33  5.3复合旋转变换\Test.plg
     文件       10909  2012-04-25 16:55  5.3复合旋转变换\Test.rc
     文件        1702  2003-06-30 08:36  5.3复合旋转变换\TestDoc.cpp
     文件        1453  2003-06-30 08:36  5.3复合旋转变换\TestDoc.h
............此处省略15个文件信息

评论

共有 条评论