// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Maui.Platform.Linux.Interop; public static class XEventType { public const int KeyPress = 2; public const int KeyRelease = 3; public const int ButtonPress = 4; public const int ButtonRelease = 5; public const int MotionNotify = 6; public const int EnterNotify = 7; public const int LeaveNotify = 8; public const int FocusIn = 9; public const int FocusOut = 10; public const int Expose = 12; public const int ConfigureNotify = 22; public const int ClientMessage = 33; }