• 大小: 50KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-10
  • 语言: 其他
  • 标签:

资源简介

自己写的大作业,包含多边形的绘制、填充、几何变换(移动、旋转、缩放、反射),可供参考

资源截图

代码片段和文件信息

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

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

SetWindowLong(m_hWndGWL_styleGetWindowLong(m_hWndGWL_style)&~WS_MAXIMIZEBOX);

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
cs.cx=1200;
cs.cy=800;
cs.style &= ~FWS_ADDTOtitle;
cs.lpszName=“多边形填充变换“;

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



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

     文件       2542  2010-06-17 17:50  pro1\MainFrm.cpp

     文件       1440  2010-06-09 15:07  pro1\MainFrm.h

     文件      31048  2010-07-07 17:11  pro1\pro1.aps

     文件       4210  2010-07-07 17:12  pro1\pro1.clw

     文件       4188  2010-06-09 18:27  pro1\pro1.cpp

     文件       5051  2010-06-11 12:18  pro1\pro1.dsp

     文件        531  2010-03-28 19:54  pro1\pro1.dsw

     文件       1334  2010-03-28 19:54  pro1\pro1.h

     文件      82944  2010-07-07 17:12  pro1\pro1.ncb

     文件      56832  2010-07-07 17:12  pro1\pro1.opt

     文件       1020  2010-06-22 10:06  pro1\pro1.plg

     文件      14980  2010-06-17 18:35  pro1\pro1.rc

     文件       1702  2010-03-28 19:54  pro1\pro1Doc.cpp

     文件       1453  2010-03-28 19:54  pro1\pro1Doc.h

     文件      12792  2010-06-17 18:38  pro1\pro1View.cpp

     文件       2443  2010-06-17 18:18  pro1\pro1View.h

     文件      23306  2010-06-03 12:33  pro1\RCa01376

     文件       4263  2010-03-28 19:54  pro1\ReadMe.txt

     文件       1078  2010-06-17 18:34  pro1\res\pro1.ico

     文件        396  2010-03-28 19:54  pro1\res\pro1.rc2

     文件       1078  2010-03-28 19:54  pro1\res\pro1Doc.ico

     文件       1078  2010-03-28 19:54  pro1\res\Toolbar.bmp

     文件       1984  2010-06-17 17:57  pro1\resource.h

     文件        945  2010-06-09 18:19  pro1\Rotate.cpp

     文件       1176  2010-06-09 18:19  pro1\Rotate.h

     文件        943  2010-06-09 18:04  pro1\Scale.cpp

     文件       1167  2010-06-09 18:04  pro1\Scale.h

     文件        998  2010-03-29 21:59  pro1\Setting.cpp

     文件       1214  2010-03-29 21:59  pro1\Setting.h

     文件        206  2010-03-28 19:54  pro1\StdAfx.cpp

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

评论

共有 条评论