Click here to Skip to main content
15,861,172 members
Articles / Programming Languages / C++
Article

Win2K transparent dialogs

Rate me:
Please Sign up or sign in to vote.
4.75/5 (14 votes)
20 Feb 2001 194.3K   55   47
How to make your windows transparent in Win2K without downloading the Platform SDK

Sample Image - win2k_transparent.gif

This article shows how you can make your apps transparent using the new functions provided with Win2K. If you download the Platform SDK from Microsoft then these functions will be available, but those of you without fast Internet connections this article could be useful.

This is a mix of stuff I found on the net so if anyone feels that I have stolen something and should get the credit, sorry...

The functions you want are included in the USER32.DLL in Win2K, but the SDK provides the header files and the source code in libraries. But to use the functions one could just import the functions from the USER32.DLL. So here it goes...

First some constants must be declared:

#ifndef WS_EX_LAYERED
#define WS_EX_LAYERED           0x00080000
#define LWA_COLORKEY            0x00000001
#define LWA_ALPHA               0x00000002
#endif // ndef WS_EX_LAYERED

Then some declarations in the header-file:

// Preparation for the function we want to import from USER32.DLL
typedef BOOL (WINAPI *lpfnSetLayeredWindowAttributes)(HWND hWnd, 
                                  COLORREF crKey, BYTE bAlpha, DWORD dwFlags);

lpfnSetLayeredWindowAttributes m_pSetLayeredWindowAttributes

That is all for the header file, now to the implementation!

// Here we import the function from USER32.DLL
HMODULE hUser32 = GetModuleHandle(_T("USER32.DLL"));
m_pSetLayeredWindowAttributes = 
                       (lpfnSetLayeredWindowAttributes)GetProcAddress(hUser32, 
                       "SetLayeredWindowAttributes");

// If the import did not succeed, make sure your app can handle it!
if (NULL == m_pSetLayeredWindowAttributes)
	return FALSE; //Bail out!!!

If the function was imported correctly we must set the dialog we want to make transparent into "transparent-mode". E.G. Set the style for the dialog so that it can be transparent, and that is done with the flag WS_EX_LAYERED defined earlier.

// Check the current state of the dialog, and then add the 
// WS_EX_LAYERED attribute
SetWindowLong(m_hWnd, GWL_EXSTYLE, GetWindowLong(m_hWnd, GWL_EXSTYLE) 
              | WS_EX_LAYERED);

Now when that is done its time to describe the function we imported, and to tell you the truth I'm not 100% sure about all of the parameters...

hwnd [in] Handle to the layered window.

crKey [in] Pointer to a COLORREF value that specifies the transparency color key to be used. (When making a certain color transparent...)

bAlpha [in] Alpha value used to describe the opacity of the layered window. 0 = Invisible, 255 = Fully visible

dwFlags [in] Specifies an action to take. This parameter can be LWA_COLORKEY (When making a certain color transparent...) or LWA_ALPHA.

// Sets the window to 70% visibility.
m_pSetLayeredWindowAttributes(m_hWnd, 0, (255 / 70) * 100, LWA_ALPHA);

One thing you must make sure of is to disable this function if the app is running under any OS other then Win2K. And there is probably some very easy way to do that, but here is how I did it:

OSVERSIONINFO os = { sizeof(os) };
GetVersionEx(&os);
// use m_bWin2k before any call to the
// m_pSetLayeredWindowAttributes to make sure we are runninng Win2K
BOOL m_bWin2K = ( VER_PLATFORM_WIN32_NT == os.dwPlatformId && 
                  os.dwMajorVersion >= 5 ); 

That's 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


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralAnother problem with OpenGL Pin
alexei_p25-Sep-04 23:24
alexei_p25-Sep-04 23:24 
GeneralRe: Another problem with OpenGL Pin
Crash-id18-Jun-05 0:37
Crash-id18-Jun-05 0:37 
GeneralRe: Another problem with OpenGL Pin
Crash-id18-Jun-05 0:57
Crash-id18-Jun-05 0:57 
GeneralTransparency with OpenGL.. Pin
S.L20-Jun-04 20:24
S.L20-Jun-04 20:24 
GeneralRe: Transparency with OpenGL.. Pin
alexei_p25-Sep-04 23:08
alexei_p25-Sep-04 23:08 
GeneralRe: Transparency with OpenGL.. Pin
twxs25611-May-06 11:30
twxs25611-May-06 11:30 
Generala new problem Pin
beavis2-Nov-03 16:31
beavis2-Nov-03 16:31 
GeneralRe: a new problem Pin
Anonymous29-Jun-04 3:55
Anonymous29-Jun-04 3:55 
MSDN: Note that this cannot be used for child windows. Also, this cannot be used if the window has a class style of either CS_OWNDC or CS_CLASSDC.
GeneralCool .... But Pin
Powerpeeltz2-Jul-03 6:03
Powerpeeltz2-Jul-03 6:03 
GeneralCheck your math ! Pin
Kochise2-Oct-03 0:07
Kochise2-Oct-03 0:07 
QuestionHow transparecy works? Pin
3-May-02 19:17
suss3-May-02 19:17 
GeneralGetModuleHandle or LoadLibrary Pin
1-Mar-02 1:25
suss1-Mar-02 1:25 
GeneralRe: GetModuleHandle or LoadLibrary Pin
Tim Smith1-Mar-02 2:12
Tim Smith1-Mar-02 2:12 
GeneralRe: GetModuleHandle or LoadLibrary Pin
happycujo12-Aug-03 3:50
happycujo12-Aug-03 3:50 
GeneralOrignial state Pin
21-Feb-02 8:02
suss21-Feb-02 8:02 
GeneralRe: Orignial state Pin
25-Feb-02 6:31
suss25-Feb-02 6:31 
GeneralRe: Setting window orignial WS_EX_LAYERED state not working Pin
mediamaster409-Sep-03 7:32
mediamaster409-Sep-03 7:32 
Generalproblem Pin
woodey30-Jan-02 21:44
woodey30-Jan-02 21:44 
GeneralJust realized what I was reading in your status window. Pin
Mike Whitenton2-Jul-01 22:51
Mike Whitenton2-Jul-01 22:51 
GeneralRe: Just realized what I was reading in your status window. Pin
Steve McLenithan30-Nov-02 16:37
Steve McLenithan30-Nov-02 16:37 
GeneralTransparency vs. Windows Media Player Pin
21-May-01 7:51
suss21-May-01 7:51 
GeneralRe: Transparency vs. Windows Media Player Pin
Per-Erik Nordlund21-May-01 20:28
Per-Erik Nordlund21-May-01 20:28 
GeneralRe: Transparency vs. Windows Media Player Pin
22-May-01 4:12
suss22-May-01 4:12 
GeneralRe: Transparency vs. Windows Media Player Pin
Per-Erik Nordlund24-May-01 11:07
Per-Erik Nordlund24-May-01 11:07 
GeneralRe: Transparency vs. Windows Media Player Pin
17-Dec-01 8:55
suss17-Dec-01 8:55 

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

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