Click here to Skip to main content
15,867,568 members
Articles / Multimedia / GDI

Custom Captions (Including Multi-line Captions)

Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
15 Jul 2000CPOL 239.6K   6.8K   63   52
Simple customised Window captions, including multi-line captions

Miscellaneous Captions Image Bitmap Caption Image

Overview

This article presents some classes that make customising window captions really quick and easy.

Using these classes, you can change the background colour and the text font and colour of both the active and inactive window captions independently for any windows you choose. I also provide an example class that allows a bitmap to be used as the caption background, e.g., for logos, or wood or stone effects.

More unusually, you can have your child window captions automatically wrap onto more than one line to accommodate extra long titles. This caption auto-sizing facility also allows extra large fonts and bitmaps to be used as banner captions on selected windows.

Background

A couple of years ago, I was writing an VC++/MFC MDI database query application, which presented the query results as tables or lists of data in MDI child windows.

A problem arose with the display of titles based on the queries used for particular windows, such as "Productivity League Table: UK Media companies where Net Turnover > £25,000,000 and Number of Employees > 3500". Some titles would be even longer than this, and were often truncated when displayed as window captions. Things got much worse when users tiled a number of these windows, because they would end up with five or six windows titled "Productivity League Table: UK..." and "Company News Headlines: Finan...", etc. It was obviously a headache to find any particular window of interest when their captions all seemed to say the same thing!

There are several solutions to this kind of problem, such as tooltips or just relying on titles in the client area, but all seem to have irritating drawbacks. I couldn't help feeling that the caption really was the right place even for long titles like these, so you could see at a glance what the window was about. I experimented with owner-draw captions using a 1997 Microsoft Systems Journal C++ Q&A article by Paul DiLascia, that described how to draw shaded colour gradient caption backgrounds. The results were better than I'd expected, so I thought I'd rework them into something anyone could use.

The result is this little kit of classes.

The Classes

  • CCaption: The abstract main class, installs itself into the frame window and manages the caption painting using CCaptionBackground and CCaptionTextAttributes (see below). By default, it paints a standard window caption.
  • CCaptionBackground: Used by CCaption. Paints the caption active and inactive background. By default, it uses the system caption colours.
  • CCaptionTextAttributes: Used by CCaption. Provides the active and inactive caption text fonts and colours. By default, it uses the system caption font and colours.
  • CSingleLineCaption: Derived from CCaption, this provides standard height custom captions for dialogs and other non-MDI Child windows (e.g., frames with menus).
  • CMultiLineCaption: Derived from CCaption, this wraps the caption onto additional lines according to the length of the title and the font size. Only suitable for windows without menus (e.g., MDI child windows), as I haven't yet found a way to modify the default position of menus...
  • CMultiLineCaptionEx: Derived from CMultiLineCaption and extended to fix a weird Windows 95 and WinNT 'feature' that secretly draws a standard caption when mouse activity occurs in the non-client area once the system menu has been displayed. This can spoil the clean appearance of multiline captions, but doesn't affect Windows 2000.
  • CGradientCaptionBackground: Used by CCaption. Derived from CCaptionBackground, paints the active background as a shaded colour gradient (shading to black).
  • CBmpCaptionBackground: Used by CCaption. Paints a bitmap as the active background. An example class in the CaptionDemo project to show how easy it is to derive your own custom background painters.

[Sundry helper classes are also used, notably Paul DiLascia's CSubclassWnd but are not part of the public interface].

How to Use

Declare a caption object (CSingleLineCaption, CMultiLineCaption, or CMultiLineCaptionEx) as a member of your frame window class:

C++
#include "..\CustomCaption\MultiLineCaptionEx.h"

class CChildFrame : public CMDIChildWnd
{
    ...
private:
    ////////////
    // Declare a caption object (this one is an extended multi-line caption)
    //
    CMultiLineCaptionEx m_Caption;
    ...
};

Install the caption in the OnCreate() method of your frame window class (you may need to use the ClassWizard to insert this function.
Note: Select the 'WM_CREATE' message, not the 'Create' message):

C++
int CChildFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
   if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
       return -1;
    
    // TODO: Add your specialized creation code here

   ///////
   // Install caption into frame
   //
   m_Caption.Install(this);

   return 0;
}

