show/hide this revision's text 2 added pics to clarify

Has anyone implemented Lightbox style background dimming on a modal dialog box in a MFC/non .net app.
I think the procedure would have to be something like:

steps:

  1. Get dialog parent HWND or CWnd*

  2. Get the rect of the parent window and draw an overlay with a translucency over that window

  3. allow the dialog to do it's modal draw routine, e.g DoModal()

Are there any existing libraries/frameworks to do this, or what's the best way to drop a translucent overlay in MFC?
edit Here's a mockup of what i'm trying to achieve if you don't know what 'lightbox style' means
Some App:
alt text

with a lightbox dialog box
alt text

show/hide this revision's text 1

Lightbox style dialogs in MFC App

Has anyone implemented Lightbox style background dimming on a modal dialog box in a MFC/non .net app.
I think the procedure would have to be something like:

steps:

  1. Get dialog parent HWND or CWnd*

  2. Get the rect of the parent window and draw an overlay with a translucency over that window

  3. allow the dialog to do it's modal draw routine, e.g DoModal()

Are there any existing libraries/frameworks to do this, or what's the best way to drop a translucent overlay in MFC?