Skip to main content
Email Password   helpLost your password?
  • Download demo project - 372 Kb
  • Download source files - 14 Kb
  • Sample Image - DigiStatic.gif

    Overview

    This article presents a CStatic derived class for displaying numbers or text like a LED Display. This control does not use bitmaps. Everything is drawn with lines and Bezier curves. First I made some classes to draw a character, which consists of segments that can be any closed shape, by only giving some points. The points can be connected by lines or by Bezier curves to make nice smoothened characters. The theory of fitting Bezier curves can be found in bezdist.pdf, created by Jim Fitzsimmons, in my demo project cabinet. The CDigiStatic resizes itself automatically, which can be experienced with the demo app, wherefore I used the resizing dialog code from Hans Bühler.

    To design the characters I looked around for different styles. The best inspiration came out of my car. I used characters from the date/time/temperature display and from my RDS-radio. 14- and 7-segment displays in straight and smooth style are supported and one common character for displaying a decimal point or a colon. I changed the designs a lot to get aesthetically best results, but I didn't go crazy by changing all the points every time because I do some nifty mirroring for most of the segments. For example I only specified 5 segments for the 14 segment display.

    The demo application shows all possibilities of this control.

    Overview of possible Characters

    7-segment straight 7-segment smooth 14-segment straight 14-segment smootht Colon and decimal point

    These are normalized characters with all segments turned on in all styles. The coordinates of these pictures were used to find the corners and Bezier points. You can adjust the coordinates or dimensions if you like. Then you can take them over to the source the same way as I did. The height of every design is the same only the width may be different, necessary for easy scaling.

    Public Functions

    SetText

    void SetText(LPCTSTR lpszText);

    Call this function to set the text of the control. For more info see SetDrawImmediately()

    Format

    void Format(LPCTSTR lpszFormat, ...);
    void Format( UINT nFormatID, ... );

    Call this member function to write formatted data to a CDigiStatic in the same way that sprintf formats data into a C-style character array. This function formats and stores a series of characters and values in the CDigiStatic. Each optional argument (if any) is converted and output according to the corresponding format specification in lpszFormat or from the string resource identified by nFormatID.

    SetColor

    void SetColor(COLORREF OffColor, COLORREF OnColor);

    Sets the on and off color of the segments of the CDigiStatic control. Segments that are off will not be painted when the DS_NO_OFF style is used.

    GetOnColor

    COLORREF GetOnColor() const

    Call this member function to retrieve the color that is used to indicate the segment is on

    GetOffColor

    COLORREF GetOffColor() const

    Call this member function to retrieve the color that is used to indicate the segment is off

    SetDrawImmediately

    void SetDrawImmediately(BOOL Enable = TRUE);

    If Enable set to TRUE a call to SetText() or Format() will redraw the window before the function returns. If Enable set to FALSE (the default of CDigiStatic) the client area is marked for painting when the next WM_PAINT message occurs.

    SetBkColor

    COLORREF SetBkColor(COLORREF BackColor = BLACK);

    Sets the current background color to the specified color and returns the previous background color. The value of the background color will be ignored when Transparency mode is enabled.

    SetTransparent

    void SetTransparent(BOOL bSet = TRUE);

    Set to TRUE only the segments will be drawn and the background will be transparent and show the window underneath it. Nice if you use a skinned window. Set to FALSE will fill the background with the current background color.

    ModifyDigiStyle

    BOOL ModifyDigiStyle(DWORD dwRemove, DWORD dwAdd);

    With the ModifyDigiStyle function you can add or remove specific CDigiStatic styles. The styles, which can be combined by using the bitwise OR ( | ) operator, are:

    How to use (in a dialog):

    1. Add digistatic.h, digistatic.cpp, memdc.h, curvefit.h, curvefit.cpp and rgbcolor.h to your project environment.
    2. Add a static control to your dialog resource.
    3. Change its ID to something like IDC_LEDTEXT, open class-wizard and assign a member variable, type control (CStatic) to it (m_LedText for example).
    4. Open your dialog class's header file. Add #include "digistatic.h". Find the line CStatic m_LedText and replace the CStatic by CDigiStatic.
    5. In OnInitDialog() you can give it some text with SetText(), change the colors with SetColor() or for the background SetBkColor(). Or, you can set the right style with ModifyDigistyle().
    6. Compile and run.

    Acknowledgements

    History

    Version Comments
    1.0 February 2000 First release version. Finally I could say goodbye to my old class with bitmaps and enjoy the new quality. This nice control just had to be shared
    1.1 April 2001 Use Caption as default text. Changed from STL to Afx templates. After a suggestion I changed SetBackColor to SetBkColor. I apologize for keeping this baby for myself because I wanted to add and change more
    1.2 May 2002 Added option to draw immediately. Changed CDigiString to CDigiStatic because it is a derived from a Static control. After giving no problems for long time it was ready to be released again
    1.3 October 2002 Added transparency option with help of Daniel. Introduction of 5 new characters /\[]' (suggested by daniel for using in his great Winamp plugin). Added new DS_NO_OFF and DS_SOFT styles to respectively not to show segments that are "off" and to remove the soft edge of a segment. Improved demo app with skin was created to show all the options. This will be the third release and I call it the "feature update"
    You must Sign In to use this message board.
     
     
    Per page   
     FirstPrevNext
    GeneralGreat but out of date Pin
    tlhintoq
    9:37 15 Sep '09  
    GeneralRe: Great but out of date Pin
    Apuhjee
    8:17 22 Oct '09  
    GeneralMemory leak Pin
    Max2351
    1:00 1 Mar '06  
    GeneralRe: Memory leak Pin
    Michel Wassink
    3:40 1 Mar '06  
    QuestionRe: Memory leak Pin
    Willi_83
    13:01 7 Jul '09  
    AnswerRe: Memory leak Pin
    Michel Wassink
    11:26 9 Jul '09  
    GeneralRe: Memory leak Pin
    Willi_83
    10:23 26 Jul '09  
    GeneralModify for displaying comma Pin
    Samuele
    0:00 1 Feb '06  
    GeneralUsing in a CFormView Pin
    sbt1
    8:40 8 Oct '05  
    GeneralSolution- for anyone else trying to do this Pin
    sbt1
    13:51 8 Oct '05  
    GeneralCompiling errors Pin
    kezhu
    18:33 1 Sep '05  
    GeneralRe: Compiling errors Pin
    Rick York
    19:54 1 Sep '05  
    GeneralRe: Compiling errors Pin
    Michel Wassink
    20:54 1 Sep '05  
    GeneralFANTASTIC code !!! Pin
    KurtCocain
    10:47 17 Aug '04  
    GeneralRe: FANTASTIC code !!! Pin
    Michel Wassink
    20:45 5 Oct '04  
    GeneralCompilation Errors Pin
    rmnowick
    16:22 9 Mar '04  
    GeneralRe: Compilation Errors Pin
    rmnowick
    16:37 9 Mar '04  
    GeneralRe: Compilation Errors Pin
    Michel Wassink
    20:45 9 Mar '04  
    GeneralRe: Compilation Errors Pin
    rmnowick
    6:33 10 Mar '04  
    GeneralRe: Compilation Errors Pin
    rmnowick
    14:47 10 Mar '04  
    GeneralRe: Compilation Errors Pin
    ananth_rs
    22:36 5 May '06  
    GeneralWTL Version? Pin
    mjsiers
    12:06 19 Nov '03  
    GeneralWonderful Piece of Code Pin
    Karen0302
    7:40 7 Nov '03  
    GeneralRe: Wonderful Piece of Code Pin
    Michel Wassink
    20:59 9 Nov '03  
    GeneralSmall Pin
    Bamaco
    10:40 24 Mar '03  


    Last Updated 5 Oct 2002 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009