5,692,513 members and growing! (19,751 online)
Email Password   helpLost your password?
Multimedia » GDI+ » General     Intermediate

GDI+ Double-Buffering Helper Class

By Eugene Polonsky

A templated helper class that performs GDI+ initialization/deinitialization, and takes care of double-buffering/caching
VC6, VC7, C++Windows, Win2K, WinXP, WTL, GDI+, VS.NET2002, VS6, Visual Studio, Dev

Posted: 22 May 2002
Updated: 22 May 2002
Views: 97,532
Bookmarked: 32 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
21 votes for this Article.
Popularity: 5.29 Rating: 4.00 out of 5
2 votes, 16.7%
1
0 votes, 0.0%
2
1 vote, 8.3%
3
3 votes, 25.0%
4
6 votes, 50.0%
5

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

About the Author

Eugene Polonsky



Occupation: Web Developer
Location: United States United States

Other popular GDI+ articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 18 of 18 (Total in Forum: 18) (Refresh)FirstPrevNext
GeneralDeleting all bitmaps on 'SetDirty' ?memberLex197214:49 8 Dec '06  
GeneralTo avoid flicker try this that will work finemembervmonster4:12 27 Jan '05  
GeneralRe: To avoid flicker try this that will work finemembervmonster5:47 27 Jan '05  
GeneralCPU usagemembersmesser17:17 24 May '04  
GeneralRe: CPU usagememberNick Z.10:36 14 Mar '05  
GeneralRe: CPU usagemembersmesser10:39 14 Mar '05  
GeneralRe: CPU usagememberNick Z.11:31 14 Mar '05  
GeneralMFC 6.0 supportmemberkc.6:10 5 Aug '03  
GeneralRe: MFC 6.0 supportmembercadinfo6:10 2 Sep '03  
GeneralRe: MFC 6.0 supportsussCraig Muller13:25 17 Oct '03  
AnswerRe: MFC 6.0 supportmembersevenfish16:01 26 Jun '07  
GeneralI still get flicker when I resize window.memberrobspychala14:31 11 Jan '03  
GeneralRe: I still get flicker when I resize window.memberrobspychala18:29 13 Jan '03  
GeneralRe: I still get flicker when I resize window.membermartybeavis13:05 5 Nov '03  
Generalnice really, but...sussAnonymous8:52 30 Oct '02  
GeneralRe: nice really, but...memberEugene Polonsky8:59 30 Oct '02  
GeneralNice articleadminChris Maunder18:02 23 May '02  
GeneralRe: Nice articlesupporterPaul Selormey1:07 24 May '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 22 May 2002
Editor: Smitha Vijayan
Copyright 2002 by Eugene Polonsky
Everything else Copyright © CodeProject, 1999-2008
Web19 | Advertise on the Code Project