Click here to Skip to main content
15,879,535 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

 
GeneralRe: CStatic ?? help pls ! Pin
TontOnduWeb24-Jul-03 21:33
TontOnduWeb24-Jul-03 21:33 
GeneralStop Watch Option Wanted Pin
bachi22-Jun-03 19:55
bachi22-Jun-03 19:55 
GeneralRe: Stop Watch Option Wanted Pin
Davide Calabro24-Jul-03 20:59
Davide Calabro24-Jul-03 20:59 
GeneralRe: Stop Watch Option Wanted Pin
bachi25-Jul-03 3:36
bachi25-Jul-03 3:36 
GeneralRe: Stop Watch Option Wanted Pin
Davide Calabro25-Jul-03 4:15
Davide Calabro25-Jul-03 4:15 
Generalinvisible Pin
jiangyuyong21-May-03 22:16
jiangyuyong21-May-03 22:16 
Generalerror C2065: 'RT_GROUP_BITMAP' : undeclared identifier Pin
jiangyuyong22-Jan-03 14:12
jiangyuyong22-Jan-03 14:12 
Generalmistake Pin
jiangyuyong22-Jan-03 17:07
jiangyuyong22-Jan-03 17:07 
GeneralClock Size Pin
Anonymous15-Oct-02 19:34
Anonymous15-Oct-02 19:34 
GeneralRe: Clock Size Pin
Davide Calabro15-Oct-02 20:59
Davide Calabro15-Oct-02 20:59 
GeneralGREAT, but a little problem Pin
Schnemar9-Jul-02 4:30
Schnemar9-Jul-02 4:30 
GeneralRe: GREAT, but a little problem Pin
Davide Calabro9-Jul-02 6:21
Davide Calabro9-Jul-02 6:21 
GeneralHere is the fix Pin
Davide Calabro9-Jul-02 21:45
Davide Calabro9-Jul-02 21:45 
GeneralRe: Here is the fix Pin
Schnemar9-Jul-02 22:49
Schnemar9-Jul-02 22:49 
GeneralHELP!!!! Pin
Footan2-Jul-02 10:54
Footan2-Jul-02 10:54 
GeneralRe: HELP!!!! Pin
Davide Calabro2-Jul-02 21:35
Davide Calabro2-Jul-02 21:35 
GeneralRe: HELP!!!! Pin
Footan3-Jul-02 4:58
Footan3-Jul-02 4:58 
GeneralRe: HELP!!!! Pin
cshyung2-Jul-07 15:37
cshyung2-Jul-07 15:37 
GeneralVery nice! Pin
Ravi Bhavnani2-Jul-02 3:42
professionalRavi Bhavnani2-Jul-02 3:42 
GeneralWonderful !!! Pin
WREY1-Jul-02 23:54
WREY1-Jul-02 23:54 
GeneralRe: Wonderful !!! Pin
Davide Calabro2-Jul-02 1:35
Davide Calabro2-Jul-02 1:35 

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.