]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
Add option FILE* parameter to wxMessageOutputStderr ctor, just as with wxLogStderr.
[wxWidgets.git] / include / wx / app.h
index f754a7b117f5b524c47362e8e01f836c11dfef11..a4478b6977027e836f26acbd2fb16437540836aa 100644 (file)
@@ -320,6 +320,8 @@ public:
     // wxEventLoop redirections
     // ------------------------
 
+    // all these functions are forwarded to the corresponding methods of the
+    // currently active event loop -- and do nothing if there is none
     virtual bool Pending();
     virtual bool Dispatch();
 
@@ -329,6 +331,13 @@ public:
     bool Yield(bool onlyIfNeeded = false);
 
     virtual void WakeUpIdle();
+
+    // this method is called by the active event loop when there are no events
+    // to process
+    //
+    // by default it generates the idle events and if you override it in your
+    // derived class you should call the base class version to ensure that idle
+    // events are still sent out
     virtual bool ProcessIdle();