Looking at a Windows tooltips class hint window, i see that it draws its drop-shadow outside the hint window's actual rectangle.

Using SpyXX - i can get the tooltip's window rect, and class styles:

Rectangle:     (440, 229)-(544, 249), 104x20
Restored Rect: (440, 229)-(544, 249), 104x20
Client Rect:   (0, 0)-(104, 20), 104x20

You'll notice that the drop shadow you see is physically outside the window that's being drawn. How can i draw a shadow outside around my window, while being outside my window?

Note: The shadow is not drawn using the standard CS_DROPSHADOW class style. i've confirmed this experimentally, and can also see the class style's for the window in SpyXX; it does not use CS_DROPSHADOW:

Windows Styles:     94000001

    WS_POPUP        80000000
    WS_VISIBLE      10000000
    WS_CLIPSIBLINGS  4000000
    TTS_ALWAYSTIP          1

Extended Styles:    00080088

    WS_EX_LAYERED      80000
    WS_EX_TOOLWIN         80
    WS_EX_TOPMOST          8

So how can i draw outside my window?

Note: Trying to draw on the desktop DC is out. From Greg Schechter's Redirecting GDI, DirectX, and WPF applications:

Drawing To and Reading From the Screen -- Baaaad!

Lastly, since we're on the redirection topic, one particularly dangerous practice is writing to the screen, either through the use of GetDC(NULL) and writing to that, or attempting to do XOR rubber-band lines, etc. There are two big reasons that writing to the screen is bad:

It's expensive... writing to the screen itself isn't expensive, but it is almost always accompanied by reading from the screen because one typically does read-modify-write operations like XOR when writing to the screen. Reading from the video memory surface is very expensive, requires synchronization with the DWM, and stalls the entire GPU pipe, as well as the DWM application pipe.
It's unpredictable... if you somehow manage to get to the actual primary and write to it, there can be no predictability as to how long what you wrote to the primary will remain on screen. Since the UCE doesn't know about it, it may get cleared in the next frame refresh, or it may persist for a very long time, depending on what else needs to be updated on the screen. (We really don't allow direct writing to the primary anyhow, for that very reason... if you try to access the DirectDraw primary, for instance, the DWM will turn off until the accessing application exits)

link|improve this question

73% accept rate
The simple answer is you can't draw outside your window. For the reasons given, this is a bad idea. this means that what you are seeing when there are drop shadows outside of window rects is not the raw desktop - but some kind of composited image. On Windows 6 the composited desktop is managed by dwm.exe - On windows XP I don't know - are you drawing your control(s) background with DrawThemeBackground? – Chris Becke Feb 10 '10 at 4:35
feedback

2 Answers

up vote 5 down vote accepted

You can't draw outside your window in the manner you describe.

If you right click your desktop then go to properties/appearance/effects and uncheck 'Show shadows under menus' ... you will no longer have the shadow.

Bottom line is that this is a product of the window manager not your program.

link|improve this answer
How is the tooltips common control drawing outside its window? Or what feature of Windows is it asking to make use of? – Ian Boyd Feb 9 '10 at 22:19
@Ian Boyd - I think you misunderstand. The control itself is not drawing outside its window. When the window manager is asked to paint windows with certain classes, like 'menu' or 'tooltips', it (the window manager) renders the dropshadow and then the window. It's built in to the default window manager under Windows. There are replacement window managers available. Some may be open source and reveal their secrets. However, none of the windows is "painting outside itself." – user113476 Feb 9 '10 at 22:26
How is the tooltips common control asking the Windows window manager to render a drop shadow around its window? – Ian Boyd Feb 10 '10 at 2:26
The bottom line is, it can't be a trick of the window manager, because the window manager is not being given the necessary hints to tell it to draw the drop shadow. Which means that the tooltip control is explicitly calling some kind of window manager api to manually render a drop-shadow. what api is it? i am intrigued. – Chris Becke Feb 10 '10 at 5:02
1  
The window manager simply adds the CS_DROPSHADOW style to the window. In your post above you haven't enumerated the Class Styles, only the Window Styles. Were you to actually enumerate the Class Styles on a tooltip window with the 'Show shadows under menus' option checked you would see the CS_DROPSHADOW class style. With the option unchecked you wouldn't see it. Class Style are different than window styles. Why not write a sample program to test it? I don't have the time for it atm. – user113476 Feb 10 '10 at 14:40
show 1 more comment
feedback

I wouldn't be surprised if that shadow is intimately tied to the window manager itself; it is after all the window manager who decides what window gets to paint which parts of itself and when it can do it. I don't see it as rocket science to paint that shadow if control over all that is gained, which the window manager has.

link|improve this answer
i don't believe that the tooltips common control is painting the drop-shadow itself either. But then what feature of Windows is it making use of? – Ian Boyd Feb 9 '10 at 22:21
feedback

Your Answer

 
or
required, but never shown

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