Detailed description of "Go" MFC onidle

Source: Internet
Author: User
Tags case statement message queue

Reprint Source: http://blog.csdn.net/tsing_best/article/details/25055707

CWinApp::OnIdle
virtual BOOL OnIdle(LONG lCount);
return value :
returns a value other than 0 if you want to receive more idle processing time, or 0 if no more idle time is required.
parameters :
Lcount This parameter is a count value, which increases by 1 when the application's message queue is empty and the OnIdle function is called.
whenever a new message is processed, the count value is reset to 0. You can use the Lcount parameter to determine the relative length of idle time when the application does not process messages.
Description :
This member function is overloaded if you want to perform idle-time processing. When the application's message queue is empty, the OnIdle is called in the default message loop.
you can use the overloaded function to invoke your own background idle processing task.
OnIdle should return 0 to indicate that no additional idle processing time is required.
when Message Queuing is empty, the Lcount parameter is incremented each time the OnIdle is called, and a new message lcount is reset to 0 per processing.
you can invoke different idle processing routines based on this count value.

The following summarizes the idle loop processing:
1, If the message loop in the Microsoft Base Class library checks the message queue and discovers that there are no unhandled messages, it calls the OnIdle function for the Application object and sets the Lcount parameter to 0.



This tells the message loop to stop calling OnIdle until the next message is received in the message queue, at which point the idle loop restarts, and the parameter is set to 0.

Note :
The default implementation of OnIdle updates the command user interface objects, such as menu items and toolbars, and also implements the cleanup of internal data structures.
Therefore, if you overload the OnIdle, you must call CWinApp::OnIdle with the Lcount value used in the overloaded version.
The idle processing of all base classes is called first (that is, until OnIdle of the base class returns 0).
If you need to do some work before the base class finishes processing, you should review the implementation of the base class to select an appropriate lcount value during your own work.

Example :
The following two examples illustrate the use of onidle.

The first example deals with two idle tasks, using the Lcount parameter to prioritize these tasks.
The first task has a higher priority, and you should perform this task once it is possible. The second task is not very important and should only be performed if the user enters an interval that has a longer period of time.
Note the call to the base class for OnIdle.
The second example manages a set of idle tasks with different priorities.

bool Cmyapp::onidle (LONG lCount) {bool Bmore=CWinApp::OnIdle (LCount); if(LCount = =0) {TRACE ("App Idle for short period of time/n"); Bmore=TRUE; }Else if(LCount = =Ten) {TRACE ("App idle for longer amount of time/n"); Bmore=TRUE; }Else if(LCount = = -) {TRACE ("App idle for even longer amount of time/n"); Bmore=TRUE; }Else if(LCount = = +) {TRACE ("App idle for quite a long period of time/n"); //Bmore is not set to true and does not need to be idle//Important: Bmore is not set to FALSE because CWinApp::OnIdle may have other idle tasks to complete.     }returnBmore;//returns True, as long as there are other idle tasks}

A second example:
//In this example, there are four idle loop tasks, which are given
//different priorities, different chances of running:
//Task1 is always running during idle time and requires no messages waiting while the framework processes its own idle loop task. (Lcount is 0 or 1)
//Task2 only run when Task1 and runtime require that no messages are waiting while the TASK1 is running.
//TASK3 and TASK4 only run after Task1 and Task2 are running,
//And no messages are waiting during this time. If TASK3 can run,
//The TASK4 always runs immediately after TASK3.
BOOL cmyapp::onidle (LONG lCount)
{
//In this example, like most applications, you should let the base class
//CWinApp::OnIdle in your attempt to make any additional idle loops
//process before completing its processing.
if (CWinApp::OnIdle (LCount)) return TRUE;
//base class CWinApp::OnIdle for Lcount reserved 0 and 1 for frame own
//idle processing is used. If you want to share idle processing equally with the framework,
//time, you should replace the above if statement and call CWinApp::OnIdle directly ,
///Then add a case statement for the value of lcount 0 and/or 1. The first step should be to develop
//The implementation of the base class to understand how your idle loop task will relate to the framework's
//idle cycle processing competition.
switch (lCount)
{
Case 2:
Task1 ();
return TRUE; //Next time give Task2 a chance
Case 3:
Task2 ();
return TRUE; //Next time give Task3 and Task4 a chance
Case 4:
Task3 ();
Task4 ();
return FALSE;//Return to idle loop task again
}
return FALSE;
}
/// Note
in VC dialog-based programs, it seems that onidle cannot be used. Check the Internet, you can use Wm_kickidle message to achieve the same function. Wm_kickidle message response requires you to manually add code. Here are the steps:
The 1.mydlg.cpp file is added with:
#include <afxpriv.h>
2.mydlg.h file Add declaration
afx_msg LRESULT onkickidle (WPARAM WPARAM, LPARAM LPARAM);
3.mydlg.cpp file Add message map:
on_message (Wm_kickidle,onkickidle)
4.mydlg.cpp The implementation of the Add function:
LRESULT Cmydlg::onkickidle (WPARAM WPARAM, LPARAM LPARAM)
{
//------TODO--------------------------------

return 0;
}

Detailed description of "Go" MFC onidle

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.