]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/unix/apptrait.h
allow handling events in a function taking the base class of the event class correspo...
[wxWidgets.git] / include / wx / unix / apptrait.h
index ca2570d55e26ab8eb7103c06d524927179308397..d29686af5716165146e052d3e6bd6e14a16c48bb 100644 (file)
@@ -37,7 +37,12 @@ public:
 //       no advantage in doing this compared to the generic way currently used
 //       by wxX11, should we continue to use GTK/Motif- specific stuff?
 #if defined(__WXGTK__) || defined(__WXMOTIF__)
-    #define wxHAS_GUI_CALLBACKS
+    #define wxHAS_GUI_PROCESS_CALLBACKS
+    #define wxHAS_GUI_SOCKET_MANAGER
+#endif
+
+#ifdef __DARWIN__
+    #define wxHAS_GUI_PROCESS_CALLBACKS
 #endif
 
 class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
@@ -45,8 +50,9 @@ class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
 public:
     virtual wxEventLoopBase *CreateEventLoop();
     virtual int WaitForChild(wxExecuteData& execData);
-#ifdef wxHAS_GUI_CALLBACKS
+#ifdef wxHAS_GUI_PROCESS_CALLBACKS
     virtual int AddProcessCallback(wxEndProcessData *data, int fd);
+#endif
 #if wxUSE_TIMER
     virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
 #endif
@@ -74,8 +80,8 @@ public:
     virtual bool ShowAssertDialog(const wxString& msg);
 #endif
 
-#if wxUSE_SOCKETS && defined(wxHAS_GUI_CALLBACKS)
-    virtual GSocketManager *GetSocketManager();
+#if wxUSE_SOCKETS && defined(wxHAS_GUI_SOCKET_MANAGER)
+    virtual wxSocketManager *GetSocketManager();
 #endif
 };