That's all there is to it! If you install a Multi-line Caption as above, caption titles too long to fit on a single line will automatically wrap onto new lines. You can change the maximum number of lines the caption will allow, using the SetMaxLines() method.

You can now use the caption object to set the colours and fonts of your caption. To do this, use the CCaption methods to access the CCaptionBackground and CCaptionTextAttributes objects, and modify their contents, e.g.:

C++
/////////////////
// Set active text and background colours
//
COLORREF colorText = RGB(txt_red, txt_green, txt_blue);
COLORREF colorBk = RGB(bk_red, bk_green, bk_blue);

m_caption.GetTextAttributes()->SetActiveColor(colorTxt);
m_caption.GetBackground()->SetActiveColor(colorBk);

/////////////////////
// Get active font and change it to Arial italic
//
LOGFONT lf;
m_caption.GetTextAttributes()->GetActiveFont()->GetLogFont(&lf);
lf.lfFaceName = "Arial";
lf.lfItalic = TRUE;
m_caption.GetTextAttributes()->SetActiveFont(lf);

/////////////////
// Refresh caption so changes take immediate effect
//
m_Caption.Refresh();

To change to a different background style, or to replace all the text attributes in one go, you can create a new CCaptionBackground or CCaptionTextAttributes object, initialize it as required, and set it into the caption, using the CCaption methods SetBackground() or SetTextAttributes():

C++
//////////
// Construct a gradient background object
//
CCaptionBackground* pNewBackground = new CGradientCaptionBackground();

//////////
// Set the colours required
//
pNewBackground->SetCustomColors(ACTIVE_COLOR, INACTIVE_COLOR);

////////////
// Set the new background
//
m_Caption.SetBackground(pNewBackground);

Don't worry about deleting the background or text attributes objects, the caption will take care of that for you.

For full working code showing how to manipulate the various custom captions, see the Caption Demo source code, especially mainfrm.cpp. I have done my best to document all the source code, so it shouldn't be difficult to follow.

Odds & Ends

If anyone can throw some light on the weird WinNT/Win95 secret caption drawing 'feature' that occurs after displaying the window system menu, I'd be very interested (try installing a CMultiLineCaption, set a long window title so the caption wraps to more than one line, then click on the window icon to display the system menu, and you'll see what I mean. The normal window caption gets redrawn whenever the mouse crosses the non-client area or is clicked in the caption, without any NC_PAINT messages being sent). Why?

A tip for displaying bitmaps in captions - if you want a short title to appear at the top of a larger bitmap, append a long string of spaces to the title to persuade it to wrap over more lines.

Downloads

This contains the demo application executable CaptionDemo.exe and the custom caption DLL CustomCaption.dll.

The demo project is actually a VC++6.0 workspace containing two projects, the Caption Demo application, and the Custom Caption DLL project. They install to separate folders, so should be unzipped using the path information.

This contains just the source code for the Custom Caption classes.


Employer's Disclaimer

I am required to include the following disclaimer for my employer:

