Click here to Skip to main content
15,881,173 members
Articles / Desktop Programming / WTL
Article

GDI+ Double-Buffering Helper Class

Rate me:
Please Sign up or sign in to vote.
4.40/5 (15 votes)
22 May 20022 min read 146.5K   2.2K   55   18
A templated helper class that performs GDI+ initialization/deinitialization, and takes care of double-buffering/caching

Introduction

(or why did I write this?)

I just got tired of having to do all the silly GDI+ initialization/deinitialization and double-buffering stuff, every time I wanted to use it. Pain in the behindment. So this class basically takes all that work away. All you do is implement a Draw function that takes a Graphics object, and the class does all the other GDI+ related stuff.

Usage

Ok. To use this puppy, all you've got to do is this:

  1. Derive your class from CGdiPlusHelper, and (unless you've got some weird special needs), leave the tUseDoubleBuffering template argument alone. Double buffering REALLY speeds up the drawing speed, and helps eliminate flicker.
  2. Do NOT implement the WM_PAINT message. Instead, implement a function with the following prototype:
    void Draw(Graphics* g, int nWidth, int nHeight);

    This will be your main drawing function. You can use the passed in Graphics object to do all your drawing.

  3. CHAIN_MSG_MAP the CGdiPlusHelper class, preferably as far in front of your MSG_MAP as possible. Oh, if you want to force a redraw on the window, call SetDirty and only then Invalidate. Otherwise, in double-buffered mode, it'll just reuse the same cached bitmap as before.

Note that the header file will automatically link in GdiPlus.lib, include GdiPlus.h, and

using namespace GdiPlus;

it. i.e., You're all set to go to use GDI+ by just including this file.

Requirements

You need to install WTL7 and Microsoft Platform SDK to get WTL (although I THINK you only need it for the demo.) and GDI+.

Version History:

  • 5/23/2002: Original article submission

Credits

Thanks to Alex Farber and his great article, which really contains all the CachedBitmap etc. stuff I used.

I also loosely based the drawing algorithm in the demo on Mazdak's article.

Speaking of Copyright

(you knew it was coming...)

The code is completely, utterly, and absolutely free. Feel free to use it in private or commercial applications, modify it, sit on it, or print it out and use it for toilet paper. God knows I've ignored enough copyrights from CodeProject to have the nerve to make my own. :) One thing though -- if this code messes up your computer or puts your project seven months behind schedule, it's not my fault. None of it is my fault. Not even that "format c:" somewhere in there. Er, just kidding. :) Oh yeah, needless to say, you can't claim this code as your own. (i.e., I'd hate for someone to reprint this code, and copyright the hell out of it. Not sure if that's possible anyhow, but it would suck. Greatly.)

P.S. Probably a pointless thing to say, but if you're going to rate the article badly, at least take the time to write a comment saying how I could improve it, or what you find inadequate about 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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionDeleting all bitmaps on 'SetDirty' ? Pin
Lex19728-Dec-06 13:49
Lex19728-Dec-06 13:49 
GeneralTo avoid flicker try this that will work fine Pin
vmonster27-Jan-05 3:12
vmonster27-Jan-05 3:12 
GeneralRe: To avoid flicker try this that will work fine Pin
vmonster27-Jan-05 4:47
vmonster27-Jan-05 4:47 
GeneralCPU usage Pin
Steve Messer24-May-04 16:17
Steve Messer24-May-04 16:17 
GeneralRe: CPU usage Pin
Nick Z.14-Mar-05 9:36
Nick Z.14-Mar-05 9:36 
GeneralRe: CPU usage Pin
Steve Messer14-Mar-05 9:39
Steve Messer14-Mar-05 9:39 
GeneralRe: CPU usage Pin
Nick Z.14-Mar-05 10:31
Nick Z.14-Mar-05 10:31 
GeneralMFC 6.0 support Pin
kc.5-Aug-03 5:10
kc.5-Aug-03 5:10 
hi
can anybody help me to implement this class in an already existing MFC 6.0 project? i'm not really familiar with ATL/WTL but i don't want to copy all methods and members in every view.

just by including the header into the project, i get this error message:
"syntax error : missing ';' before identifier 'MESSAGE_HANDLER'"

i think this is due to the missing ATL support (which i don't really want)

i'd appriciate any hints...

GeneralRe: MFC 6.0 support Pin
cadinfo2-Sep-03 5:10
cadinfo2-Sep-03 5:10 
GeneralRe: MFC 6.0 support Pin
Craig Muller17-Oct-03 12:25
Craig Muller17-Oct-03 12:25 
AnswerRe: MFC 6.0 support Pin
sevenfish26-Jun-07 15:01
sevenfish26-Jun-07 15:01 
GeneralI still get flicker when I resize window. Pin
robspychala11-Jan-03 13:31
robspychala11-Jan-03 13:31 
GeneralRe: I still get flicker when I resize window. Pin
robspychala13-Jan-03 17:29
robspychala13-Jan-03 17:29 
GeneralRe: I still get flicker when I resize window. Pin
martybeavis5-Nov-03 12:05
martybeavis5-Nov-03 12:05 
Generalnice really, but... Pin
Anonymous30-Oct-02 7:52
Anonymous30-Oct-02 7:52 
GeneralRe: nice really, but... Pin
Eugene Polonsky30-Oct-02 7:59
Eugene Polonsky30-Oct-02 7:59 
GeneralNice article Pin
Chris Maunder23-May-02 17:02
cofounderChris Maunder23-May-02 17:02 
GeneralRe: Nice article Pin
Paul Selormey24-May-02 0:07
Paul Selormey24-May-02 0:07 

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

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