Framework for Creating Custom Window Captions

Bitmap Caption Image


Miscellaneous Captions Image

Environment: VC++ 5.0-6.0, NT 4.0, Win95/98, Win2000

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:

#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):

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:

/////////////////
// 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():

//////////
// 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.

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.

The Downloads


Download demo executables -32 Kb
This contains the demo application executable CaptionDemo.exe and the custom caption DLL CustomCaption.dll

Download demo project – 75 Kb
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.

Download source only -25 Kb
This contains just the source code for the Custom Caption classes.

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read