]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/msgout.h
Ensure that the overall table border doesn't get overdrawn by cell borders with a...
[wxWidgets.git] / interface / wx / msgout.h
index 250fa190e302035209410656e1991c05721828ba..e83942f050cc5bc0c89e5de960f2415acd21e17b 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        wx/msgout.h
 // Purpose:     interface of wxMessageOutput and derived classes
 // Author:      Vadim Zeitlin
-// RCS-ID:      $Id$
 // Copyright:   (c) 2009 Vadim Zeitlin
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -113,6 +112,17 @@ public:
     wxMessageOutputStderr(FILE *fp = stderr);
 };
 
+/**
+    Flags used with wxMessageOutputBest.
+
+    See wxMessageOutputBest::wxMessageOutputBest().
+ */
+enum wxMessageOutputFlags
+{
+    wxMSGOUT_PREFER_STDERR = 0, ///< use stderr if available (this is the default)
+    wxMSGOUT_PREFER_MSGBOX = 1  ///< always use message box if available
+};
+
 /**
     Output messages in the best possible way.