Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/FSlateApplication
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual TSharedPtr< SWindow > FindWidgetWindow
(
TSharedRef< const SWidget > InWidget |
Finds the window that the provided widget resides in | Framework/Application/SlateApplication.h | |
TSharedPtr< SWindow > FindWidgetWindow
(
TSharedRef< const SWidget > InWidget, |
Finds the window that the provided widget resides in | Framework/Application/SlateApplication.h |
FindWidgetWindow(TSharedRef< const SWidget >)
Description
Finds the window that the provided widget resides in
| Name | FindWidgetWindow |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include Path | #include "Framework/Application/SlateApplication.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Application/SlateApplication.cpp |
virtual TSharedPtr < SWindow > FindWidgetWindow
(
TSharedRef < const SWidget > InWidget
) const
The window where the widget resides, or null if the widget wasn't found. Remember, a widget might not be found simply because its parent decided not to report the widget in ArrangeChildren.
Parameters
| Name | Remarks |
|---|---|
| InWidget | The widget to find the window for |
FindWidgetWindow(TSharedRef< const SWidget >, FWidgetPath &)
Description
Finds the window that the provided widget resides in
| Name | FindWidgetWindow |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include Path | #include "Framework/Application/SlateApplication.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Application/SlateApplication.cpp |
TSharedPtr < SWindow > FindWidgetWindow
(
TSharedRef < const SWidget > InWidget,
FWidgetPath & OutWidgetPath
) const
The window where the widget resides, or null if the widget wasn't found. Remember, a widget might not be found simply because its parent decided not to report the widget in ArrangeChildren.
Parameters
| Name | Remarks |
|---|---|
| InWidget | The widget to find the window for |
| OutWidgetPath | Full widget path generated |