Click here to Skip to main content
Licence CPOL
First Posted 1 Aug 2008
Views 21,092
Downloads 406
Bookmarked 20 times

Creating a dynamically translucent dialog

By | 1 Aug 2008 | Article
Using two common techniques to create an uncommon UI.

Introduction

On a Vista machine where Aero UI is enabled, one thing is bound to jump out of the screen: dialogs are translucent. This semi see-through UI is refreshing to say the least. Someone may be mistaken to believe that such a dazzling UI is only available on high end Vista machines. The truth is that with minor efforts, you can duplicate such a fancy effect on XP, using not-so well-known, yet simple APIs. To take a step further, we can even dynamically dim down or brighten up how much transparent the dialog should be.

Background

(Optional) Need to have a basic understanding of MFC.

Using the code

The project is self-contained, built from MS VC8. Or, you can copy the .cpp and .h file into your own project and use them directly.

Points of interest

Building a translucent dialog is pleasantly trivial using two Win32 APIs:

  • SetWindowLongPtr - sets a layered window, in preparation for the next step. Similar to SetWindowLongPtr, there used to be another version, SetWindowLong, which is now replaced by SetWindowLongPtr, according to the latest MSDN update.
  • SetLayeredWindowAttributes - pay attention to its third parameter (with a value range from 0 to 255) that determines the level of opacity of the dialog. 0 makes the dialog completely transparent, and 255 displays a solid dialog.

To make the dialog more interactive, the sample allows a user to adjust the level of opacity. It does this by overriding the PreTranslateMessage. In an MFC application, PreTranslateMessage is generally the right place to capture or alter the default behavior for key combinations. What is customized inside this call is two sets of key combinations:

  1. SHIFT+D: have the dialog dim out, meaning make it less transparent.
  2. SHIFT+B: brighten up the dialog; in other words, make the dialog more and more transparent.

When you put these small steps together, you will see a very smooth dialog which is gently "plotted" on the screen. And, you can press key combinations to switch the dialog's transparency level. Quite a fun to see it in motion. Give it a try, and enjoy!

History

  • First check-in on August 1, 2008.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

CheerJeer

Engineer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 2 PinmemberDoubleGhost22:13 29 Dec '08  
GeneralRe: My vote of 2 PinmemberCheerJeer11:19 28 Mar '09  
QuestionAnything new here? PinmemberLeo Davidson5:55 6 Aug '08  
AnswerRe: Anything new here? Pinmembersomard11:29 6 Aug '08  
GeneralRe: Anything new here? PinmemberLeo Davidson15:50 6 Aug '08  
GeneralAny article about look and feel PinmemberJerry Evans0:23 5 Aug '08  
AnswerRe: Any article about look and feel Pinmembersomard4:01 5 Aug '08  
GeneralRe: Any article about look and feel PinadminChris Maunder5:23 5 Aug '08  
QuestionWhat if a child dialog? Pinmembersudhir_Kumar3:35 4 Aug '08  
AnswerRe: What if a child dialog? Pinmembersomard13:52 4 Aug '08  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 2 Aug 2008
Article Copyright 2008 by CheerJeer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid