Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

The Ultimate Toolbox Static Text Control

0.00/5 (No votes)
25 Aug 2007 1  
A customizable CStatic derived class from the Ultimate Toolbox

Visit the Ultimate Toolbox main page for an overview and configuration guide to the Ultimate Toolbox library.

Source code and project files for this sample can be found in the samples\gui\StaticText directory of the sample projects download.

Overview

The COXStaticText class is a CStatic derived class. The normal look of this control is similar to a static control: it just sets a text string. However, unlike the MFC's CStatic, this class allows a user to give that text a special appearance.

Features

  • Change the text color and background color
  • Set and get the text font and attributes
  • Draw 3D text (embossed text)
  • Draw 3D text (offset in pixels)
  • Scroll text in any direction
  • Set and get scrolling speed (in pixels per second)
  • Draw text at an angle
  • Draw ellipses at the beginning, end or middle of a text string
  • Draw special borders: sunken, raised, flat line, dotted line
  • Multi-threaded, consumes very little processor time when scrolling
  • The appearance of the COXStaticText control can be changed on the fly; a user can set any control property at any moment of time, and the result of this modification will be visible immediately
  • Text scrolling is carried out by a separate worker thread
  • The user can tune the text scrolling smoothness in order to minimize processor consumption

Usage

Create a static control on your CDialog based resource and assign it an ID. Using the Class Wizard or Add Member Variable wizard, add a CStatic member to the dialog class. Next, include the header OXStaticText.h, and change the CStatic member in the AXF_DATA section to a COXStaticText object. You may want to set up some initial properties in your OnInitDialog:

// Set the Static Text window.


LPTSTR    psText = _T("Static Text");
int        /*nTextLeft = 10, nTextTop = 10,*/ nTextHeight = 30;
m_StaticText.SetWindowText(psText);
m_StaticText.SetTextColor(RGB(0, 0, 0));
m_StaticText.SetBkColor(RGB(192, 192, 192));

LOGFONT lf;
if(m_StaticText.GetLogFont(&lf))
{
    lf.lfHeight=nTextHeight;
    lf.lfWidth=0;
    lf.lfItalic=TRUE;
    lf.lfWeight=900;
    m_StaticText.SetLogFont(&lf);
}
m_StaticText.SetFontName(_T("Arial"));

Many other properties can be set as well, as outlined above. A complete class reference for the COXStaticText class can be found in the Graphical User Interface | Static Controls section of the compiled HTML help documentation.

History

Initial CodeProject release August 2007.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here