⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lib_sysview.cpp

📁 图书馆管理系统c++完成版
💻 CPP
字号:
// Lib_SysView.cpp : implementation of the CLib_SysView class
//

#include "stdafx.h"
#include "Lib_Sys.h"

#include "Lib_SysSet.h"
#include "Lib_SysDoc.h"
#include "Lib_SysView.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CLib_SysView

IMPLEMENT_DYNCREATE(CLib_SysView, CRecordView)

BEGIN_MESSAGE_MAP(CLib_SysView, CRecordView)
	//{{AFX_MSG_MAP(CLib_SysView)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
	// Standard printing commands
	ON_COMMAND(ID_FILE_PRINT, CRecordView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_DIRECT, CRecordView::OnFilePrint)
	ON_COMMAND(ID_FILE_PRINT_PREVIEW, CRecordView::OnFilePrintPreview)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CLib_SysView construction/destruction

CLib_SysView::CLib_SysView()
	: CRecordView(CLib_SysView::IDD)
{
	//{{AFX_DATA_INIT(CLib_SysView)
		// NOTE: the ClassWizard will add member initialization here
	m_pSet = NULL;
	//}}AFX_DATA_INIT
	// TODO: add construction code here

}

CLib_SysView::~CLib_SysView()
{
}

void CLib_SysView::DoDataExchange(CDataExchange* pDX)
{
	CRecordView::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CLib_SysView)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}

BOOL CLib_SysView::PreCreateWindow(CREATESTRUCT& cs)
{
	// TODO: Modify the Window class or styles here by modifying
	//  the CREATESTRUCT cs

	return CRecordView::PreCreateWindow(cs);
}

void CLib_SysView::OnInitialUpdate()
{
	m_pSet = &GetDocument()->m_lib_SysSet;
	CRecordView::OnInitialUpdate();
	GetParentFrame()->RecalcLayout();
	ResizeParentToFit();

}

/////////////////////////////////////////////////////////////////////////////
// CLib_SysView printing

BOOL CLib_SysView::OnPreparePrinting(CPrintInfo* pInfo)
{
	// default preparation
	return DoPreparePrinting(pInfo);
}

void CLib_SysView::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add extra initialization before printing
}

void CLib_SysView::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
	// TODO: add cleanup after printing
}

/////////////////////////////////////////////////////////////////////////////
// CLib_SysView diagnostics

#ifdef _DEBUG
void CLib_SysView::AssertValid() const
{
	CRecordView::AssertValid();
}

void CLib_SysView::Dump(CDumpContext& dc) const
{
	CRecordView::Dump(dc);
}

CLib_SysDoc* CLib_SysView::GetDocument() // non-debug version is inline
{
	ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CLib_SysDoc)));
	return (CLib_SysDoc*)m_pDocument;
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CLib_SysView database support
CRecordset* CLib_SysView::OnGetRecordset()
{
	return m_pSet;
}


/////////////////////////////////////////////////////////////////////////////
// CLib_SysView message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -