vote up 2 vote down star

Let's say i have three control A, B, C. They are all inherited from CDialog, A is a main dialog , A contains B, and B contains C. and each time i use mouse mouse drag C, B and C will move together.

This is a image:http://img507.imageshack.us/img507/7039/31709956.jpg

We know this will cause B and C to redraw themselves. and it might cause flicker.

And my question is whether not there is a method to double buffer these two dialogs B and C?

I know that in XP and vista, there is a attribute WS_EX_COMPOSITED that will help, but i don't want to use this.

someone might suggest me to use memDC, but my problem is how can i merge the actions in B's ondraw and C's ondraw function into a buffer ?

Hope someone know what i said.

Thanks in advance!

flag

when you say: dialog... do you mean they are separate windows? (so CDialog?) – reinier Sep 27 at 11:15
yeah, all the dialog are inherited from CDialog ~ – MemoryLeak Sep 27 at 11:16

5 Answers

vote up 2 vote down check

what helpes flickering a lot is to overload the erasebackground method. This method fills the entire background with a solid color. The paint than paints all items on it. By removing the erasebackground, the paint will just paint over stuff which is already there, thus removing flickering.

link|flag
but my problem is how can i merge the actions in B's ondraw and C's ondraw function into a buffer ? let say when i drag C, B and C will get redrawed, the sequence is B draw first and then C, it was finished in their own ondraw function, and I want to double buffer them into a bitmap and then draw it on top of A. but i don't know how to do this. – MemoryLeak Sep 27 at 11:35
I can't imagine 2 separate windows being able to be redrawn using 1 offscreen bitmap. To do this, you need the dialogs to be something else than separate windows. – reinier Sep 27 at 11:41
hi...I just saw your test image. Are the dialogs really completely drawn by you(so no controls on it?) In that case, why bother with the CDialog at all and just not draw them directly on the main windows yourself and thus eliminating flicker all together – reinier Sep 27 at 11:46
since i will add some event handler on the child dialog C, for example drag and drop – MemoryLeak Sep 27 at 11:49
WS_EX_COMPOSITED , this attribute can buffer all it's child into buffer and then draw it. but I don't want to use this.... – MemoryLeak Sep 27 at 11:51
show 2 more comments
vote up 1 vote down

CS_PARENTDC will help.

link|flag
vote up 1 vote down

I've never messed with double-buffering Windows' drawing calls myself, but I once came across a discussion about it on a Microsoft forum: http://social.msdn.microsoft.com/forums/en-US/vcgeneral/thread/789a4116-d3b2-488e-801a-3f7bc1e4d33a/ Perhaps that might be helpful to you.

link|flag
vote up 0 vote down

Assuming B and C are children of A (the usual case for dialogs), A should have the WS_CLIPCHILDREN style set. If B and C are siblings of A instead, set A's WS_CLIPSIBLINGS bit.

link|flag
vote up 0 vote down

Take one MemDC for main dialog A and Combined MemDC for B & C. Now when u drag C , you are supposed to combined these 2 MemDC depending on current position by using BitBlt function and then finally you have to do bitblt of combined memDC on actual DC of the dialog.

Along with this you have to override onerasebackground method , so flicker wont be there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.