• 大小: 1.83MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-01
  • 语言: C/C++
  • 标签: c++  MFC  绘图  

资源简介

这里面是一个使用vc++6.0MFC编写的鼠标绘图程序,可以跟踪鼠标轨迹,做出图像。压缩包含有工程所有文件,能够成功运行。注意:仅适合初学者!老鸟无视!

资源截图

代码片段和文件信息

// Chap5A.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Chap5A.h“

#include “MainFrm.h“
#include “Chap5ADoc.h“
#include “Chap5AView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CChap5AApp

BEGIN_MESSAGE_MAP(CChap5AApp CWinApp)
//{{AFX_MSG_MAP(CChap5AApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChap5AApp construction

CChap5AApp::CChap5AApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CChap5AApp object

CChap5AApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CChap5AApp initialization

BOOL CChap5AApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

LoadStdProfileSettings();  // Load standard INI file options (including MRU)

// Register the application‘s document templates.  Document templates
//  serve as the connection between documents frame windows and views.

CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CChap5ADoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CChap5AView));
AddDocTemplate(pDocTemplate);

// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);

// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;

// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();

return TRUE;

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

     文件       2252  2011-08-11 16:51  Chap5A\Chap5A.clw

     文件       4311  2011-08-11 16:42  Chap5A\ReadMe.txt

     文件       1356  2011-08-11 16:42  Chap5A\Chap5A.h

     文件       4209  2011-08-11 16:42  Chap5A\Chap5A.cpp

     文件       1054  2011-08-11 16:42  Chap5A\StdAfx.h

     文件        208  2011-08-11 16:42  Chap5A\StdAfx.cpp

     文件       1581  2011-08-11 16:42  Chap5A\MainFrm.h

     文件       2507  2011-08-11 16:42  Chap5A\MainFrm.cpp

     文件       1475  2011-08-11 16:42  Chap5A\Chap5ADoc.h

     文件       1742  2011-08-11 16:42  Chap5A\Chap5ADoc.cpp

     文件        398  2011-08-11 16:42  Chap5A\res\Chap5A.rc2

     文件       1078  2011-08-11 16:42  Chap5A\res\Chap5ADoc.ico

     文件       1078  2011-08-11 16:42  Chap5A\res\Chap5A.ico

     文件       1078  2011-08-11 16:42  Chap5A\res\Toolbar.bmp

     文件        494  2011-08-11 16:42  Chap5A\Resource.h

     文件      10553  2011-08-11 16:42  Chap5A\Chap5A.rc

     文件       4555  2011-08-11 16:42  Chap5A\Chap5A.dsp

     文件        520  2011-08-11 16:42  Chap5A\Chap5A.dsw

     文件      50176  2011-08-11 17:24  Chap5A\Chap5A.ncb

     文件       7276  2011-08-11 16:57  Chap5A\Debug\Chap5A.res

     文件     197632  2011-08-11 17:01  Chap5A\Debug\vc60.idb

     文件    5498748  2011-08-11 16:57  Chap5A\Debug\Chap5A.pch

     文件     364544  2011-08-11 17:01  Chap5A\Debug\vc60.pdb

     文件     105450  2011-08-11 16:57  Chap5A\Debug\StdAfx.obj

     文件      14539  2011-08-11 16:57  Chap5A\Debug\Chap5ADoc.obj

     文件      19739  2011-08-11 16:57  Chap5A\Debug\MainFrm.obj

     文件      22766  2011-08-11 16:57  Chap5A\Debug\Chap5A.obj

     文件      22301  2011-08-11 17:01  Chap5A\Debug\Chap5AView.obj

     文件     304868  2011-08-11 17:01  Chap5A\Debug\Chap5A.ilk

     文件     118854  2011-08-11 17:01  Chap5A\Debug\Chap5A.exe

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

评论

共有 条评论