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
35 lines
598 B
C#
35 lines
598 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.Maui.Platform.Linux.Services;
|
|
|
|
public interface IAccessible
|
|
{
|
|
string AccessibleId { get; }
|
|
|
|
string AccessibleName { get; }
|
|
|
|
string AccessibleDescription { get; }
|
|
|
|
AccessibleRole Role { get; }
|
|
|
|
AccessibleStates States { get; }
|
|
|
|
IAccessible? Parent { get; }
|
|
|
|
IReadOnlyList<IAccessible> Children { get; }
|
|
|
|
AccessibleRect Bounds { get; }
|
|
|
|
IReadOnlyList<AccessibleAction> Actions { get; }
|
|
|
|
double? Value { get; }
|
|
|
|
double? MinValue { get; }
|
|
|
|
double? MaxValue { get; }
|
|
|
|
bool DoAction(string actionName);
|
|
|
|
bool SetValue(double value);
|
|
}
|