The views expressed above are those of the author alone and do not necessarily reflect the views of Financial Times Information Limited.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalsuch a pain Pin
mimosa10-Apr-09 14:03
mimosa10-Apr-09 14:03 
GeneralRe: such a pain Pin
Dave Lorde13-Apr-09 0:57
Dave Lorde13-Apr-09 0:57 
GeneralTo the author.... (limits of usage?) Pin
iron5924-Sep-08 17:05
iron5924-Sep-08 17:05 
GeneralRe: To the author.... (limits of usage?) Pin
Dave Lorde25-Sep-08 2:48
Dave Lorde25-Sep-08 2:48 
GeneralRe: To the author.... (limits of usage?) Pin
iron5925-Sep-08 14:44
iron5925-Sep-08 14:44 
JokeOH Pin
shouwangw200724-Nov-07 21:10
shouwangw200724-Nov-07 21:10 
GeneralRe: OH Pin
Dave Lorde25-Nov-07 1:49
Dave Lorde25-Nov-07 1:49 
GeneralThe proplem in SDI Pin
wzh1983122122-Dec-06 22:28
wzh1983122122-Dec-06 22:28 
GeneralRe: The proplem in SDI Pin
Dave Lorde23-Dec-06 3:14
Dave Lorde23-Dec-06 3:14 
GeneralRe: The proplem in SDI Pin
wzh1983122123-Dec-06 21:46
wzh1983122123-Dec-06 21:46 
GeneralThank you for giving me what I really want Pin
wzh1983122122-Dec-06 17:37
wzh1983122122-Dec-06 17:37 
GeneralRe: Thank you for giving me what I really want Pin
Dave Lorde23-Dec-06 3:03
Dave Lorde23-Dec-06 3:03 
GeneralRe: Thank you for giving me what I really want Pin
wzh1983122123-Dec-06 13:04
wzh1983122123-Dec-06 13:04 
QuestionSimple way for just changing window caption font ??? Pin
ana_v12320-May-06 7:43
ana_v12320-May-06 7:43 
QuestionHow can I change the minimized caption height? Pin
xiaofu_yan5-Apr-05 20:40
xiaofu_yan5-Apr-05 20:40 
QuestionHow to remove the custom Caption Pin
pubududilena21-Mar-05 21:17
pubududilena21-Mar-05 21:17 
AnswerRe: How to remove the custom Caption Pin
WTL Student29-Mar-05 11:24
WTL Student29-Mar-05 11:24 
GeneralMDI Frame Title Bar Pin
Neel123454-Apr-04 18:52
Neel123454-Apr-04 18:52 
Generalbug fix for the repainting of the area of Min-Max-Close buttons Pin
baton8-Jan-04 21:34
baton8-Jan-04 21:34 
As noted in the odds & ends section, the most annoying thing I noticed is that windows repaint the area of Min-Max-Close buttons itself(using its default color) without WM_NCPAINT being sent.

With the help of spy++, I noticed windows repaint this area while it processes WM_NCHITTEST (which means that even if you place the mouse on the edge of the frame border, you still have area repainted!) and WM_INITMENU and WM_HELP.

To avoid this behavior, a possible way is to process WM_NCHITTEST ourselves (in CCaption::WindowProc). But it is really a burden. I believe it is not affordable for most users who only want a customized text and background on the title bar(caption).

Observe that WM_NCMOUSEMOVE is always emerging with WM_NCHITTEST, an alternative is to call Refresh() before forwarding it to the default WindowProc().

This partially solves the problem. Another problem is when you click the min button or max button, there is still a transient(although short, but perceptible) that this area has been repainted! To avoid this, call Refresh() before forwarding WM_SYSCOMMAND to the default WindowProc().

In summary, add this code segement into CCaption::WindowProc() (marked by bold font).

LRESULT CCaption::WindowProc(UINT msg, WPARAM wp, LPARAM lp)
{
switch (msg)
{
case WM_NCPAINT:

...


case WM_NCMOUSEMOVE:
case WM_SYSCOMMAND:
case WM_INITMENU:
case WM_HELP:
Refresh();

}
// We don't handle it: pass along
return CSubclassWnd::WindowProc(msg, wp, lp);
}
QuestionCreate new Buttons ? Pin
Harald Diel6-May-03 3:09
Harald Diel6-May-03 3:09 
GeneralCaption height Pin
ofirc23-Jun-02 8:11
ofirc23-Jun-02 8:11 
GeneralRe: Caption height Pin
24-Jun-02 14:08
suss24-Jun-02 14:08 
GeneralRe: Caption height Pin
ofirc25-Jun-02 23:25
ofirc25-Jun-02 23:25 
GeneralRe: Caption height Pin
27-Jun-02 11:57
suss27-Jun-02 11:57 
GeneralRe: Caption height Pin
ofirc29-Jun-02 20:48
ofirc29-Jun-02 20:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.