mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Fixed missing ICCCM protocol message checks.
This commit is contained in:
parent
98552f1d75
commit
9309f75704
@ -67,6 +67,7 @@ The following dependencies are needed by the examples and test programs:
|
|||||||
cause an uncaught `BadWindow` error
|
cause an uncaught `BadWindow` error
|
||||||
- [X11] Bugfix: No check was made for the presence GLX 1.3 when
|
- [X11] Bugfix: No check was made for the presence GLX 1.3 when
|
||||||
`GLX_SGIX_fbconfig` was unavailable
|
`GLX_SGIX_fbconfig` was unavailable
|
||||||
|
- [X11] Bugfix: The message type of ICCCM protocol events was not checked
|
||||||
|
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
@ -430,6 +430,9 @@ static GLboolean initExtensions(void)
|
|||||||
Bool supported;
|
Bool supported;
|
||||||
|
|
||||||
// Find or create window manager atoms
|
// Find or create window manager atoms
|
||||||
|
_glfw.x11.WM_PROTOCOLS = XInternAtom(_glfw.x11.display,
|
||||||
|
"WM_PROTOCOLS",
|
||||||
|
False);
|
||||||
_glfw.x11.WM_STATE = XInternAtom(_glfw.x11.display, "WM_STATE", False);
|
_glfw.x11.WM_STATE = XInternAtom(_glfw.x11.display, "WM_STATE", False);
|
||||||
_glfw.x11.WM_DELETE_WINDOW = XInternAtom(_glfw.x11.display,
|
_glfw.x11.WM_DELETE_WINDOW = XInternAtom(_glfw.x11.display,
|
||||||
"WM_DELETE_WINDOW",
|
"WM_DELETE_WINDOW",
|
||||||
|
@ -107,6 +107,7 @@ typedef struct _GLFWlibraryX11
|
|||||||
XContext context;
|
XContext context;
|
||||||
|
|
||||||
// Window manager atoms
|
// Window manager atoms
|
||||||
|
Atom WM_PROTOCOLS;
|
||||||
Atom WM_STATE;
|
Atom WM_STATE;
|
||||||
Atom WM_DELETE_WINDOW;
|
Atom WM_DELETE_WINDOW;
|
||||||
Atom NET_WM_NAME;
|
Atom NET_WM_NAME;
|
||||||
|
@ -739,25 +739,32 @@ static void processEvent(XEvent *event)
|
|||||||
{
|
{
|
||||||
// Custom client message, probably from the window manager
|
// Custom client message, probably from the window manager
|
||||||
|
|
||||||
if ((Atom) event->xclient.data.l[0] == _glfw.x11.WM_DELETE_WINDOW)
|
if (event->xclient.message_type == None)
|
||||||
{
|
break;
|
||||||
// The window manager was asked to close the window, for example by
|
|
||||||
// the user pressing a 'close' window decoration button
|
|
||||||
|
|
||||||
_glfwInputWindowCloseRequest(window);
|
if (event->xclient.message_type == _glfw.x11.WM_PROTOCOLS)
|
||||||
}
|
|
||||||
else if (_glfw.x11.NET_WM_PING &&
|
|
||||||
(Atom) event->xclient.data.l[0] == _glfw.x11.NET_WM_PING)
|
|
||||||
{
|
{
|
||||||
// The window manager is pinging the application to ensure it's
|
if (_glfw.x11.WM_DELETE_WINDOW &&
|
||||||
// still responding to events
|
(Atom) event->xclient.data.l[0] == _glfw.x11.WM_DELETE_WINDOW)
|
||||||
|
{
|
||||||
|
// The window manager was asked to close the window, for example by
|
||||||
|
// the user pressing a 'close' window decoration button
|
||||||
|
|
||||||
event->xclient.window = _glfw.x11.root;
|
_glfwInputWindowCloseRequest(window);
|
||||||
XSendEvent(_glfw.x11.display,
|
}
|
||||||
event->xclient.window,
|
else if (_glfw.x11.NET_WM_PING &&
|
||||||
False,
|
(Atom) event->xclient.data.l[0] == _glfw.x11.NET_WM_PING)
|
||||||
SubstructureNotifyMask | SubstructureRedirectMask,
|
{
|
||||||
event);
|
// The window manager is pinging the application to ensure it's
|
||||||
|
// still responding to events
|
||||||
|
|
||||||
|
event->xclient.window = _glfw.x11.root;
|
||||||
|
XSendEvent(_glfw.x11.display,
|
||||||
|
event->xclient.window,
|
||||||
|
False,
|
||||||
|
SubstructureNotifyMask | SubstructureRedirectMask,
|
||||||
|
event);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (event->xclient.message_type == _glfw.x11.XdndEnter)
|
else if (event->xclient.message_type == _glfw.x11.XdndEnter)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user