Remotely/Desktop.Native/Linux/LibX11.cs
2024-07-16 09:25:15 -07:00

141 lines
5.8 KiB
C#

/*
Copyright 1985, 1986, 1987, 1991, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
using System.Runtime.InteropServices;
namespace Remotely.Desktop.Shared.Native.Linux;
public static unsafe class LibX11
{
[DllImport("libX11")]
public static extern nint XGetImage(nint display, nint drawable, int x, int y, int width, int height, long plane_mask, int format);
[DllImport("libX11")]
public static extern nint XDefaultVisual(nint display, int screen_number);
[DllImport("libX11")]
public static extern int XScreenCount(nint display);
[DllImport("libX11")]
public static extern int XDefaultScreen(nint display);
[DllImport("libX11")]
public static extern nint XOpenDisplay(string display_name);
[DllImport("libX11")]
public static extern void XCloseDisplay(nint display);
[DllImport("libX11")]
public static extern nint XRootWindow(nint display, int screen_number);
[DllImport("libX11")]
public static extern nint XGetSubImage(nint display, nint drawable, int x, int y, uint width, uint height, ulong plane_mask, int format, nint dest_image, int dest_x, int dest_y);
[DllImport("libX11")]
public static extern nint XScreenOfDisplay(nint display, int screen_number);
[DllImport("libX11")]
public static extern int XDisplayWidth(nint display, int screen_number);
[DllImport("libX11")]
public static extern int XDisplayHeight(nint display, int screen_number);
[DllImport("libX11")]
public static extern int XWidthOfScreen(nint screen);
[DllImport("libX11")]
public static extern int XHeightOfScreen(nint screen);
[DllImport("libX11")]
public static extern nint XDefaultGC(nint display, int screen_number);
[DllImport("libX11")]
public static extern nint XDefaultRootWindow(nint display);
[DllImport("libX11")]
public static extern void XGetInputFocus(nint display, out nint focus_return, out int revert_to_return);
[DllImport("libX11")]
public static extern nint XStringToKeysym(string key);
[DllImport("libX11")]
public static extern uint XKeysymToKeycode(nint display, nint keysym);
[DllImport("libX11")]
public static extern nint XRootWindowOfScreen(nint screen);
[DllImport("libX11")]
public static extern ulong XNextRequest(nint display);
[DllImport("libX11")]
public static extern void XForceScreenSaver(nint display, int mode);
[DllImport("libX11")]
public static extern void XSync(nint display, bool discard);
[DllImport("libX11")]
public static extern void XDestroyImage(nint ximage);
[DllImport("libX11")]
public static extern void XNoOp(nint display);
[DllImport("libX11")]
public static extern void XFree(nint data);
[DllImport("libX11")]
public static extern int XGetWindowAttributes(nint display, nint window, out XWindowAttributes windowAttributes);
public struct XImage
{
public int width;
public int height; /* size of image */
public int xoffset; /* number of pixels offset in X direction */
public int format; /* XYBitmap, XYPixmap, ZPixmap */
//public char* data; /* pointer to image data */
public nint data; /* pointer to image data */
public int byte_order; /* data byte order, LSBFirst, MSBFirst */
public int bitmap_unit; /* quant. of scanline 8, 16, 32 */
public int bitmap_bit_order; /* LSBFirst, MSBFirst */
public int bitmap_pad; /* 8, 16, 32 either XY or ZPixmap */
public int depth; /* depth of image */
public int bytes_per_line; /* accelerator to next scanline */
public int bits_per_pixel; /* bits per pixel (ZPixmap) */
public ulong red_mask; /* bits in z arrangement */
public ulong green_mask;
public ulong blue_mask;
public nint obdata; /* hook for the object routines to hang on */
}
public struct XWindowAttributes
{
public int x;
public int y;
public int width;
public int height;
public int border_width;
public int depth;
public nint visual;
public nint root;
public int @class;
public int bit_gravity;
public int win_gravity;
public int backing_store;
public ulong backing_planes;
public ulong backing_pixel;
public bool save_under;
public nint colormap;
public bool map_installed;
public int map_state;
public long all_event_masks;
public long your_event_mask;
public long do_not_propagate_mask;
public bool override_redirect;
public nint screen;
}
}