X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a9d859df6f433c962a9ed777d2c26da6ce714441..5abc0d2197b49d0ede5aac71c08c2fd693e56498:/src/motif/sockmot.cpp diff --git a/src/motif/sockmot.cpp b/src/motif/sockmot.cpp index 7aaf341d51..4dec63eb92 100644 --- a/src/motif/sockmot.cpp +++ b/src/motif/sockmot.cpp @@ -1,5 +1,5 @@ /////////////////////////////////////////////////////////////////////////////// -// Name: motif/sockmot.cpp +// Name: src/motif/sockmot.cpp // Purpose: implementation of wxMotif-specific socket event handling // Author: Guilhem Lavaux, Vadim Zeitlin // Created: 1999 @@ -15,7 +15,7 @@ #include // XtAppAdd/RemoveInput() #include "wx/motif/private.h" // wxGetAppContext() -#include "wx/private/socket.h" +#include "wx/private/fdiomanager.h" #include "wx/apptrait.h" extern "C" { @@ -38,32 +38,33 @@ static void wxSocket_Motif_Output(XtPointer data, int *WXUNUSED(fid), } -class MotifSocketManager : public wxSocketInputBasedManager +class MotifFDIOManager : public wxFDIOManager { public: - virtual int AddInput(wxFDIOHandler *handler, int fd, SocketDir d) + virtual int AddInput(wxFDIOHandler *handler, int fd, Direction d) { return XtAppAddInput ( wxGetAppContext(), fd, - (XtPointer)(d == FD_OUTPUT ? XtInputWriteMask - : XtInputReadMask), - d == FD_OUTPUT ? wxSocket_Motif_Output - : wxSocket_Motif_Input, + (XtPointer)(d == OUTPUT ? XtInputWriteMask + : XtInputReadMask), + d == OUTPUT ? wxSocket_Motif_Output + : wxSocket_Motif_Input, handler ); } - virtual void RemoveInput(int fd) + virtual void + RemoveInput(wxFDIOHandler* WXUNUSED(handler), int fd, Direction WXUNUSED(d)) { XtRemoveInput(fd); } }; -wxSocketManager *wxGUIAppTraits::GetSocketManager() +wxFDIOManager *wxGUIAppTraits::GetFDIOManager() { - static MotifSocketManager s_manager; + static MotifFDIOManager s_manager; return &s_manager; }