2 X11 support for the Midnight Commander.
4 Copyright (C) 2005, 2007 Free Software Foundation, Inc.
7 Roland Illig <roland.illig@gmx.de>, 2005.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 * \brief Source: X11 support
26 * \warning This code uses setjmp() and longjmp(). Before you modify _anything_ here,
27 * please read the relevant sections of the C standard.
32 #ifndef HAVE_TEXTMODE_X11_SUPPORT
33 typedef int dummy
; /* C99 forbids empty compilation unit */
42 #include "lib/global.h"
45 /*** file scope type declarations **************************************/
47 typedef int (*mc_XErrorHandler_callback
) (Display
*, XErrorEvent
*);
48 typedef int (*mc_XIOErrorHandler_callback
) (Display
*);
50 /*** file scope variables **********************************************/
54 static Display
*(*func_XOpenDisplay
) (_Xconst
char *);
55 static int (*func_XCloseDisplay
) (Display
*);
56 static mc_XErrorHandler_callback (*func_XSetErrorHandler
)
57 (mc_XErrorHandler_callback
);
58 static mc_XIOErrorHandler_callback (*func_XSetIOErrorHandler
)
59 (mc_XIOErrorHandler_callback
);
60 static Bool (*func_XQueryPointer
) (Display
*, Window
, Window
*, Window
*,
61 int *, int *, int *, int *, unsigned int *);
63 static GModule
*x11_module
;
67 #define func_XOpenDisplay XOpenDisplay
68 #define func_XCloseDisplay XCloseDisplay
69 #define func_XSetErrorHandler XSetErrorHandler
70 #define func_XSetIOErrorHandler XSetIOErrorHandler
71 #define func_XQueryPointer XQueryPointer
75 static gboolean handlers_installed
= FALSE
;
77 /* This flag is set as soon as an X11 error is reported. Usually that
78 * means that the DISPLAY is not available anymore. We do not try to
79 * reconnect, as that would violate the X11 protocol. */
80 static gboolean lost_connection
= FALSE
;
82 static jmp_buf x11_exception
; /* FIXME: get a better name */
83 static gboolean longjmp_allowed
= FALSE
;
85 /*** file private functions ********************************************/
88 x_io_error_handler (Display
* dpy
)
92 lost_connection
= TRUE
;
93 if (longjmp_allowed
) {
94 longjmp_allowed
= FALSE
;
95 longjmp (x11_exception
, 1);
101 x_error_handler (Display
* dpy
, XErrorEvent
* ee
)
104 (void) func_XCloseDisplay (dpy
);
105 return x_io_error_handler (dpy
);
109 install_error_handlers (void)
111 if (handlers_installed
)
114 (void) func_XSetErrorHandler (x_error_handler
);
115 (void) func_XSetIOErrorHandler (x_io_error_handler
);
116 handlers_installed
= TRUE
;
123 gchar
*x11_module_fname
;
128 if (x11_module
!= NULL
)
131 x11_module_fname
= g_module_build_path (NULL
, "X11");
132 x11_module
= g_module_open (x11_module_fname
, G_MODULE_BIND_LAZY
);
133 if (x11_module
== NULL
)
134 x11_module
= g_module_open ("libX11.so.6", G_MODULE_BIND_LAZY
);
136 g_free (x11_module_fname
);
138 if (x11_module
== NULL
)
141 if (!g_module_symbol (x11_module
, "XOpenDisplay", (void *) &func_XOpenDisplay
))
143 if (!g_module_symbol (x11_module
, "XCloseDisplay", (void *) &func_XCloseDisplay
))
145 if (!g_module_symbol (x11_module
, "XQueryPointer", (void *) &func_XQueryPointer
))
147 if (!g_module_symbol (x11_module
, "XSetErrorHandler", (void *) &func_XSetErrorHandler
))
149 if (!g_module_symbol (x11_module
, "XSetIOErrorHandler", (void *) &func_XSetIOErrorHandler
))
152 install_error_handlers ();
156 func_XOpenDisplay
= 0;
157 func_XCloseDisplay
= 0;
158 func_XQueryPointer
= 0;
159 func_XSetErrorHandler
= 0;
160 func_XSetIOErrorHandler
= 0;
161 g_module_close (x11_module
);
165 install_error_handlers ();
166 return !(lost_connection
);
170 /*** public functions **************************************************/
173 mc_XOpenDisplay (const char *displayname
)
177 if (x11_available ()) {
178 if (setjmp (x11_exception
) == 0) {
179 longjmp_allowed
= TRUE
;
180 retval
= func_XOpenDisplay (displayname
);
181 longjmp_allowed
= FALSE
;
189 mc_XCloseDisplay (Display
* display
)
193 if (x11_available ()) {
194 if (setjmp (x11_exception
) == 0) {
195 longjmp_allowed
= TRUE
;
196 retval
= func_XCloseDisplay (display
);
197 longjmp_allowed
= FALSE
;
205 mc_XQueryPointer (Display
* display
, Window win
, Window
* root_return
,
206 Window
* child_return
, int *root_x_return
, int *root_y_return
,
207 int *win_x_return
, int *win_y_return
, unsigned int *mask_return
)
211 if (x11_available ()) {
212 if (setjmp (x11_exception
) == 0) {
213 longjmp_allowed
= TRUE
;
214 retval
= func_XQueryPointer (display
, win
, root_return
,
215 child_return
, root_x_return
, root_y_return
,
216 win_x_return
, win_y_return
, mask_return
);
217 longjmp_allowed
= FALSE
;
222 *child_return
= None
;
231 #endif /* HAVE_TEXTMODE_X11_SUPPORT */