Click here to Skip to main content
15,870,297 members
Articles / Desktop Programming / MFC
Article

Transparent digital clock

Rate me:
Please Sign up or sign in to vote.
4.82/5 (43 votes)
7 Apr 2003CPOL2 min read 149K   10K   97   24
A transparent digital clock program

Introduction

Clock is a simple program in C++ which shows the current local time in a transparent window. When time changes the window region changes as well using only the area necessary for displaying time. Instead of setting a timer to read time, the program uses a thread which posts a WM_CLOCKTIMETICK message each second.

Brief description

Program displays time in 4 LEDs as shown in the following image:

Each LED consists of 7 lines so we need an array of 4 * 7 = 28 elements to describe each line. Each element shows the starting position of the corresponding line and how this is going to be drawn, horizontally or vertically.

// structure that describes each element
typedef struct _MZDrawObj
{
    int xPos; // x-coordinate
    int yPos; // y-coordinate
    char cType; // 1: horizontaly, 2: verticaly
} MZDrawObj;

// array for describing each line
MZDrawObj m_obj[4][7];

We also need to represent each hour (0 to 23) and minute (0 to 59) with the respective lines that will be drawn. In order to achieve this I use an array of 24 elements (WORD m_objHour[24]) for the first 2 LEDs (hour LEDs) and another one of 60 elements (WORD m_objMin[60]) for the last 2 LEDs (minute LEDs). Each element describes exactly which lines will be drawn (7 bits for each LED).

     0                   0
   *****               *****
  *     *             *     *
5 *     * 1         5 *     * 1
  *  6  *             *  6  *
   *****               *****
  *     *             *     *
4 *     * 2         4 *     * 2
  *     *             *     *
   *****               *****
     3                   3

 1st BYTE            2nd BYTE
  • Function InitDrawObj initializes array elements.
  • Function DrawObj draws the specified m_obj element.
  • Function DrawHour draws the specified m_objHour element (hour LEDs).
  • Function DrawMin draws the specified m_objMin element (minute LEDs).
  • Function DrawDot draws the separator dot between hour leds and minute leds. It is called twice.
  • Function DrawTime does the whole drawing.

Defining window region

Variable HRGN m_hWndRgn defines window region. Function DefineWndRegion reads local time and creates window region. When time changes window region changes as well.

Thread function TimeTickThread posts a message each second which calls OnTimeTick responsible for changing window region and drawing the window.

Using the code

Source code is free for anyone who might find it interested.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Greece Greece
Computer Engineer and Engineer of Informatics

Comments and Discussions

 
Generalupgrade to Visual C++ 2005 Pin
EderAndres16-Oct-07 6:05
EderAndres16-Oct-07 6:05 
GeneralRe: upgrade to Visual C++ 2005 Pin
merano4-Jun-10 4:00
merano4-Jun-10 4:00 
GeneralFeatures Request/Suggestions..! Pin
ana_v12327-Sep-06 17:17
ana_v12327-Sep-06 17:17 
AnswerRe: Features Request/Suggestions..! Pin
manos_crete27-Sep-06 21:03
manos_crete27-Sep-06 21:03 
GeneralRe: Features Request/Suggestions..! Pin
merano4-Jun-10 4:18
merano4-Jun-10 4:18 
QuestionHow you make it move by dragging Pin
SohailB29-Jan-06 21:16
SohailB29-Jan-06 21:16 
AnswerRe: How you make it move by dragging Pin
Ice_2k16-Nov-06 4:19
Ice_2k16-Nov-06 4:19 
GeneralWithout TaskBar Icon Pin
Josue Pari Cortez19-Nov-05 6:04
Josue Pari Cortez19-Nov-05 6:04 
Question&=? Pin
DavidRobertson28-Sep-05 5:27
DavidRobertson28-Sep-05 5:27 
AnswerRe: &=? Pin
Ice_2k15-Nov-06 22:26
Ice_2k15-Nov-06 22:26 
GeneralBrilliant, ... simply Brilliant !! Pin
WREY6-Jun-03 12:10
WREY6-Jun-03 12:10 
GeneralAnother .NET transparent clock Pin
Anonymous15-Apr-03 17:02
Anonymous15-Apr-03 17:02 
GeneralA few little problems Pin
mwilliamson8-Apr-03 13:11
mwilliamson8-Apr-03 13:11 
GeneralRe: A few little problems Pin
Robert W.9-Apr-03 1:03
Robert W.9-Apr-03 1:03 
GeneralRe: A few little problems Pin
Ant59-Apr-03 1:39
Ant59-Apr-03 1:39 
GeneralRe: A few little problems Pin
e-DJ9-Jul-03 2:13
e-DJ9-Jul-03 2:13 
GeneralRe: A few little problems Pin
manos_crete9-Apr-03 7:58
manos_crete9-Apr-03 7:58 
GeneralKalo! Pin
Kastellanos Nikos7-Apr-03 23:28
Kastellanos Nikos7-Apr-03 23:28 
QuestionWhy don't you use WM_TIMER? Pin
René Greiner7-Apr-03 20:31
René Greiner7-Apr-03 20:31 
AnswerRe: Why don't you use WM_TIMER? Pin
slawek8-Apr-03 10:02
slawek8-Apr-03 10:02 
GeneralRe: Why don't you use WM_TIMER? Pin
Tommek28-Jun-03 2:58
Tommek28-Jun-03 2:58 
Generalvery nice, but works one hour too erarly Pin
Dieter Hammer7-Apr-03 20:14
Dieter Hammer7-Apr-03 20:14 
GeneralRe: very nice, but works one hour too erarly Pin
Brad Bruce8-Apr-03 2:35
Brad Bruce8-Apr-03 2:35 
GeneralRe: very nice, but works one hour too erarly Pin
EnderJSC17-Aug-05 17:59
EnderJSC17-Aug-05 17:59 

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.