Timer Events in MFC Applications

Event timers are always handy to have around and useful in nearly every project. When a timer is readily available, such as the Timer control in Visual Basic, you find all kinds of reasons to use one in an application. The lack of a timer object in MFC is, in my opinion, a serious oversight.

Luckily, Microsoft Windows NT/95 systems provide a number of timers for use by application programs. This tutorial provides information on how to install timers in your MFC application, and how to start, process and stop the timers.

In the final section of the tutorial, we develope a simple timer project which is capable of rough animation of an icon in the dialog window. This project is useful in any compute or I/O bound application, and illustrates the techniques involved with installing and using a system timer.

These steps were developed and tested on a WindowsNT 4.0 workstation and Windows95 using VisualC++ 4.2 with Microsoft Foundation Classes.

Installing a Timer

  • In the header file of the dialog using the timer,
  • Add a message number for each timer needed:

    #define

    IDT_TIMER_0

    WM_USER + 200

    #define

    IDT_TIMER_1

    IDT_TIMER_0 + 1

  • Add the timer interrupt handler

    OnTimer (UINT TimerVal)

    to the Generated Message Map:

  • locate the section under Implementation where the AFX_MSG message map is declared (usually begins with the line OnInitDialog());
  • add a line just after the last line in the message map (just before the "//}}AFX_MSG"):

    afx_msg

    void

    OnTimer (UINT TimerVal);

  • This should be the last entry in the message map.
    • In the dialog implementation (.cpp) file,
  • Locate the dialog class start
  • Find the line starting "BEGIN_MESSAGE_MAP"
  • After the last entry in the message map (before the line "//}}AFX_MSG_MAP"), add

    ON_WM_TIMER ( )

    Starting the timer

    To start the timer, you must issue a SetTimer command:

    t-number = SetTimer (t-messaget-interval, NULL)

    where:

    t-message

    The message number assigned for processing the timer request. 
    This is referred to as IDT_TIMER_0 in the installation instructions.

    t-interval

    The timer duration, in mSec.

    t-number

    The system timer number assigned to this event, or 0 if no timers available.

    For Example:

    UINT StartTimer (UINT TimerDuration)

    {

    UINT TimerVal;

    TimerVal = SetTimer (IDT_TIMER_0, TimerDuration, NULL);

    if (TimerVal == 0)

    {

    MessageBox ("Unable to obtain timer",

    "IDT_TIMER_0",

    MB_OK|MB_SYSTEMMODAL);

    }

    return TimerVal;

    }// end StartTimer

    To start the timer, pass it the value of the timer duration, in milliseconds (mSec). If the returned value is non-zero, the timer has been initialized.

    Note: You must save the assigned timer value in order to stop the timer, and also to know which timer to process in a multi-timer application.

    Stopping the Timer

    To stop the timer, issue the KillTimer command:

    t-result = KillTimer (t-number);

    where:

    t-number

    The system timer number from either the SetTimer or OnTimer methods.

    t-result

    The boolean result of the operation, TRUE indicating success.

    For Example:

    BOOL StopTimer (UINT TimerVal)

    {

    //

    // Stop the timer

    //

    if (!KillTimer (TimerVal))

    {

    return FALSE;

    }

    //

    // Place clean-up code following this point.

    //

    return TRUE;

    } // end StopTimer

    Processing Timer Events - The OnTimer Method

    After the timer has been started, the OnTimer event will be called each time the timer counts down to zero (reaches terminal count) from the requested value. This event is asynchronous to the timer - a message is placed in the message queue of the calling process and the timer is automatically restarted.

    The timer can be stopped (refer to Stopping the Timer) upon entry to the OnTimer routine, or left to run if the event will not occur again before processing the OnTimer routine has completed.

    The OnTimer method will be executed each time the timer reaches terminal count. The code in this method should be short and concise; it should be code which must be executed each time the timer reaches its terminal count, such as changing the view of an animated drawing or icon, or setting a flag to process latter, or starting a thread to handle the more complex functions.

    Example:

    void OnTimer (UINT TimerVal)

    {

    //////////////////////////////////////////////

    //

    // Stop the timer

    //

    //////////////////////////////////////////////

    if (!KillTimer (TimerVal))

    {

    }

    //////////////////////////////////////////////

    //

    // Process the event

    //

    //////////////////////////////////////////////

    //////////////////////////////////////////////

    //

    // Restart the timer, if needed, before exiting

    //

    //////////////////////////////////////////////

    }

    Multiple Timers

    The OnTimer method is passed an unsigned integer (UINT) to identify the timer which is interrupting. The value of this timer may be used to stop the associated timer. It can also be used in a multiple timer environment to determine what type of processing must occur.

    Example:

    Assumptions:

    • The timers are started using the example in the section on Installing a Timer.
    • The timer values are placed sequentially into the array ATimer, as follows:
      • ATimer [0] = StartTimer (200); // a 200 mSec timer
      • ATimer [1] = StartTimer (500); // a 500 mSec timer

    void OnTimer (UINT TimerVal)

    {

    int Index;

    /////////////////////////////////////////////////////////////////////////////

    //

    // Check timer number 0

    //

    ////////////////////////////////////////////////////////////////////////////

    if (TimerVal == ATimer[0])

    {

    //

    // Process timer 0 message!

    //

    return;

    }

    ////////////////////////////////////////////////////////////////////////////

    //

    // check timer number 1

    //

    ////////////////////////////////////////////////////////////////////////////

    if (TimerVal == ATimer[1])

    {

    //

    // Process timer 1 message!

    //

    return;

    }

    ////////////////////////////////////////////////////////////////////////////

    //

    // Not timer number 0 or 1

    //

    ////////////////////////////////////////////////////////////////////////////

    if (!KillTimer (TimerVal))

    {

    }

    CString Message;

    Message.format("Unkown timer interrupt: %u", TimerVal);

    MessageBox (Message,"OnTimer",MB_OK|MB_SYSTEMMODAL);

    } // end OnTimer

    From: https://www.developer.com/net/cplus/article.php/603531/Using-Timers-in-MFC-Applications.htm

