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