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

📄 usingblobview.cpp

📁 能够在数据库中存取大的二进制块
💻 CPP
字号:
// UsingBlobView.cpp : implementation of the CUsingBlobView class
//

#include "stdafx.h"
#include "UsingBlob.h"

#include "UsingBlobDoc.h"
#include "UsingBlobView.h"

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

/////////////////////////////////////////////////////////////////////////////
// CUsingBlobView

IMPLEMENT_DYNCREATE(CUsingBlobView, CScrollView)

BEGIN_MESSAGE_MAP(CUsingBlobView, CScrollView)
	//{{AFX_MSG_MAP(CUsingBlobView)
		// 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
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CUsingBlobView construction/destruction

CUsingBlobView::CUsingBlobView()
{
	// TODO: add construction code here

}

CUsingBlobView::~CUsingBlobView()
{
}

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

	return CScrollView::PreCreateWindow(cs);
}

/////////////////////////////////////////////////////////////////////////////
// CUsingBlobView drawing

void CUsingBlobView::OnDraw(CDC* pDC)
{
	CUsingBlobDoc* pDoc = GetDocument();
	ASSERT_VALID(pDoc);

    CDC     memDC;

    memDC.CreateCompatibleDC(pDC);
    CBitmap* pImage     = memDC.SelectObject(&pDoc->m_Image);
    CSize    imageSize  = pDoc->m_Image.GetBitmapDimension();

    pDC->BitBlt(0,0,imageSize.cx,imageSize.cy,&memDC,0,0,SRCCOPY);

    memDC.SelectObject(pImage);

}

void CUsingBlobView::OnInitialUpdate()
{
	CScrollView::OnInitialUpdate();

    SetScrollSizes(MM_TEXT,GetDocument()->m_Image.GetBitmapDimension());
}

/////////////////////////////////////////////////////////////////////////////
// CUsingBlobView diagnostics

#ifdef _DEBUG
void CUsingBlobView::AssertValid() const
{
	CScrollView::AssertValid();
}

void CUsingBlobView::Dump(CDumpContext& dc) const
{
	CScrollView::Dump(dc);
}

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

/////////////////////////////////////////////////////////////////////////////
// CUsingBlobView message handlers

⌨️ 快捷键说明

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