X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0e616bb3d58fc9f6333449e34994cddbb3628e3..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/msgout.h?ds=sidebyside diff --git a/interface/wx/msgout.h b/interface/wx/msgout.h index e444157e39..e83942f050 100644 --- a/interface/wx/msgout.h +++ b/interface/wx/msgout.h @@ -2,9 +2,8 @@ // Name: wx/msgout.h // Purpose: interface of wxMessageOutput and derived classes // Author: Vadim Zeitlin -// RCS-ID: $Id$ // Copyright: (c) 2009 Vadim Zeitlin -// Licence: wxWindows license +// 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.