]> git.saurik.com Git - wxWidgets.git/blame - src/x11/gsockx11.c
applied the workaround for XUnionRectWithRegion() returning ampty result if the rect...
[wxWidgets.git] / src / x11 / gsockx11.c
CommitLineData
83df96d6
JS
1/* -------------------------------------------------------------------------
2 * Project: GSocket (Generic Socket) for WX
3 * Name: gsockmot.c
bc797f4c 4 * Purpose: GSocket: X11 part
83df96d6
JS
5 * CVSID: $Id$
6 * ------------------------------------------------------------------------- */
7
8#include "wx/setup.h"
9
10#if wxUSE_SOCKETS
11
12#include <stdlib.h>
83df96d6
JS
13#include "wx/gsocket.h"
14#include "wx/unix/gsockunx.h"
15
52127426 16/*
2d1084ea 17 * FIXME: have these in a common header instead of being repeated
52127426
JS
18 * in evtloop.cpp and gsockx11.c
19 */
bc797f4c 20
52127426 21typedef void (*wxSocketCallback) (int fd, void* data);
83df96d6 22
52127426
JS
23typedef enum
24{ wxSocketTableInput, wxSocketTableOutput } wxSocketTableType ;
25
26void wxRegisterSocketCallback(int fd, wxSocketTableType socketType, wxSocketCallback cback, void* data);
27void wxUnregisterSocketCallback(int fd, wxSocketTableType socketType);
28
29
30static void _GSocket_X11_Input(int *fid, void* data)
83df96d6
JS
31{
32 GSocket *socket = (GSocket *)data;
33
34 _GSocket_Detected_Read(socket);
35}
36
52127426 37static void _GSocket_X11_Output(int *fid, void* data)
83df96d6
JS
38{
39 GSocket *socket = (GSocket *)data;
40
41 _GSocket_Detected_Write(socket);
42}
43
44int _GSocket_GUI_Init(GSocket *socket)
45{
46 int *m_id;
47
48 socket->m_gui_dependent = (char *)malloc(sizeof(int)*2);
49 m_id = (int *)(socket->m_gui_dependent);
50
51 m_id[0] = -1;
52 m_id[1] = -1;
53
54 return TRUE;
55}
56
57void _GSocket_GUI_Destroy(GSocket *socket)
58{
59 free(socket->m_gui_dependent);
60}
61
62void _GSocket_Install_Callback(GSocket *socket, GSocketEvent event)
63{
64 int *m_id = (int *)(socket->m_gui_dependent);
65 int c;
66
67 if (socket->m_fd == -1)
68 return;
69
70 switch (event)
71 {
72 case GSOCK_LOST: /* fall-through */
73 case GSOCK_INPUT: c = 0; break;
74 case GSOCK_OUTPUT: c = 1; break;
75 case GSOCK_CONNECTION: c = ((socket->m_server) ? 0 : 1); break;
76 default: return;
77 }
78
52127426
JS
79 // if (m_id[c] != -1)
80 // XtRemoveInput(m_id[c]);
83df96d6
JS
81
82 if (c == 0)
83 {
52127426
JS
84 m_id[0] = socket->m_fd;
85
86 wxRegisterSocketCallback(socket->m_fd, wxSocketTableInput,
87 (wxSocketCallback) _GSocket_X11_Input, (void*) socket);
83df96d6
JS
88 }
89 else
90 {
52127426
JS
91 m_id[1] = socket->m_fd;
92
93 wxRegisterSocketCallback(socket->m_fd, wxSocketTableOutput,
94 (wxSocketCallback) _GSocket_X11_Output, (void*) socket);
83df96d6
JS
95 }
96}
97
98void _GSocket_Uninstall_Callback(GSocket *socket, GSocketEvent event)
99{
100 int *m_id = (int *)(socket->m_gui_dependent);
101 int c;
102
103 switch (event)
104 {
105 case GSOCK_LOST: /* fall-through */
106 case GSOCK_INPUT: c = 0; break;
107 case GSOCK_OUTPUT: c = 1; break;
108 case GSOCK_CONNECTION: c = ((socket->m_server) ? 0 : 1); break;
109 default: return;
110 }
111
112 if (m_id[c] != -1)
52127426
JS
113 {
114 if (c == 0)
115 wxUnregisterSocketCallback(m_id[c], wxSocketTableInput);
116 else
117 wxUnregisterSocketCallback(m_id[c], wxSocketTableOutput);
118 }
83df96d6
JS
119
120 m_id[c] = -1;
121}
122
123void _GSocket_Enable_Events(GSocket *socket)
124{
125 _GSocket_Install_Callback(socket, GSOCK_INPUT);
126 _GSocket_Install_Callback(socket, GSOCK_OUTPUT);
127}
128
129void _GSocket_Disable_Events(GSocket *socket)
130{
131 _GSocket_Uninstall_Callback(socket, GSOCK_INPUT);
132 _GSocket_Uninstall_Callback(socket, GSOCK_OUTPUT);
133}
134
135#else /* !wxUSE_SOCKETS */
136
137/* some compilers don't like having empty source files */
138static int wxDummyGsockVar = 0;
139
140#endif /* wxUSE_SOCKETS/!wxUSE_SOCKETS */