Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/Framework > API/Runtime/Slate/Framework/Application
References
| Module | Slate |
| Header | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include | #include "Framework/Application/SlateApplication.h" |
Syntax
class FPopupSupport
Remarks
A Delegate for querying whether source code access is possible Delegates for when modal windows open or close Delegate for when window action occurs (ClickedNonClientArea, Maximize, Restore, WindowMenu). Return true if the OS layer should stop processing the action. Allow widgets to find out when someone clicked outside them. Currently needed by MenuAnchros.
Functions
| Type | Name | Description | |
|---|---|---|---|
| FDelegateHandle | RegisterClickNotification
(
const TSharedRef< SWidget >& NotifyWhenClickedOutsideMe, |
Register for a notification when the user clicks outside a specific widget. | |
| void | SendNotifications
(
const FWidgetPath& WidgetsUnderCursor |
Given a WidgetPath that was clicked, send notifications to any subscribers that were not under the mouse. | |
| void | UnregisterClickNotification
(
FDelegateHandle InHandle |
NOTE: Only necessary if notification no longer desired. |