资源简介
内蒙古大学计算机学院,计算机图形学作业——画图工具的实现
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “MyPaint.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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6762 2011-05-29 10:56 MyPaint_12345\MyPaint_12345\1.txt
文件 616 2011-06-16 16:27 MyPaint_12345\MyPaint_12345\a.txt
文件 2187 2011-06-03 16:45 MyPaint_12345\MyPaint_12345\aaa.txt
文件 1292 2011-06-13 21:34 MyPaint_12345\MyPaint_12345\b.txt
文件 67 2011-05-26 23:30 MyPaint_12345\MyPaint_12345\c.txt
文件 19711 2011-05-23 13:15 MyPaint_12345\MyPaint_12345\Debug\MainFrm.obj
文件 159851 2011-06-23 08:32 MyPaint_12345\MyPaint_12345\Debug\MyPaint.exe
文件 612724 2011-06-23 08:32 MyPaint_12345\MyPaint_12345\Debug\MyPaint.ilk
文件 35941 2011-05-27 10:30 MyPaint_12345\MyPaint_12345\Debug\MyPaint.obj
文件 5507044 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\Debug\MyPaint.pch
文件 664576 2011-06-23 08:32 MyPaint_12345\MyPaint_12345\Debug\MyPaint.pdb
文件 8612 2011-06-17 15:41 MyPaint_12345\MyPaint_12345\Debug\MyPaint.res
文件 11264 2011-06-16 15:33 MyPaint_12345\MyPaint_12345\Debug\MyPaint.suo
文件 62533 2011-05-26 23:30 MyPaint_12345\MyPaint_12345\Debug\MyPaintDoc.obj
文件 157419 2011-06-23 08:31 MyPaint_12345\MyPaint_12345\Debug\MyPaintView.obj
文件 10482 2011-05-27 11:01 MyPaint_12345\MyPaint_12345\Debug\Set_Line_TWDlg.obj
文件 105442 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\Debug\StdAfx.obj
文件 467968 2011-06-23 08:32 MyPaint_12345\MyPaint_12345\Debug\vc60.idb
文件 552960 2011-06-23 08:30 MyPaint_12345\MyPaint_12345\Debug\vc60.pdb
文件 2368 2011-05-23 13:14 MyPaint_12345\MyPaint_12345\MainFrm.cpp
文件 1440 2011-05-23 13:14 MyPaint_12345\MyPaint_12345\MainFrm.h
文件 0 2011-05-25 13:00 MyPaint_12345\MyPaint_12345\MFC12C.tmp
文件 0 2011-05-25 21:19 MyPaint_12345\MyPaint_12345\MFCCA.tmp
文件 0 2011-05-25 21:23 MyPaint_12345\MyPaint_12345\MFCDE.tmp
文件 31984 2011-06-23 08:01 MyPaint_12345\MyPaint_12345\MyPaint.aps
文件 3477 2011-06-23 08:01 MyPaint_12345\MyPaint_12345\MyPaint.clw
文件 4227 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\MyPaint.cpp
文件 4576 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\MyPaint.dsp
文件 522 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\MyPaint.dsw
文件 1367 2011-05-23 12:37 MyPaint_12345\MyPaint_12345\MyPaint.h
............此处省略30个文件信息
评论
共有 条评论