• 大小: 48KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-13
  • 语言: C/C++
  • 标签: VC++  波形显示  

资源简介

基于Vc++实现正弦波形的编辑与显示输出

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “curve_display.h“

#include “MainFrm.h“
#include “curve_displayDoc.h“
#include “curve_displayView.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCurve_displayApp

BEGIN_MESSAGE_MAP(CCurve_displayApp CWinApp)
//{{AFX_MSG_MAP(CCurve_displayApp)
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()

/////////////////////////////////////////////////////////////////////////////
// CCurve_displayApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCurve_displayApp object

CCurve_displayApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCurve_displayApp initialization

BOOL CCurve_displayApp::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(CCurve_displayDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CCurve_displayView));
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 initial

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

     文件      28868  2008-01-05 14:15  复件 curve_display\curve_display.aps

     文件       2331  2008-01-05 20:03  复件 curve_display\curve_display.clw

     文件       4335  2008-01-05 14:10  复件 curve_display\curve_display.cpp

     文件       4835  2008-01-05 20:03  复件 curve_display\curve_display.dsp

     文件        551  2008-01-05 14:10  复件 curve_display\curve_display.dsw

     文件       1433  2008-01-05 14:10  复件 curve_display\curve_display.h

     文件      99328  2008-03-26 17:52  复件 curve_display\curve_display.ncb

     文件      51712  2008-03-26 17:52  复件 curve_display\curve_display.opt

     文件       2473  2008-03-26 17:51  复件 curve_display\curve_display.plg

     文件      10650  2008-01-05 14:10  复件 curve_display\curve_display.rc

     文件       1882  2008-01-05 14:10  复件 curve_display\curve_displayDoc.cpp

     文件       1552  2008-01-05 14:10  复件 curve_display\curve_displayDoc.h

     文件       3456  2008-03-26 17:18  复件 curve_display\curve_displayView.cpp

     文件       2117  2008-03-03 19:25  复件 curve_display\curve_displayView.h

     文件       2514  2008-01-05 14:10  复件 curve_display\MainFrm.cpp

     文件       1581  2008-01-05 14:10  复件 curve_display\MainFrm.h

     文件      15596  2008-03-26 16:44  复件 curve_display\OScopeCtrl.cpp

     文件       1946  2008-03-26 16:44  复件 curve_display\OScopeCtrl.h

     文件       4479  2008-01-05 14:10  复件 curve_display\ReadMe.txt

     文件       1078  2008-01-05 14:10  复件 curve_display\res\curve_display.ico

     文件        405  2008-01-05 14:10  复件 curve_display\res\curve_display.rc2

     文件       1078  2008-01-05 14:10  复件 curve_display\res\curve_displayDoc.ico

     文件       1078  2008-01-05 14:10  复件 curve_display\res\Toolbar.bmp

     文件        501  2008-01-05 14:10  复件 curve_display\Resource.h

     文件        215  2008-01-05 14:10  复件 curve_display\StdAfx.cpp

     文件       1054  2008-01-05 14:10  复件 curve_display\StdAfx.h

     目录          0  2008-03-26 17:52  复件 curve_display\Debug

     目录          0  2008-03-04 16:58  复件 curve_display\res

     目录          0  2008-03-26 17:52  复件 curve_display

----------- ---------  ---------- -----  ----

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

评论

共有 条评论