Lightbox style dialogs in MFC App - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T07:21:49Zhttp://stackoverflow.com/feeds/question/51687http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/51687/lightbox-style-dialogs-in-mfc-app2Lightbox style dialogs in MFC Appgeocoin2008-09-09T11:53:23Z2008-09-11T11:07:58Z
<p>Has anyone implemented Lightbox style background dimming on a modal dialog box in a MFC/non .net app.<br />
I think the procedure would have to be something like:</p>
<p>steps:</p>
<ol>
<li><p>Get dialog parent HWND or CWnd* </p></li>
<li><p>Get the rect of the parent window and draw an overlay with a translucency over that window </p></li>
<li>allow the dialog to do it's modal draw routine, e.g DoModal()</li>
</ol>
<p>Are there any existing libraries/frameworks to do this, or what's the best way to drop a translucent overlay in MFC?<br />
<strong>edit</strong> Here's a mockup of what i'm trying to achieve if you don't know what 'lightbox style' means<br />
<strong>Some App</strong>:<br />
<img src="http://farm4.static.flickr.com/3065/2843243996_8a4536f516_o.png" alt="alt text" /> </p>
<p>with a lightbox dialog box<br />
<img src="http://farm4.static.flickr.com/3280/2842409249_4a1c7f5810_o.png" alt="alt text" /></p>
http://stackoverflow.com/questions/51687/lightbox-style-dialogs-in-mfc-app/51979#519791Answer by BrianLy for Lightbox style dialogs in MFC AppBrianLy2008-09-09T14:13:24Z2008-09-09T14:13:24Z<p>I think you just need to create a window and set the transparency. There is an MFC <a href="http://www.codeproject.com/KB/dialog/CGlassDialog.aspx" rel="nofollow">CGlassDialog sample on CodeProject</a> that might help you. There is also an <a href="http://www.codeproject.com/KB/winsdk/quaker1.aspx" rel="nofollow">article</a> on how to do this with the Win32 APIs.</p>
http://stackoverflow.com/questions/51687/lightbox-style-dialogs-in-mfc-app/54341#543414Answer by geocoin for Lightbox style dialogs in MFC Appgeocoin2008-09-10T15:13:03Z2008-09-11T11:07:58Z<p>Here's what I did* based on Brian's links<br />
First create a dialog resource with the properties:</p>
<ul>
<li>border <strong>FALSE</strong></li>
<li>3D look <strong>FALSE</strong></li>
<li>client edge <strong>FALSE</strong></li>
<li>Popup style</li>
<li>static edge <strong>FALSE</strong></li>
<li>Transparent <strong>TRUE</strong></li>
<li>Title bar <strong>FALSE</strong> </li>
</ul>
<p>and you should end up with a dialog window with no frame or anything, just a grey box.
override the Create function to look like this: </p>
<pre><code>BOOL LightBoxDlg::Create(UINT nIDTemplate, CWnd* pParentWnd)
{
if(!CDialog::Create(nIDTemplate, pParentWnd))
return false;
RECT rect;
RECT size;
GetParent()->GetWindowRect(&rect);
size.top = 0;
size.left = 0;
size.right = rect.right - rect.left;
size.bottom = rect.bottom - rect.top;
SetWindowPos(m_pParentWnd,rect.left,rect.top,size.right,size.bottom,NULL);
HWND hWnd=m_hWnd;
SetWindowLong (hWnd , GWL_EXSTYLE ,GetWindowLong (hWnd , GWL_EXSTYLE ) | WS_EX_LAYERED ) ;
typedef DWORD (WINAPI *PSLWA)(HWND, DWORD, BYTE, DWORD);
PSLWA pSetLayeredWindowAttributes;
HMODULE hDLL = LoadLibrary (_T("user32"));
pSetLayeredWindowAttributes =
(PSLWA) GetProcAddress(hDLL,"SetLayeredWindowAttributes");
if (pSetLayeredWindowAttributes != NULL)
{
/*
* Second parameter RGB(255,255,255) sets the colorkey
* to white LWA_COLORKEY flag indicates that color key
* is valid LWA_ALPHA indicates that ALphablend parameter
* is valid - here 100 is used
*/
pSetLayeredWindowAttributes (hWnd,
RGB(255,255,255), 100, LWA_COLORKEY|LWA_ALPHA);
}
return true;
}
</code></pre>
<p>then create a small black bitmap in an image editor (say 48x48) and import it as a bitmap resource (in this example IDB_BITMAP1)<br />
override the WM_ERASEBKGND message with:</p>
<pre><code>BOOL LightBoxDlg::OnEraseBkgnd(CDC* pDC)
{
BOOL bRet = CDialog::OnEraseBkgnd(pDC);
RECT rect;
RECT size;
m_pParentWnd->GetWindowRect(&rect);
size.top = 0;
size.left = 0;
size.right = rect.right - rect.left;
size.bottom = rect.bottom - rect.top;
CBitmap cbmp;
cbmp.LoadBitmapW(IDB_BITMAP1);
BITMAP bmp;
cbmp.GetBitmap(&bmp);
CDC memDc;
memDc.CreateCompatibleDC(pDC);
memDc.SelectObject(&cbmp);
pDC->StretchBlt(0,0,size.right,size.bottom,&memDc,0,0,bmp.bmWidth,bmp.bmHeight,SRCCOPY);
return bRet;
}
</code></pre>
<p>Instantiate it in the DoModal of the desired dialog, Create it like a Modal Dialog i.e. on the stack(or heap if desired), call it's Create manually, show it then create your actual modal dialog over the top of it: </p>
<pre><code>INT_PTR CAboutDlg::DoModal()
{
LightBoxDlg Dlg(m_pParentWnd);//make sure to pass in the parent of the new dialog
Dlg.Create(LightBoxDlg::IDD);
Dlg.ShowWindow(SW_SHOW);
BOOL ret = CDialog::DoModal();
Dlg.ShowWindow(SW_HIDE);
return ret;
}
</code></pre>
<p>and this results in something <strong>exactly</strong> like my mock up above </p>
<p>*there are still places for improvment, like doing it without making a dialog box to begin with and some other general tidyups.</p>