Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to create an irregularily shaped/skinned window (just with rounded, alpha blended corners for now). Upon creating the top-level window i am processing the WM_CREATE message and do the following:

  1. Create a compatible memory DC
  2. Create a DIB section compatible with the window DC
  3. Select DIB into memory DC
  4. Do the drawing of my backdrop
  5. Apply alpha channel and premultiply RGB values
  6. Call UpdateLayeredWindow()

Later on I am planning on rounding of the edges by setting the alpha channel and premultiplying the bits in question to make that happen.

Now, if I create for instance a button in my window, it will not render itself. I know why, and I am trying to come up with an elegant solution to making my custom controls (child windows) here.

My initial approach was to ditch using child windows in the first place and just let the top level window do all the drawing and also input handling, hit testing, and so on. I found this to be way to tedious and instead I want to let Windows handle all this for me.

Now, I know if I create a child window, it of course behaves normally (e.g. reacting to user input), and I want to leverage this. I am planning on creating the child windows (custom controls) normally using CreateWindowEx() so they get a window handle, and recieve window messages without me having to worry about passing them manually.

Somehow I need to get these windows painted, and as I see it, the only possible way to do this is from the routine that paints the whole top level window. I need to invent some kind of logic to get the top level window's paint routine to paint my child windows whenever necessary. As far as I understand the UpdateLayeredWindow() function need to redraw the whole window.

Is it sensible to for instance have the child controls render an image of themselves that are sent to the top level window's paint routine? Like for instance the child window sending a user WM to the top level window passing pointer to its rendered bitmap as a WPARAM and pointer to a structure defining its position and size as a LPARAM.

Any better ideas? Does this make any sense at all?

Thanks, Eirik

share|improve this question
Simplest thing to do here is likely to use the SetLayeredWindowAttributes approach instead of UpdateLayeredWindow; you'll lose the per-pixel alpha, but the window will otherwise work like a normal Win32 window with child windows. (Use your bitmap as the background of the parent window, and use color key to get irregular shape). The trick with doing composition of the child windows yourself is that you'll have to do this 'constantly' so that they stay updated even as the user interacts them (eg. types characters into an edit that has a blinking caret). – BrendanMcK Nov 2 '11 at 22:20
Hi! Yes the SetLayeredWindowAttributes route is maybe an option. I have used that before to make the whole window transparent. I certainly agree that this would simplify things quite a bit, but when loosing the per-pixel alpha I would also loose the nice blending effect I am after, right? Or am I misunderstanding the color-key term you are using? I am aware that there would be allot of houskeeping to do for making the controls update upon user interaction. The blinking caret is a good example... – Eirik Vea Nov 2 '11 at 23:05
Yes, you lose per-pixel alpha, so you don't get a smooth blend. The color-key is what allows you to have an irregular shape - you pick one color that is treated as transparent, so areas on your window that have that color as a background are see-through. But that is binary, on or off, and doesn't blend. – BrendanMcK Nov 2 '11 at 23:35

2 Answers

I think I'm going to go for this solution:

Top level window

The top level window maintains two bitmaps. One which is the displayed window and one without any of the child controls rendered. The latter one will only need redrawing when the window changes size. The window will have a message handler that renders a child control on the displayed bitmap. The message handler will expect a pointer to either a DIB containing the child control, or to the actual bits (not sure which is best at the moment), as the WPARAM, and a pointer to a structure containing the rectangle that the child shall be drawn into as the LPARAM. A call to BitBlt() will be made to clear out the underlying surface (this is where the other bitmap comes in) prior to an AlphaBlend() call for rendering the child control bitmap onto the displayed bitmap surface.

The parent window will call the EnumChildWindows whenever it is resized or for some reason need to redraw its children. There could of course be some kind of invalidation regime enforced here to reduce unnecessary rendering of the child controls. Not sure if the speed increase is worth the effort, though.

Child windows

Upon creation of the child control instance, an internal bitmap compatible with that of the top-level window is created. The child renders itself into this internal bitmap and whenever it needs redrawing it notifies its parent window via the SendMessage() function, passing a pointer to its bitmap as the WPARAM, and a RECT as the LPARAM defining its position and dimensions. If the parent needs redrawing, it issues a message down to all its child windows requesting their bitmap. Childs will then respond with the same message that they normally would send when they decide they need redrawing themselves.

Eirik

share|improve this answer

To quote the MSDN page for WM_PAINT:

The WM_PAINT message is generated by the system and should not be sent by an application. To force a window to draw into a specific device context, use the WM_PRINT or WM_PRINTCLIENT message. Note that this requires the target window to support the WM_PRINTCLIENT message. Most common controls support the WM_PRINTCLIENT message.

So it looks like you can iterate through all the child windows with EnumChildWindows and send them WM_PRINT with your memory DC between steps 5 and 6.

It will look something like this:

static BOOL CALLBACK MyPaintCallback(HWND hChild,LPARAM lParam) {
    SendMessage(hChild,WM_PRINT,(WPARAM)lParam,(LPARAM)(PRF_CHECKVISIBLE|PRF_CHILDREN|PRF_CLIENT));
    return TRUE;
}

void MyPaintMethod(HWND hWnd) {
    //steps 1-5

    EnumChildWindows(hWnd,MyPaintCallback,MyMemoryDC);

    //step 6
}
share|improve this answer
Hi and thanks for your answer. I did give this a try, but I ended up with the control being drawn at the upper left corner of my window both when using the WM_PRINT and WM_PRINTCLIENT messages. And when resizing the window it (the whole window) constantly jumped back and forth to position 0,0 on the screen and to where it originally was prior to resizing. Not sure why it is doing that, need some investigation, but perhaps I could be able to adapt this method to suit my needs. – Eirik Vea Nov 2 '11 at 22:53
Did squash the bug with window repositioning itself to 0,0 during resize. Had to do with me passing a POINT {0,0} rather then NULL to the parameter of the UpdateLayeredWindow function specifying the placement of the window... Kind of an idiot mistake. – Eirik Vea Nov 3 '11 at 18:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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