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);
|
||
|
|
}
|