Click here to Skip to main content
15,892,697 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 240.9K   6.8K   63  
Simple customised Window captions, including multi-line captions
#ifndef GRADIENT_CAPTION_H
#define GRADIENT_CAPTION_H

/////////////////////////////////
// Class for painting a windows caption background as
// a shaded gradient.
//
// Used by custom caption class CCaption and its derived classes.
//
//
//	Author: Dave Lorde	(dlorde@cix.compulink.co.uk)
//
//          Copyright January 2000
//

#include "CaptionBackground.h"

class AFX_EXT_CLASS CGradientCaptionBackground : public CCaptionBackground
{
public:
	void Paint(CDC* pDC, CSize paintArea, BOOL active);
};

#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