X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0e616bb3d58fc9f6333449e34994cddbb3628e3..3fc2ee048d6b937017b56104061ad1fff08de09a:/interface/wx/msgout.h diff --git a/interface/wx/msgout.h b/interface/wx/msgout.h index e444157e39..cd44896a15 100644 --- a/interface/wx/msgout.h +++ b/interface/wx/msgout.h @@ -4,7 +4,7 @@ // Author: Vadim Zeitlin // RCS-ID: $Id$ // Copyright: (c) 2009 Vadim Zeitlin -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -113,6 +113,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.