X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8bb6b2c057edbcc5b87f00a8af6ac70f6fd69727..43c5fff8a87655d9969c7b0abfe4f31d9b9f7f5f:/include/wx/os2/apptrait.h diff --git a/include/wx/os2/apptrait.h b/include/wx/os2/apptrait.h index c4b107a0ed..34b5e30233 100644 --- a/include/wx/os2/apptrait.h +++ b/include/wx/os2/apptrait.h @@ -19,6 +19,10 @@ class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase { public: + virtual wxEventLoopBase *CreateEventLoop(); +#if wxUSE_TIMER + virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; }; +#endif }; #if wxUSE_GUI @@ -26,6 +30,10 @@ public: class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase { public: + virtual wxEventLoopBase *CreateEventLoop(); +#if wxUSE_TIMER + virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer); +#endif virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const; // wxThread helpers @@ -36,6 +44,12 @@ public: // Clean up message queue. virtual void TerminateGui(unsigned long ulHab); +#ifdef __WXGTK__ + virtual wxString GetDesktopEnvironment() const; +#endif +#if wxUSE_SOCKETS + virtual GSocketManager *GetSocketManager(); +#endif }; #endif // wxUSE_GUI