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

📄 librarymanagerview.cpp

📁 图书管管理 功能强劲
💻 CPP
字号:
// librarymanagerView.cpp : implementation of the CLibrarymanagerView class
//

#include "stdafx.h"
#include "librarymanager.h"

#include "librarymanagerSet.h"
#include "librarymanagerDoc.h"
#include "librarymanagerView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CLibrarymanagerView

IMPLEMENT_DYNCREATE(CLibrarymanagerView, CRecordView)

BEGIN_MESSAGE_MAP(CLibrarymanagerView, CRecordView)
	//{{AFX_MSG_MAP(CLibrarymanagerView)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CLibrarymanagerView construction/destruction

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

}

CLibrarymanagerView::~CLibrarymanagerView()
{
}

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

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

	return CRecordView::PreCreateWindow(cs);
}

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

}

/////////////////////////////////////////////////////////////////////////////
// CLibrarymanagerView printing

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

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

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

/////////////////////////////////////////////////////////////////////////////
// CLibrarymanagerView diagnostics

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

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

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

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


/////////////////////////////////////////////////////////////////////////////
// CLibrarymanagerView message handlers

⌨️ 快捷键说明

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