]> git.saurik.com Git - wxWidgets.git/commit - src/os2/sockpm.cpp
Cleanly separate GUI socket-related code from net library.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 17 Aug 2009 23:02:46 +0000 (23:02 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 17 Aug 2009 23:02:46 +0000 (23:02 +0000)
commit6bcc1145fea1fbe4f4fd492199d1482f95fac5fd
tree2d9fc9eaa7b5a5473c90a9519b50a601f58ece56
parentb79dfbca98c3b48a954675393c07abfd4eed7dea
Cleanly separate GUI socket-related code from net library.

This fixes linking problems under Unix introduced by recent changes which
fixed previous problems which were due to files not being linked in at all.

In order to provide a clean separation between base, net and core libraries we
now use the same wxSocketManager (wxSocketFDBasedManager), defined in net
library for both console and GUI Unix applications and just use different FD
IO manager for them: the latter can be defined in base and core libraries as
it doesn't involve wxSocketImpl at all, only its base wxFDIOHandler class.

At more detailed level, these changes required:
 1. Adding the new wxFDIOManager class.
 2. Refactoring the old (and now removed) wxSocketFDIOManager to use the same
    code as wxSocketFDIOManager. This involved:
  a) Adding handler and direction parameter to RemoveInput().
  b) Storing the mask of registered events in wxFDIOHandler itself.
  c) Defining wxFDIOManagerUnix which works with wxFDIODispatcher.
 3. Changing the traits classes in Unix ports to define GetFDIOManager()
    instead of GetSocketManager().

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61688 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
16 files changed:
Makefile.in
build/bakefiles/files.bkl
include/wx/os2/apptbase.h
include/wx/os2/apptrait.h
include/wx/private/fdiohandler.h
include/wx/private/fdiomanager.h [new file with mode: 0644]
include/wx/unix/apptbase.h
include/wx/unix/apptrait.h
include/wx/unix/private/fdiounix.h [new file with mode: 0644]
include/wx/unix/private/sockunix.h
src/common/socketiohandler.cpp
src/gtk/sockgtk.cpp
src/gtk1/sockgtk.cpp
src/motif/sockmot.cpp
src/os2/sockpm.cpp
src/unix/fdiounix.cpp [new file with mode: 0644]