Click here to Skip to main content
15,896,063 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 241.1K   6.8K   63  
Simple customised Window captions, including multi-line captions
#ifndef SYSTEMCAPTIONFONT_H
#define SYSTEMCAPTIONFONT_H

//////////////////////////////////////////////////////////////////////////////////////////
// CSystemCaptionFont provides self-contained access to the default system caption font.
//
// operator() returns a CFont pointer to a font created on demand.
//
// The destructor deletes the font object attached to CSystemCaptionFont.
//
class CSystemCaptionFont
{
public:
	CSystemCaptionFont() {}
	~CSystemCaptionFont();

	CFont* operator()();

private:
	void CreateFont();

	CFont m_Font;
};

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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