Recovered from decompiled OpenMaui.Controls.Linux.dll: - SkiaShell.cs: FlyoutHeader, FlyoutFooter, scroll support (918 -> 1325 lines) - X11Window.cs: Cursor support (XCreateFontCursor, XDefineCursor) - All handlers with dark mode support - All services with latest implementations - LinuxApplication with theme change handling
15 lines
275 B
C#
15 lines
275 B
C#
namespace Microsoft.Maui.Platform.Linux.Interop;
|
|
|
|
public static class XCursorShape
|
|
{
|
|
public const uint XC_left_ptr = 68u;
|
|
|
|
public const uint XC_hand2 = 60u;
|
|
|
|
public const uint XC_xterm = 152u;
|
|
|
|
public const uint XC_watch = 150u;
|
|
|
|
public const uint XC_crosshair = 34u;
|
|
}
|