My menu icons are working fine except that the "seem" a bit too large. They are 16X16 bitmaps and they "bump into" the text on the right.
What is the maximum bitmap size for menus?
Is there a way to cause the text to move to the right?
I'm not sure about this, but I see no way to control the spacing other than by adjusting the size of the icon (bitmaps). Perhaps you could match the icon size to the sizes returned by GetSystemMetrics for SM_CXMENUCHECK and SM_CYMENUCHECK.
MSDN: GetSystemMetrics (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/getsystemmetrics.asp)
On my system the return values are 17 and 17, and the spacing for a 16x16 icon looks OK.
You can use bitmaps of any size you want. You only have to adjust menu item width and height on WM_MEASUREITEM and accordingly offset the text rectangle on WM_DRAWITEM.
Regards
Last time I played with menu bitmaps (albeit in VB) I found that they weren't very nice looking... nothing like the Microsoft programs. It'd be nice of them to document their ownerdrawn function, but in any case, have a look in the Custom Components forum for MenuWOW. It looks very very nice indeed :U
(Incidentally, I wasn't paid for that advertisement either :wink)
Thanks to all of you. I will probably try lamer's approach.
The MenuWow stuff looks very nice, but as far as I can see, it requires the use of resources. My compiler does not use resources. My menus and bitmaps are all generated with inline code.