• 大小: 88KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-29
  • 语言: C/C++
  • 标签: vp  mfc  

资源简介

该程序为MFC框架下Vega Prime标准例子,便于初学者学习,也是完整的VP程序框架

资源截图

代码片段和文件信息

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

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


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

     文件       2507  2002-08-05 17:56  vp_mfc\MainFrm.cpp

     文件       1581  2002-05-21 17:16  vp_mfc\MainFrm.h

     文件       6416  2002-08-05 17:56  vp_mfc\readme.html

     文件       1078  2002-06-10 14:09  vp_mfc\res\MFC.ico

     文件        395  2002-06-10 14:09  vp_mfc\res\MFC.rc2

     文件       1078  2002-06-10 14:09  vp_mfc\res\MFCDoc.ico

     文件       1078  2002-06-10 14:09  vp_mfc\res\Toolbar.bmp

    ..A.SH.      6656  2005-10-07 22:30  vp_mfc\res\Thumbs.db

     目录          0  2005-09-09 09:48  vp_mfc\res

     文件        488  2002-05-21 17:16  vp_mfc\Resource.h

     文件        205  2002-05-21 17:16  vp_mfc\StdAfx.cpp

     文件       1054  2002-05-21 17:16  vp_mfc\StdAfx.h

     文件      12171  2002-09-25 09:56  vp_mfc\vp_mfc.acf

     文件       4069  2002-08-05 17:56  vp_mfc\vp_mfc.cpp

     文件       4923  2002-09-13 17:02  vp_mfc\vp_mfc.dsp

     文件        537  2005-09-09 09:38  vp_mfc\vp_mfc.dsw

     文件       1323  2002-08-04 17:36  vp_mfc\vp_mfc.h

     文件      50176  2005-09-09 09:47  vp_mfc\vp_mfc.ncb

     文件      55808  2005-09-09 09:47  vp_mfc\vp_mfc.opt

     文件       2738  2005-09-09 09:39  vp_mfc\vp_mfc.plg

     文件      10357  2002-05-21 17:16  vp_mfc\vp_mfc.rc

     文件     332980  2005-09-09 09:39  vp_mfc\vp_mfcD.ilk

     文件       1688  2002-08-05 17:56  vp_mfc\vp_mfcDoc.cpp

     文件       1442  2002-08-04 17:36  vp_mfc\vp_mfcDoc.h

     文件       6793  2002-09-13 17:02  vp_mfc\vp_mfcView.cpp

     文件       1764  2002-08-04 17:36  vp_mfc\vp_mfcView.h

     目录          0  2005-09-09 09:48  vp_mfc

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

               509523                    28



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

评论

共有 条评论