Click here to Skip to main content
Licence 
First Posted 21 Jul 2002
Views 86,020
Bookmarked 22 times

OnIdle() implementation for CDialog based app´s

By | 21 Jul 2002 | Article
Simple implementation for the OnIdle function in the CDialog derived classes

Introduction

A very common and powerful programming tool for MFC applications is the idle time processing, which allows the programmer to be noticed when there aren't pending messages for the current thread. I was surprised when coding a dialog based application I found that this wonderful advantage was not available, due to the synchronous nature of the DoModal() method. Now the target is implementing the same functionality on a CDialog derived class.

The WM_IDLE loop trick

The code I made to solve this problem is really simple, it uses the GetQueueStatus function to check the message queue state. If there are not pending messages, it posts the WM_IDLE message to the current window, allowing it to call OnIdle(). Of course, all this code is implemented in an overridden version of WindowProc().

Emulating the behaviour of the lCount parameter (used to calculate how many idle time has passed since the last false return of OnIdle()) is self-explained in the following source code.

LRESULT CMyDialog::WindowProc(UINT message, 
                WPARAM wParam, LPARAM lParam)
{
    DWORD QueueStatus;
    LRESULT resValue = 0;
    bool OnIdleRetVal = true;

    if(message == WM_IDLE) {
        OnIdleRetVal = OnIdle((UINT)wParam);
        if(!OnIdleRetVal)
            wParam = 0;
    } else
        resValue = CDialog::WindowProc(message, 
        wParam, lParam);

    QueueStatus = GetQueueStatus(QS_ALLINPUT);

    if(HIWORD(QueueStatus) == 0)
        PostMessage(WM_IDLE, 
            wParam + (OnIdleRetVal ? 1 : 0), 0);

    return resValue;
}

Conclusion

Of course, OnIdle() should be declared and implemented in the class. The working mechanism, tips and tricks of the OnIdle function are explained on the CWinApp documentation part of the MSDN Library, so they will be not explained here for saving time and bytes ;).

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

About the Author

Emilio Guijarro

Instructor/Trainer

Netherlands Netherlands

Member

Emilio is a Computer Engineer currently working as software engineer in embedded systems.
 
Main interests are C/C++ programming, algorithmics, compilers, embedded systems, cryptography, and operating systems.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralThanks, that was handy PinmemberYusuf X10:58 16 Jan '07  
GeneralUse CDialog's WM_TIMER PinsussSanj Gunetileke7:26 9 Jun '05  
Generalenable and disable of this OnIdle trick during the execution of the program Pinmembergehrti23:52 28 Apr '05  
GeneralLittle out of topic, but important Pinmemberppppvvvv5:21 3 Sep '03  
GeneralA slight issue PineditorNishant S14:59 1 Aug '02  
GeneralRe: A slight issue Pinsuss9:11 2 Aug '02  
QuestionWhat about WM_KICKIDLE? PinmemberGeorge16:47 23 Jul '02  
AnswerRe: What about WM_KICKIDLE? PinmemberEmilio Guijarro9:44 24 Jul '02  
Thanks for the info, I didn´t see ti before in my VC++ documentation.
 
Thanks again.
 
"nobody knows it, but you´ve got a secret smile, and you use it only for me"
QuestionWhat about WM_IDLEUPDATECMDUI? PinmemberNeville Franks11:24 22 Jul '02  
AnswerRe: What about WM_IDLEUPDATECMDUI? PinmemberEmilio Guijarro7:33 23 Jul '02  
GeneralRe: What about WM_IDLEUPDATECMDUI? PinmemberNeville Franks15:09 23 Jul '02  
GeneralRe: What about WM_IDLEUPDATECMDUI? PinmemberEmilio Guijarro9:42 24 Jul '02  
AnswerRe: What about WM_IDLEUPDATECMDUI? PinmemberJiang Sheng18:20 22 Mar '04  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 22 Jul 2002
Article Copyright 2002 by Emilio Guijarro
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid