]>
git.saurik.com Git - wxWidgets.git/blob - src/motif/gsockmot.c
1 /* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
4 * Purpose: GSocket: Motif part
6 * Licence: The wxWindows licence
7 * ------------------------------------------------------------------------- */
14 #include <X11/Intrinsic.h>
15 #include "wx/gsocket.h"
16 #include "wx/unix/gsockunx.h"
18 extern XtAppContext
wxGetAppContext();
20 static void _GSocket_Motif_Input(XtPointer data
, int *fid
,
23 GSocket
*socket
= (GSocket
*)data
;
25 _GSocket_Detected_Read(socket
);
28 static void _GSocket_Motif_Output(XtPointer data
, int *fid
,
31 GSocket
*socket
= (GSocket
*)data
;
33 _GSocket_Detected_Write(socket
);
36 int _GSocket_GUI_Init(GSocket
*socket
)
40 socket
->m_gui_dependent
= (char *)malloc(sizeof(int)*2);
41 m_id
= (int *)(socket
->m_gui_dependent
);
49 void _GSocket_GUI_Destroy(GSocket
*socket
)
51 free(socket
->m_gui_dependent
);
54 void _GSocket_Install_Callback(GSocket
*socket
, GSocketEvent event
)
56 int *m_id
= (int *)(socket
->m_gui_dependent
);
59 if (socket
->m_fd
== -1)
64 case GSOCK_LOST
: /* fall-through */
65 case GSOCK_INPUT
: c
= 0; break;
66 case GSOCK_OUTPUT
: c
= 1; break;
67 case GSOCK_CONNECTION
: c
= ((socket
->m_server
) ? 0 : 1); break;
72 XtRemoveInput(m_id
[c
]);
76 m_id
[0] = XtAppAddInput(wxGetAppContext(), socket
->m_fd
,
77 (XtPointer
*)XtInputReadMask
,
78 (XtInputCallbackProc
) _GSocket_Motif_Input
,
83 m_id
[1] = XtAppAddInput(wxGetAppContext(), socket
->m_fd
,
84 (XtPointer
*)XtInputWriteMask
,
85 (XtInputCallbackProc
) _GSocket_Motif_Output
,
90 void _GSocket_Uninstall_Callback(GSocket
*socket
, GSocketEvent event
)
92 int *m_id
= (int *)(socket
->m_gui_dependent
);
97 case GSOCK_LOST
: /* fall-through */
98 case GSOCK_INPUT
: c
= 0; break;
99 case GSOCK_OUTPUT
: c
= 1; break;
100 case GSOCK_CONNECTION
: c
= ((socket
->m_server
) ? 0 : 1); break;
105 XtRemoveInput(m_id
[c
]);
110 void _GSocket_Enable_Events(GSocket
*socket
)
112 _GSocket_Install_Callback(socket
, GSOCK_INPUT
);
113 _GSocket_Install_Callback(socket
, GSOCK_OUTPUT
);
116 void _GSocket_Disable_Events(GSocket
*socket
)
118 _GSocket_Uninstall_Callback(socket
, GSOCK_INPUT
);
119 _GSocket_Uninstall_Callback(socket
, GSOCK_OUTPUT
);
122 #else /* !wxUSE_SOCKETS */
124 /* some compilers don't like having empty source files */
125 static int wxDummyGsockVar
= 0;
127 #endif /* wxUSE_SOCKETS/!wxUSE_SOCKETS */