// "trivial" derivations of wxLog
// ----------------------------------------------------------------------------
+#if wxABI_VERSION > 20601
+
// log everything to a buffer
class WXDLLIMPEXP_BASE wxLogBuffer : public wxLog
{
DECLARE_NO_COPY_CLASS(wxLogBuffer)
};
+#endif // wxABI_VERSION
+
// log everything to a "FILE *", stderr by default
class WXDLLIMPEXP_BASE wxLogStderr : public wxLog
{
// otherwise; unlike wxMessageOutputMessageBox this class is always safe to use
// ----------------------------------------------------------------------------
+#if wxABI_VERSION > 20601
+
class WXDLLIMPEXP_BASE wxMessageOutputBest : public wxMessageOutput
{
public:
virtual void Printf(const wxChar* format, ...) ATTRIBUTE_PRINTF_2;
};
+#endif // wxABI_VERSION
+
// ----------------------------------------------------------------------------
// implementation which sends output to stderr
// ----------------------------------------------------------------------------
#endif // wxUSE_ON_FATAL_EXCEPTION
+#if wxABI_VERSION > 20601
// Launch url in the user's default internet browser
WXDLLIMPEXP_BASE bool wxLaunchDefaultBrowser(const wxString& url);
+#endif
// ----------------------------------------------------------------------------
// Environment variables
// This method understands VFS (see filesys.h).
bool Load(const wxString& filemask);
+#if wxABI_VERSION > 20601
// Unload resource from the given XML file (wildcards not allowed)
bool Unload(const wxString& filename);
+#endif // wxABI_VERSION
// Initialize handlers for all supported controls/windows. This will
// make the executable quite big because it forces linking against
wxObject *instance = NULL,
wxXmlResourceHandler *handlerToUse = NULL);
+#if wxABI_VERSION > 20601
// Helper of Load() and Unload(): returns the URL corresponding to the
// given file if it's indeed a file, otherwise returns the original string
// unmodified
static bool IsArchive(const wxString& filename);
#endif // wxUSE_FILESYSTEM
+#endif // wxABI_VERSION
+
private:
long m_version;