Click here to Skip to main content
15,879,474 members
Articles / Desktop Programming / MFC
Article

CClockST v1.3

Rate me:
Please Sign up or sign in to vote.
4.94/5 (16 votes)
12 Jul 20021 min read 202.1K   7.6K   83   46
A simple digital clock and date class derived from the MFC CStatic class

Sample Image - CClockST.png

Abstract

CClockST
is a class derived from MFC CStatic class. CClockST just subclasses the supplied CStatic control in your dialog and implements a simple clock and date!

Main CClockST features are:

  • An easy way to put a clock in you dialog/application
  • It's free!
  • Full source code included!
  • Cost-less implementation in existing applications

How to integrate CClockST in your application

In your project include the following files:

  • ClockST.h
  • ClockST.cpp
Also include the following bitmap resources:
  • IDB_CLOCKST_PANE (ClockST_pane.bmp)
  • IDB_CLOCKST_BIG (ClockST_big.bmp)
  • IDB_CLOCKST_SMALL (ClockST_small.bmp)
Use dialog editor to create a static text called, for example, IDC_CLOCKFRAME (no matter what size you give it, it will be resized by CClockST) and create a member variable for this static control:
CClockST m_Clock;
Now attach the static control to CClockST. For dialog-based applications, in your OnInitDialog:
// Call the base-class method
CDialog::OnInitDialog();

// Create the clock
m_Clock.SubclassDlgItem(IDC_CLOCKFRAME, this);
Or in your DoDataExchange:
// Call the base method
CDialog::DoDataExchange(pDX);

// Create the clock
DDX_Control(pDX, IDC_CLOCKFRAME , m_Clock);
Now start the clock, passing the ID resources of the bitmaps to use:
// Start clock
m_Clock.Start(IDB_CLOCKST_PANE, IDB_CLOCKST_BIG, IDB_CLOCKST_SMALL);
Your clock is now active! The static control created with dialog editor has been resized to
match the same size of the clock. There is no way to stop the clock once started.

Class methods

Start

Starts (and displays) the clock loading all the necessary bitmaps
and creating the worker thread.

// Parameters:
//     [IN]   nPaneID
//            ID number of the bitmap resource of the whole clock.
//     [IN]   nBigID
//            ID number of the bitmap resource of the big digits.
//     [IN]   nSmallID
//            ID number of the bitmap resource of the small digits.
//     [IN]   bAlternateDateFormat
//            TRUE to display date in mm-dd-yyyy format, else
//            FALSE to display date in dd-mm-yyyy format.
//
// Return value:
//     CLOCKST_OK
//        Function executed successfully.
//     CLOCKST_INVALIDRESOURCE
//        Some error loading bitmaps.
//     CLOCKST_THREADKO
//        Failed creating worker thread.
//
DWORD Start(int nPaneID, int nBigID, int nSmallID, BOOL bAlternateDateFormat = FALSE)
GetVersionI

Returns the class version as a short value.

// Return value:
//     Class version. Divide by 10 to get actual version.
//
static short GetVersionI()
GetVersionC

Returns the class version as a string value.

// Return value:
//     Pointer to a null-terminated string containig the class version.
//
static LPCTSTR GetVersionC()

History

  • v1.3 (10/July/2002)
    Fixed a problem in the OnPaint method
  • v1.2 (29/June/2002)
    Modified the Start method parameter list
  • v1.0 (15/June/1999)
    First release

Disclaimer

THE SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED "AS IS" AND WITHOUT ANY WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO REPONSIBILITIES FOR POSSIBLE DAMAGES OR EVEN FUNCTIONALITY CAN BE TAKEN. THE USER MUST ASSUME THE ENTIRE RISK OF USING THIS SOFTWARE.

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
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAppreciate your wonderful job! Pin
returntorres17-Sep-11 5:16
returntorres17-Sep-11 5:16 

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.