Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/Framework > API/Runtime/Slate/Framework/Application > API/Runtime/Slate/Framework/Application/FSlateApplication > API/Runtime/Slate/Framework/Application/FSlateApplication/PushHostedMenu
References
| Module | Slate |
| Header | /Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h |
| Include | #include "Framework/Application/SlateApplication.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/Application/SlateApplication.cpp |
TSharedPtr< IMenu > PushHostedMenu
&40;
const TSharedRef< SWidget > & InParentWidget,
const FWidgetPath & InOwnerPath,
const TSharedRef< IMenuHost > & InMenuHost,
const TSharedRef< SWidget > & InContent,
TSharedPtr< SWidget > & OutWrappedContent,
const FPopupTransitionEffect & TransitionEffect,
EShouldThrottle ShouldThrottle,
const bool bIsCollapsedByParent
&41;
Remarks
Creates a new hosted Menu and adds it to the menu stack. Hosted menus are drawn by an external host widget.
Parameters
| Name | Description |
|---|---|
| InParentMenu | The parent of the menu. Must be a valid menu in the stack. |
| InOwnerPath | Optional full widget path of the parent if one is available. If an invalid path is given PushMenu will attempt to generate a path to the InParentWidget |
| InMenuHost | The host widget that draws the menu's content |
| InContent | The content to be placed inside the new menu |
| OutWrappedContent | Returns the InContent wrapped with widgets needed by the menu stack system. This is what should be drawn by the host after this call. |
| TransitionEffect | Animation to use when the popup appears |
| ShouldThrottle | Should we throttle engine ticking to maximize the menu responsiveness |
| bIsCollapsedByParent | Is this menu collapsed when a parent menu receives focus/activation? If false, only focus/activation outside the entire stack will auto collapse it. |