• 大小: 6.27MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-14
  • 语言: C/C++
  • 标签: 雷达代码  

资源简介

雷达代码 RadarCode

资源截图

代码片段和文件信息

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

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


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

     文件      20023  2012-09-26 11:45  RadarCode\Debug\MainFrm.obj

     文件          0  2012-09-26 11:45  RadarCode\Debug\MainFrm.sbr

     文件    5153792  2012-12-17 21:03  RadarCode\Debug\RadarCode.bsc

     文件     127050  2012-12-17 21:03  RadarCode\Debug\RadarCode.exe

     文件     375228  2012-12-17 21:03  RadarCode\Debug\RadarCode.ilk

     文件      23343  2012-10-01 16:42  RadarCode\Debug\RadarCode.obj

     文件    6869136  2012-09-26 11:45  RadarCode\Debug\RadarCode.pch

     文件     500736  2012-12-17 21:03  RadarCode\Debug\RadarCode.pdb

     文件       7892  2008-11-02 22:35  RadarCode\Debug\RadarCode.res

     文件          0  2012-10-01 16:42  RadarCode\Debug\RadarCode.sbr

     文件      24688  2012-12-17 21:03  RadarCode\Debug\RadarCodeDoc.obj

     文件          0  2012-12-17 21:03  RadarCode\Debug\RadarCodeDoc.sbr

     文件      46299  2012-11-30 14:18  RadarCode\Debug\RadarCodeView.obj

     文件          0  2012-11-30 14:18  RadarCode\Debug\RadarCodeView.sbr

     文件     105734  2012-09-26 11:45  RadarCode\Debug\StdAfx.obj

     文件    1374983  2012-09-26 11:45  RadarCode\Debug\StdAfx.sbr

     文件     222208  2012-12-17 21:03  RadarCode\Debug\vc60.idb

     文件     372736  2012-12-17 21:03  RadarCode\Debug\vc60.pdb

     文件       2510  2007-12-18 14:16  RadarCode\MainFrm.cpp

     文件       1581  2007-12-18 14:16  RadarCode\MainFrm.h

     文件      29396  2012-12-17 21:03  RadarCode\RadarCode.aps

     文件       2562  2012-12-17 21:03  RadarCode\RadarCode.clw

     文件       4304  2007-12-18 14:48  RadarCode\RadarCode.cpp

     文件       4690  2008-11-03 21:38  RadarCode\RadarCode.dsp

     文件        543  2007-12-18 14:16  RadarCode\RadarCode.dsw

     文件       1389  2007-12-18 14:16  RadarCode\RadarCode.h

     文件     222208  2012-12-17 21:03  RadarCode\RadarCode.ncb

     文件     569856  2012-12-17 21:03  RadarCode\RadarCode.opt

     文件        995  2012-12-17 21:03  RadarCode\RadarCode.plg

     文件      12125  2007-12-27 14:56  RadarCode\RadarCode.rc

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

评论

共有 条评论

相关资源