Navigation
API > API/Runtime > API/Runtime/ApplicationCore > API/Runtime/ApplicationCore/GenericPlatform > API/Runtime/ApplicationCore/GenericPlatform/Accessibility
References
| Module | ApplicationCore |
| Header | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
class IAccessibleWindow
Remarks
An accessible window corresponds to a native OS window. Fake windows that are embedded within other widgets that simply look and feel like windows are not IAccessibleWindows.
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Close () |
Request that the window closes itself. This may not happen immediately. | |
| TSharedPtr< IAccessibleWidget > | GetChildAtPosition
(
int32 X, |
Finds the deepest accessible widget in the hierarchy at the specified coordinates. | |
| EWindowDisplayState | Gets the current state minimize/maximize state of the window. | ||
| TSharedPtr< FGenericWindow > | Retrieve the native OS window backing this accessible window. | ||
| TSharedPtr< IAccessibleWidget > | GetUserFocusedWidget
(
const FAccessibleUserIndex UserIndex |
Retrieves the focused accessible widget for a user. | |
| bool | IsModal () |
Whether or not the window is modal. | |
| void | SetDisplayState
(
EWindowDisplayState State |
Sets a window to be minimized, maximized, or restored to normal. | |
| bool | SupportsDisplayState
(
EWindowDisplayState State |
Check if the window can be minimized or maximized. |
Enums
| Type | Name | Description | |
|---|---|---|---|
| EWindowDisplayState | The different states a window can be in to describe its screen anchors |