Click here to Skip to main content
Licence CPOL
First Posted 3 May 2007
Views 27,301
Downloads 1,305
Bookmarked 39 times

CBufferDC: a simple MFC class for automatic flicker free drawing

By | 3 May 2007 | Article
A CPaintDC replacement for in OnPaint painting. Simply change CPaintDC dc(this) in CBufferDC dc(this), and you're done

Screenshot - shot.jpg

Introduction

When working on my HyperLink control I found the need to do flicker free drawing and I thought about creating a simple class which could do so automatically, with the least amount of code modification possible. So I wrote this little class to accomplish that.

Using the code

Simply replace the declaration of your DC in your OnPaint like so:

From this:

CPaintDC dc(this);

// Your drawing here

To this:

CBufferDC dc(this);

// Your drawing here

And you're done. If you resize the window in the OnPaint after the creation of the CBufferDC, you must remember to call SetBoundsRect with the new client rectangle and with the flags parameter set to DCB_DISABLE if you want to avoid the default behavior of calling this method on a CDC. The reason to use this method and not a custom one is that I wanted my class to be compatible with the CPaintDC one so that someone could simply change the class names to obtain the purpose but could safely return back to the CPaintDC without the need to change his code.

Notes

The code provided within the demo (particularly the CBallBouncer class) is only for demonstrative purposes, and is obviously poorly-written and not reusable. But as I said this is only a demo so I wrote it fast to provide a demonstration in which the functionality of the CBufferDC class (that is, avoid flicker) was clear and nothing more.

Conclusions

So, that's all, I think.

License

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

About the Author

Elia Sarti


Synved Ltd.
Ireland Ireland

Member





Synved : Logos / Designs / Websites / Development / FREE Quote / www.synved.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThis rocks! PinmemberLeslie Sanford18:49 1 Oct '07  
GeneralRe: This rocks! PinmemberGladstone1:34 2 Oct '07  
GeneralEffective & simple PinmvpHans Dietrich23:17 3 May '07  
GeneralRe: Effective & simple PinmemberGladstone0:00 4 May '07  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 3 May 2007
Article Copyright 2007 by Elia Sarti
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid