]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/app.h
changed removed wxToUpper to standard toupper
[wxWidgets.git] / include / wx / msw / app.h
index 4b17c47a422eb96836f1e36ad0eb073e667b5e9d..c5cbcfcd066a5747e5829d7fc4c045c4907a0f7f 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/defs.h"
 #include "wx/object.h"
+#include "wx/event.h"
 
 class WXDLLEXPORT wxFrame;
 class WXDLLEXPORT wxWindow;
@@ -57,7 +58,7 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
   void OnEndSession(wxCloseEvent& event);
   void OnQueryEndSession(wxCloseEvent& event);
 
-// Generic
+  // Generic
   virtual bool OnInit() { return FALSE; };
 
   // No specific tasks to do here.
@@ -67,6 +68,10 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
   virtual int OnRun() { return MainLoop(); };
   virtual int OnExit() { return 0; }
 
+  // called when a fatal exception occurs, this function should take care not
+  // to do anything which might provoke a nested exception!
+  virtual void OnFatalException() { }
+
   inline void SetPrintMode(int mode) { m_printMode = mode; }
   inline int GetPrintMode() const { return m_printMode; }
 
@@ -139,6 +144,9 @@ public:
   virtual bool ProcessMessage(WXMSG* pMsg);
   void DeletePendingObjects();
   bool ProcessIdle();
+#if wxUSE_THREADS
+  void ProcessPendingEvents();
+#endif
   int GetComCtl32Version() const;
 
 public: