资源简介
利用C语言编写的读取Segy文件数据的小程序-Using C language to read file data Segy small program
代码片段和文件信息
// MainFrm.cpp : implementation of the CMainframe class
//
#include “stdafx.h“
#include “SegY.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
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2004-08-06 10:03 SegY
文件 2505 2003-11-04 10:59 SegY\MainFrm.cpp
文件 1581 2003-11-04 10:59 SegY\MainFrm.h
文件 41218 2003-11-09 09:47 SegY\ReadHeader.cpp
文件 4690 2003-11-08 16:10 SegY\ReadHeader.h
文件 4263 2003-11-04 10:59 SegY\ReadMe.txt
文件 1351 2003-11-08 10:30 SegY\ReadValueDlg.cpp
文件 1355 2003-11-08 16:18 SegY\ReadValueDlg.h
目录 0 2004-08-06 10:03 SegY\res
文件 1078 2003-11-04 10:59 SegY\res\SegY.ico
文件 396 2003-11-04 10:59 SegY\res\SegY.rc2
文件 1078 2003-11-04 10:59 SegY\res\SegYDoc.ico
文件 1078 2003-11-04 10:59 SegY\res\Toolbar.bmp
文件 1418 2003-11-07 17:07 SegY\Resource.h
文件 45268 2003-11-08 10:18 SegY\SegY.aps
文件 3740 2003-11-08 15:51 SegY\SegY.clw
文件 4140 2003-11-09 12:42 SegY\SegY.cpp
文件 4642 2003-11-08 17:09 SegY\SegY.dsp
文件 531 2003-11-04 10:59 SegY\SegY.dsw
文件 1332 2003-11-08 16:10 SegY\SegY.h
文件 91136 2003-11-09 15:40 SegY\SegY.ncb
文件 58880 2003-11-09 15:40 SegY\SegY.opt
文件 1099 2003-11-09 12:42 SegY\SegY.plg
文件 13677 2003-11-08 10:18 SegY\SegY.rc
文件 1553 2003-11-08 16:10 SegY\SegYDoc.cpp
文件 1511 2003-11-08 16:10 SegY\SegYDoc.h
文件 2502 2003-11-08 16:18 SegY\SegYView.cpp
文件 1746 2003-11-08 16:17 SegY\SegYView.h
文件 206 2003-11-04 10:59 SegY\StdAfx.cpp
文件 1054 2003-11-04 10:59 SegY\StdAfx.h
............此处省略4个文件信息
评论
共有 条评论