mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Handle exit message from window manager on Linux
This commit is contained in:
parent
e6eaea7591
commit
6c5c7786ca
1 changed files with 12 additions and 0 deletions
|
@ -160,6 +160,11 @@ namespace entry
|
|||
, &windowAttrs
|
||||
);
|
||||
|
||||
const char *wmDeleteWindowName = "WM_DELETE_WINDOW";
|
||||
Atom wmDeleteWindow;
|
||||
XInternAtoms(m_display, (char **)&wmDeleteWindowName, 1, False, &wmDeleteWindow);
|
||||
XSetWMProtocols(m_display, m_window, &wmDeleteWindow, 1);
|
||||
|
||||
XMapWindow(m_display, m_window);
|
||||
XStoreName(m_display, m_window, "BGFX");
|
||||
|
||||
|
@ -187,6 +192,13 @@ namespace entry
|
|||
case ConfigureNotify:
|
||||
break;
|
||||
|
||||
case ClientMessage:
|
||||
if((Atom)event.xclient.data.l[0] == wmDeleteWindow)
|
||||
{
|
||||
m_eventQueue.postExitEvent();
|
||||
}
|
||||
break;
|
||||
|
||||
case ButtonPress:
|
||||
case ButtonRelease:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue