I'm trying to build a c++ program that customizes another window title bar, adding colored text and icons. The window I need to customize is in a closed source program.

Right now I can only change the text with SetWindowText, but was unable no find a way to get that level of customization:

Razor Ultima Online Customized Titlebar

The image is from Ultima Online title bar being customized by Razor, a closed source helper program.

Thanks for reading.

link|improve this question
You'll have to paint the text yourself. – Seth Carnegie Dec 10 '11 at 11:34
Do I have to intercept the target window messages and replace it's title bar drawing routine with my own? Does that cover the images part or just the text coloring? – JoseCastro Dec 10 '11 at 11:41
You probably need to install a message hook – David Heffernan Dec 10 '11 at 12:38
If any of the answers helped solve your problem, can you accept the answer by clicking the green tick to the left of the post. If they didn't, can you provide more information on what you're trying to do and how the suggestions don't work. – Deanna Dec 23 '11 at 10:06
feedback

2 Answers

up vote 1 down vote accepted

Custom drawing and subclassing of other process windows requires DLL injection and hooking to detect the windows creation with subclassing to handle the non client drawing and click/hittest messages..

link|improve this answer
and once you've done that, handling WM_NCHITTEST should help you – Jonathan Lingle Dec 12 '11 at 20:27
feedback

You should inject you DLL into client.exe process, then override main window function (WndProc), or create new window and make original client's window to be the child of your window.

Writing colored text on the caption is non-trivial task itself, especially if you want support Win7\Vista (however it's doable with GDI).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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