ET++: Stepping through a left mouse click in a button
This is the main event loop. It executes repeatedly until the application terminates.
Each time through the loop, it calls
System::InnerLoop()
to do the event handling work.
void System::Control()
{
done= FALSE;
while (! done) {
InnerLoop();
if (level == 0 && cleanupList)
Remove();
}
}
Back to the method call sequence