Using Timers in MFC Applications的更多相关文章

  1. 基于VC的MFC界面开发

    教你熟悉VC6.0创建一个可视化软件的过程 UpdateData(TRUE);//将输入数据赋给文本框变量. UpdateData(FALSE);//将内容显示在文本框中 AfxMessageBox( ...

  2. 区别:Use MFC In A Shared DLL 和 Use MFC In A Static Library

    摘自:Programming Windows with MFC, 2nd Edition Choosing Use MFC In A Shared DLL minimizes your applica ...

  3. 一些非常好的VC++/MFC开源项目链接

    Introduction List of some of the best Open Source projects written in VC++/MFC. Background Codeproje ...

  4. Some Very Good VC++/MFC Resources Besides Codeproject.com

    Some Very Good VC++/MFC Resources Besides Codeproject.com http://www.naughter.com/ (VC++/MFC huge co ...

  5. 基于MFC的Media Player播放器的制作(4---功能实现代码)

    |   版权声明:本文为博主原创文章,未经博主允许不得转载. PandaPlayerDlg.h // PandaPlayerDlg.h : header file // //{{AFX_INCLUDE ...

  6. 第六篇--MFC美化界面

    1.MFC如何设置背景颜色 首先,为对话框添加WM_CTLCOLOR消息,方法为:右击Dialog窗口 --> Class Wizard --> Messages --> WM_CT ...

  7. MFC 学习笔记

    MFC 学习笔记 一.MFC编程基础: 概述: 常用头文件: MFC控制台程序: MFC库程序: 规则库可以被各种程序所调用,扩展库只能被MFC程序调用. MFC窗口程序: 示例: MFC库中类的简介 ...

  8. C++的简单“五子棋”游戏,只是核心代码,资源代码未添加

    ChessBoard.h #ifndef __CHESS_BOARD_H__ #define __CHESS_BOARD_H__ #include "DataStruct.h" # ...

  9. C++ 使用SQLite

    1.SQLite是一个完全独立的.不需要服务器.不要任何配置.支持SQL的.开源的文件数据库引擎.源代码和支持可以登录:http://www.sqlite.org/   1.1.下载sqlite3.d ...

随机推荐

  1. [多问几个为什么]为什么匿名内部类中引用的局部变量和参数需要final而成员字段不用?(转)

    昨天有一个比较爱思考的同事和我提起一个问题:为什么匿名内部类使用的局部变量和参数需要final修饰,而外部类的成员变量则不用?对这个问题我一直作为默认的语法了,木有仔细想过为什么(在分析完后有点印象在 ...

  2. LPC18xx/43xx OTP Controller driver

    LPC18xx/43xx OTP Controller driver /* * @brief LPC18xx/43xx OTP Controller driver * * @note * Copyri ...

  3. STM32 GPIO 配置之ODR, BSRR, BRR 详解

    STM32 GPIO 配置之ODR, BSRR, BRR 详解 用stm32 的配置GPIO 来控制LED 显示状态,可用ODR,BSRR,BRR 直接来控制引脚输出状态. ODR寄存器可读可写:既能 ...

  4. 通过webbrowser控件获取验证码

    1.首先介绍下基本控件(拖控件大家都会,我就不一一介绍了),看下图: 2.添加MSHTML引用,步骤如下: 解决方案—右键“引用”—​添加引用—在.NET下找到Microsoft.mshtml组件—点 ...

  5. Revit API过滤管道系统类型

    管道只能通过PipeType过滤出来类型属性,只能是系统族的类型属性.管道实例过滤不能用族符号和族实例,要用Pipe using System; using System.Collections.Ge ...

  6. AndroidStudio工具将Module项目导出成Jar和arr库

    原文:http://blog.csdn.net/liulei823581722/article/details/52919697 该篇首先讲述利用AndroidStudio如何把一个module项目导 ...

  7. 【转载】ArcEngine ITable 与System.DataTable相互转换

    /// <summary> /// 打开dbf表 /// </summary> /// <param name="pathName"></ ...

  8. linux文件名称查找which,whereis,locate

    1. 文件名称查找 使用find查询时.因为磁盘查询.所以速度较慢. 所以linux下查询更常使用which, whereis, locate来查询,因为是利用数据库查询.所以速度非常快. 2. wh ...

  9. Sharepoint 开启发布功能的PowerShell

    前言 最近,需要一段开启SharePoint站点发布功能的PowerShell命令,因为很多站点批量开启,去网站集功能和网站功能里分别点很麻烦,就搜了这样的命令,如果有需要的可以看一看. $siteU ...

  10. DES、MD5、RSA加密算法

    本篇主要是实现标题中的三个加密算法,至于机制大家自行百度吧. 一.DES 实现类:DES.java package com.kale.des; import java.security.SecureR ...