X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/msgout.h?ds=sidebyside diff --git a/interface/wx/msgout.h b/interface/wx/msgout.h index 250fa190e3..e83942f050 100644 --- a/interface/wx/msgout.h +++ b/interface/wx/msgout.h @@ -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.