mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 04:05:36 +00:00
Added two helper functions for sending NET WM and client WM messages.
--This line, and those below, will be ignored-- M Functions.cs
This commit is contained in:
parent
6f1c9b6daf
commit
2c8d377097
|
@ -418,5 +418,42 @@ namespace OpenTK.Platform.X11
|
||||||
|
|
||||||
[DllImport("libX11")]
|
[DllImport("libX11")]
|
||||||
public static extern void XUnlockDisplay(Display display);
|
public static extern void XUnlockDisplay(Display display);
|
||||||
|
|
||||||
|
public static void SendNetWMMessage(X11WindowInfo window, IntPtr message_type, IntPtr l0, IntPtr l1, IntPtr l2)
|
||||||
|
{
|
||||||
|
XEvent xev;
|
||||||
|
|
||||||
|
xev = new XEvent();
|
||||||
|
xev.ClientMessageEvent.type = XEventName.ClientMessage;
|
||||||
|
xev.ClientMessageEvent.send_event = true;
|
||||||
|
xev.ClientMessageEvent.window = window.WindowHandle;
|
||||||
|
xev.ClientMessageEvent.message_type = message_type;
|
||||||
|
xev.ClientMessageEvent.format = 32;
|
||||||
|
xev.ClientMessageEvent.ptr1 = l0;
|
||||||
|
xev.ClientMessageEvent.ptr2 = l1;
|
||||||
|
xev.ClientMessageEvent.ptr3 = l2;
|
||||||
|
|
||||||
|
XSendEvent(window.Display, window.RootWindow, false,
|
||||||
|
new IntPtr((int)(EventMask.SubstructureRedirectMask | EventMask.SubstructureNotifyMask)),
|
||||||
|
ref xev);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void SendNetClientMessage(X11WindowInfo window, IntPtr message_type,
|
||||||
|
IntPtr l0, IntPtr l1, IntPtr l2)
|
||||||
|
{
|
||||||
|
XEvent xev;
|
||||||
|
|
||||||
|
xev = new XEvent();
|
||||||
|
xev.ClientMessageEvent.type = XEventName.ClientMessage;
|
||||||
|
xev.ClientMessageEvent.send_event = true;
|
||||||
|
xev.ClientMessageEvent.window = window.WindowHandle;
|
||||||
|
xev.ClientMessageEvent.message_type = message_type;
|
||||||
|
xev.ClientMessageEvent.format = 32;
|
||||||
|
xev.ClientMessageEvent.ptr1 = l0;
|
||||||
|
xev.ClientMessageEvent.ptr2 = l1;
|
||||||
|
xev.ClientMessageEvent.ptr3 = l2;
|
||||||
|
|
||||||
|
XSendEvent(window.Display, window.WindowHandle, false, new IntPtr((int)EventMask.NoEventMask), ref xev);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue