• 大小: 3.86MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-05
  • 语言: C/C++
  • 标签:

资源简介

用VC++写的,能通过编译,音频编辑运行后打开一个Wave声音文件,可以看到声音形成的波形,并且可以去编辑

资源截图

代码片段和文件信息

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

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

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

     文件      10460  2009-09-07 17:06  读取wave文件\Debug\WProc.res

     文件     238592  2009-09-08 10:35  读取wave文件\Debug\vc60.idb

     文件    6880964  2009-09-07 17:06  读取wave文件\Debug\WProc.pch

     文件     389120  2009-09-08 10:35  读取wave文件\Debug\vc60.pdb

     文件    1375082  2009-09-07 17:06  读取wave文件\Debug\StdAfx.sbr

     文件     106089  2009-09-07 17:06  读取wave文件\Debug\StdAfx.obj

     文件          0  2009-09-07 17:06  读取wave文件\Debug\MainFrm.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\SetFilesDlg.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\WProc.sbr

     文件          0  2009-09-08 10:35  读取wave文件\Debug\WProcDoc.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\WProcView.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\WaveFile.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\WavePlay.sbr

     文件          0  2009-09-07 17:06  读取wave文件\Debug\WaveView.sbr

     文件      99230  2009-09-07 17:06  读取wave文件\Debug\WaveView.obj

     文件      21117  2009-09-07 17:06  读取wave文件\Debug\WavePlay.obj

     文件      41129  2009-09-07 17:06  读取wave文件\Debug\WaveFile.obj

     文件      50660  2009-09-07 17:06  读取wave文件\Debug\WProcView.obj

     文件      28093  2009-09-07 17:06  读取wave文件\Debug\WProc.obj

     文件      24404  2009-09-07 17:06  读取wave文件\Debug\SetFilesDlg.obj

     文件      20410  2009-09-07 17:06  读取wave文件\Debug\MainFrm.obj

     文件     474996  2009-09-08 10:35  读取wave文件\Debug\WProc.ilk

     文件     172135  2009-09-08 10:35  读取wave文件\Debug\WProc.exe

     文件     574464  2009-09-08 10:35  读取wave文件\Debug\WProc.pdb

     文件    5293056  2009-09-08 10:35  读取wave文件\Debug\WProc.bsc

     文件      14835  2009-09-08 10:35  读取wave文件\Debug\WProcDoc.obj

     文件       2518  2004-04-22 09:05  读取wave文件\res\Toolbar.bmp

     文件       3638  2004-04-22 09:05  读取wave文件\res\WProc.ico

     文件       1078  2004-04-22 09:05  读取wave文件\res\WProcDoc.ico

     文件       2109  2004-04-22 09:05  读取wave文件\wave\Define.h

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

评论

共有 条评论

相关资源