Click here to Skip to main content
15,891,936 members
Articles / Desktop Programming / MFC

Double Buffering With GDI+

Rate me:
Please Sign up or sign in to vote.
4.85/5 (23 votes)
11 Feb 20022 min read 241K   4.7K   92  
Simple example about Double Buffering with GDI+
// GDIPlusDoc.cpp : implementation of the CGDIPlusDoc class
//

#include "stdafx.h"
#include "GDIPlus.h"

#include "GDIPlusDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CGDIPlusDoc

IMPLEMENT_DYNCREATE(CGDIPlusDoc, CDocument)

BEGIN_MESSAGE_MAP(CGDIPlusDoc, CDocument)
END_MESSAGE_MAP()


// CGDIPlusDoc construction/destruction

CGDIPlusDoc::CGDIPlusDoc()
{
	// TODO: add one-time construction code here

}

CGDIPlusDoc::~CGDIPlusDoc()
{
}

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

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

	return TRUE;
}




// CGDIPlusDoc serialization

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


// CGDIPlusDoc diagnostics

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

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


// CGDIPlusDoc 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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions