资源简介

VC++ 6.0 线程实现实时动态曲线绘制,数据用随机函数模拟,在工程项目源程序的基础上略加修改而成,有一定实用价值。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “Project.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


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

    .CA....      2508  2010-08-26 20:55  Project\MainFrm.cpp

    .CA....      1581  2010-08-26 20:55  Project\MainFrm.h

    .CA....     44356  2010-09-18 16:54  Project\Project.aps

    .CA....      2504  2010-09-27 14:54  Project\Project.clw

    .CA....      4260  2010-09-17 20:09  Project\Project.cpp

    .CA....      4576  2010-08-26 20:55  Project\Project.dsp

    .CA....       520  2010-08-26 20:55  Project\Project.dsw

    .CA....      1367  2010-08-26 20:55  Project\Project.h

    .CA....     58368  2010-09-27 14:54  Project\Project.ncb

    .CA....    576000  2010-09-27 14:54  Project\Project.opt

    .CA....      1056  2010-09-18 21:10  Project\Project.plg

    .CA....     12067  2010-09-18 16:54  Project\Project.rc

    .CA....      1762  2010-08-26 20:55  Project\ProjectDoc.cpp

    .CA....      1486  2010-08-26 20:55  Project\ProjectDoc.h

    .CA....      9398  2010-09-18 21:10  Project\ProjectView.cpp

    .CA....      2131  2010-08-28 06:27  Project\ProjectView.h

    .CA....      4335  2010-08-26 20:55  Project\ReadMe.txt

    .CA....      1078  2010-08-26 20:55  Project\res\Project.ico

    .CA....       399  2010-08-26 20:55  Project\res\Project.rc2

    .CA....      1078  2010-08-26 20:55  Project\res\ProjectDoc.ico

    .CA....      1078  2010-08-26 20:55  Project\res\Toolbar.bmp

    .CA....       826  2010-08-26 21:15  Project\resource.h

    .CA....       209  2010-08-26 20:55  Project\StdAfx.cpp

    .CA....      1054  2010-08-26 20:55  Project\StdAfx.h

    .C.D...         0  2010-08-26 20:55  Project\res

    .C.D...         0  2010-09-27 14:54  Project

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

               733997                    26


评论

共有 条评论