X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/324899f6c5fa0e052dc718b9b37fc6f557dc78ba..8fef2a9b08766582f18a87f675ad574eba58e640:/include/wx/apptrait.h diff --git a/include/wx/apptrait.h b/include/wx/apptrait.h index 164f042bd7..1f3e30f3b7 100644 --- a/include/wx/apptrait.h +++ b/include/wx/apptrait.h @@ -24,6 +24,11 @@ class WXDLLIMPEXP_BASE wxMessageOutput; class WXDLLEXPORT wxRendererNative; class WXDLLIMPEXP_BASE wxString; +extern "C" +{ + struct GSocketGUIFunctionsTable; +} + // ---------------------------------------------------------------------------- // toolkit information // ---------------------------------------------------------------------------- @@ -105,6 +110,11 @@ public: // wxBase virtual void RemoveFromPendingDelete(wxObject *object) = 0; +#if wxUSE_SOCKETS + // return table of GUI callbacks for GSocket code or NULL in wxBase + virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable() = 0; +#endif + // return information about what toolkit is running; we need for two things // that are both contained in wxBase: @@ -124,7 +134,7 @@ public: // Unix code (and otherwise __UNIX__ wouldn't be defined) #if defined(__WXMSW__) #include "wx/msw/apptbase.h" -#elif defined(__UNIX__) +#elif defined(__UNIX__) && !defined(__EMX__) #include "wx/unix/apptbase.h" #elif defined(__WXMAC__) #include "wx/mac/apptbase.h" @@ -154,6 +164,9 @@ public: virtual wxFontMapper *CreateFontMapper(); #endif // wxUSE_FONTMAP virtual wxRendererNative *CreateRenderer(); +#if wxUSE_SOCKETS + virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable(); +#endif #ifdef __WXDEBUG__ virtual bool ShowAssertDialog(const wxString& msg); @@ -181,6 +194,9 @@ public: virtual wxFontMapper *CreateFontMapper(); #endif // wxUSE_FONTMAP virtual wxRendererNative *CreateRenderer(); +#if wxUSE_SOCKETS + virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable(); +#endif #ifdef __WXDEBUG__ virtual bool ShowAssertDialog(const wxString& msg); @@ -199,15 +215,22 @@ public: #if defined(__WXMSW__) #include "wx/msw/apptrait.h" -#elif defined(__UNIX__) +#elif defined(__UNIX__) && !defined(__EMX__) #include "wx/unix/apptrait.h" #elif defined(__WXMAC__) #include "wx/mac/apptrait.h" -#else // no platform-specific methods to add to wxAppTraits +#else + // at least, we need an implementation of GetToolkitInfo ! #if wxUSE_GUI - typedef wxGUIAppTraitsBase wxGUIAppTraits; + class wxGUIAppTraits : public wxGUIAppTraitsBase + { + virtual wxToolkitInfo& GetToolkitInfo(); + }; #endif // wxUSE_GUI - typedef wxConsoleAppTraitsBase wxConsoleAppTraits; + class wxConsoleAppTraits: public wxConsoleAppTraitsBase + { + virtual wxToolkitInfo& GetToolkitInfo(); + }; #endif // platform #endif // _WX_APPTRAIT_H_