Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / MFC
Article

CLEDScreen class - LED digital screen with transparency

Rate me:
Please Sign up or sign in to vote.
4.17/5 (8 votes)
25 Jan 20052 min read 83.6K   4.3K   63   11
A CStatic derived digital LED screen with transparency. Based on "CStaticTime class" of Jason Hattingh.

Sample Image - LEDScreen.gif

Introduction

Firstly, excuse me for my bad English.

I long searched for such a class which would allow me to emulate the beautiful digital screen in my program. Class CStaticTime (author Jason Hattingh, An LED time and value display control) appeared better than others. But in this class, there was no opportunity to set a transparency and there were not many functions necessary to me. Therefore, I have considerably altered the class CStaticTime, and the new class CLEDScreen has only a few similarities with the original.

Idea

As for most simple cases, realization of a transparency for me was the use of the function TransparentBlt(). I have refused drawing directly at a window and have applied drawing in memory ("background canvas").

At initialization of a class in memory, "the storehouse of ready symbols" (symbDC) is created and also "background canvas" (backDC). During change of contents of the LEDScreen, the class takes from symbDC a ready symbol necessary and transfers it to backDC. When it is necessary to update a window, a class takes the contents of backDC and transfers it to a window with TransparentBlt().

How To Use

Using the class is very simple.

  1. Create project.
  2. Link library msimg32.lib to project.
  3. Add LEDScreen source files to project.
  4. Place on a dialog any bitmap image (picture static). This is optional.
  5. Place on a dialog (owner bitmap if exists) CStatic. With ClassWizard, create variable m_screen for this CStatic.
  6. In your dialog declaration, rename CStatic m_screen to CLEDScreen m_screen. Like this:
    // MyDlg.h
    class CMyDlg : public CDialog
    {
     public:
     ...
     // Dialog Data
     //{{AFX_DATA(CMyDlg)
     enum { IDD = IDD_MY_DLG };
     CLEDScreen m_screen;
     ...
     //}}AFX_DATA
     ...
    }
  7. Add to function OnInitDialog() a code of initialization of an object m_screen, like this:
    // MyDlg.cpp
     BOOL CMyDlg::OnInitDialog()
     {
      ...
      m_screen.SetBackWnd(&m_stback); //CStatic m_stback (picture)
    
      m_screen.SetColourForeGround(RGB(0,0,0));
      m_screen.SetColourFaded(RGB(55,136,230));
    
      m_screen.SetRightAlignement();
      m_screen.SetDrawTransparent(true);
      m_screen.SetDrawFaded(true);
      m_screen.SetSymbolParams(0, 5, 0, 2);
      ...
    }
  8. Use functions CLEDScreen::Append(CString str), etc.:
    CLEDScreen::Append(CString str);
    CLEDScreen::Backspace();
    CLEDScreen::Clear();
    CLEDScreen::StepBack(); //scrolling
    CLEDScreen::StepForward(); //scrolling
    

To Do

  • Own bitmap instead of separate CStatic for background picture.

History

  • Version 0.1 (2005-01-10)
    • First realization.
  • Version 0.2 (2005-01-19)
    • right alignment is added.
    • drawing procedures are corrected.
  • Version 0.3 (2005-01-20)
    • scrolling of long contents is added
    • blinking is reduced

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


Written By
Web Developer
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionCant get updated draw cycles in CFormView and VS2008? Pin
dougwilliams28-Jun-09 11:32
dougwilliams28-Jun-09 11:32 
GeneralLink library Pin
weehau30-Nov-06 3:44
weehau30-Nov-06 3:44 
GeneralRe: Link library Pin
toxcct30-Nov-06 3:51
toxcct30-Nov-06 3:51 
Questionwere is the demo !? Pin
toxcct19-Jan-05 3:57
toxcct19-Jan-05 3:57 
AnswerRe: were is the demo !? Pin
olden6919-Jan-05 4:23
olden6919-Jan-05 4:23 
GeneralRe: were is the demo !? Pin
toxcct19-Jan-05 6:36
toxcct19-Jan-05 6:36 
GeneralRe: were is the demo !? Pin
olden6919-Jan-05 23:54
olden6919-Jan-05 23:54 
I am surprised. The subj (*.exe) is present Frown | :(
http://www.codeproject.com/staticctrl/LEDScreen/LEDScreen_demo.zip
GeneralRe: were is the demo !? Pin
toxcct20-Jan-05 2:49
toxcct20-Jan-05 2:49 
Generaltoo late :( Pin
Bamaco213-Jan-05 11:49
Bamaco213-Jan-05 11:49 
GeneralRe: too late :( Pin
yingyuheng13-Jan-05 18:14
yingyuheng13-Jan-05 18:14 
GeneralRe: too late :( Pin
olden6913-Jan-05 21:56
olden6913-Jan-05 21:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.