Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
248 views

System Menu for Layered Windows?

We're having an issue with layered windows and system menus in Delphi 2009. That is, our layered windows (which have no border) have no system menu. When I say system menu, I am referring to the menu ...
4
votes
3answers
2k views

Win32: How to make drop shadow honor non-rectangular Layered window?

i've created a layered window by adding the the WS_EX_LAYERED extended style: wndClass.ExStyle = wndClass.ExStyle | WS_EX_LAYERED; Windows will use black as the chroma key color value. i'm going to ...
4
votes
2answers
645 views

What's the best method for drawing overlay graphics on Windows?

I'm working with a Win32 application that needs to create a variety of custom window types. In particular, these windows are often non-rectangle, have shadows, or are mostly transparent. I'm ...
2
votes
1answer
223 views

How to create child layered alpha-transparent window?

I am trying to create transparent child window. procedure TForm1.BtnGoClick(Sender: TObject); var bmp:TBitmap; BitmapPos: TPoint; BitmapSize: TSIZE; BlendFunction: _BLENDFUNCTION; exStyle: ...
2
votes
2answers
1k views

Win32: How to draw outside my window?

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: ...
0
votes
1answer
75 views

Colored border of the transparent color key around text written on the transparent window

I created a Transparent Layered window with a color key that I use to make the window transparent. So far it works all fine. Writing text on it - using GDI+ - works, too... The problem I encounter ...
0
votes
2answers
176 views

A skinning engine in Windows: draw “dirty” regions only or the whole window at once?

I want to make a skinning engine capable of drawing custom-shaped windows with alpha blending. That is, it'll use layered windows (UpdateLayeredWindow). A typical window will contain among its ...
0
votes
1answer
562 views

Keeping a window always on top — including menus (win32)

I would like to have a layered window that is always-on-top, which I can accomplish, but there are certain screen elements that still get drawn over it, such as menus (including the start menu). Is ...
0
votes
1answer
350 views

Getting empty update rectangle in OnPaint after calling InvalidateRect on a layered window

I'm trying to figure out why I've been getting an empty update rectangle when I call InvalidateRect on a transparent window. The idea is that I've drawn something on the window (it gets temporarily ...
0
votes
0answers
108 views

Layered windows and COM drag image

I have a program that displays a main window, a layered window and implements COM drag and drop. In general terms: I create a normal top level window. I create a layered window using WS_EX_LAYERED ...
0
votes
1answer
615 views

Window Sitters - layered windows colorkeying and clickthrough

I made a window sitter in Visual Basic 6 a few years back, which used layered windows colorkeying to painlessly make the form nonrectangular. I tried to rewrite the window sitter in C# earlier this ...
0
votes
1answer
965 views

Layered window still receiving WM_PAINT message after UpdateLayeredWindow call

I've got a few layered windows in my app that use UpdateLayeredWindow() to handle their visual representation. According to the MSDN article on layered windows, "when using UpdateLayeredWindow() the ...