Click here to Skip to main content
15,886,518 members
Articles / Desktop Programming / MFC

Fast screen, window, region and print screen capture

Rate me:
Please Sign up or sign in to vote.
1.39/5 (73 votes)
4 Dec 2002CPOL 336.4K   5K   67  
Screen Snaper is an fast screen, window, region and print screen capture
// SnaperTestDoc.cpp : implementation of the CSnaperTestDoc class
//

#include "stdafx.h"
#include "SnaperTest.h"

#include "SnaperTestDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSnaperTestDoc

IMPLEMENT_DYNCREATE(CSnaperTestDoc, CDocument)

BEGIN_MESSAGE_MAP(CSnaperTestDoc, CDocument)
	//{{AFX_MSG_MAP(CSnaperTestDoc)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CSnaperTestDoc construction/destruction

CSnaperTestDoc::CSnaperTestDoc()
{
    m_hImage = NULL;
    m_Size   = CSize(0, 0);
}

CSnaperTestDoc::~CSnaperTestDoc()
{
    if (m_hImage)
        DeleteObject(m_hImage);

    m_hImage = NULL;
}

BOOL CSnaperTestDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CSnaperTestDoc serialization

void CSnaperTestDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CSnaperTestDoc diagnostics

#ifdef _DEBUG
void CSnaperTestDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CSnaperTestDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CSnaperTestDoc commands

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO
Canada Canada

Comments and Discussions